. */ /** * Implements Link-based Resource Descriptor Discovery based on RFC6415, * Web Host Metadata, i.e. the predecessor to WebFinger resource discovery. * * @package GNUsocial * @author Mikael Nordfeldth */ if (!defined('GNUSOCIAL')) { exit(1); } set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ . '/extlib/'); class LRDDPlugin extends Plugin { const PLUGIN_VERSION = '2.0.0'; public function onAutoload($cls) { switch ($cls) { case 'XML_XRD': require_once __DIR__ . '/extlib/XML/XRD.php'; return false; } return parent::onAutoload($cls); } public function onStartDiscoveryMethodRegistration(Discovery $disco) { $disco->registerMethod('LRDDMethod_WebFinger'); } public function onEndDiscoveryMethodRegistration(Discovery $disco) { $disco->registerMethod('LRDDMethod_HostMeta'); $disco->registerMethod('LRDDMethod_LinkHeader'); $disco->registerMethod('LRDDMethod_LinkHTML'); } public function onPluginVersion(array &$versions): bool { $versions[] = array('name' => 'LRDD', 'version' => self::PLUGIN_VERSION, 'author' => 'Mikael Nordfeldth', 'homepage' => GNUSOCIAL_ENGINE_URL, // TRANS: Plugin description. 'rawdescription' => _m('Implements LRDD support for GNU Social.')); return true; } }