['Accept: application/jrd+json, */*']]); if ($s['success']) { $j = json_decode($s['body'], true); return ($j); } return false; } public static function parse_resource($resource) { self::$resource = urlencode($resource); if (strpos($resource, 'http') === 0) { $m = parse_url($resource); if ($m) { if ($m['scheme'] !== 'https') { return false; } self::$server = $m['host'] . (($m['port']) ? ':' . $m['port'] : ''); } else { return false; } } elseif (strpos($resource, 'tag:') === 0) { $arr = explode(':', $resource); // split the tag $h = explode(',', $arr[1]); // split the host,date self::$server = $h[0]; } else { $x = explode('@', $resource); if (!strlen($x[0])) { // e.g. @dan@pixelfed.org array_shift($x); } $username = $x[0]; if (count($x) > 1) { self::$server = $x[1]; } else { return false; } if (strpos($resource, 'acct:') !== 0) { self::$resource = urlencode('acct:' . $resource); } } } /** * @brief fetch a webfinger resource and return a zot6 discovery url if present * */ public static function zot_url($resource) { $arr = self::exec($resource); if (is_array($arr) && array_key_exists('links', $arr)) { foreach ($arr['links'] as $link) { if (array_key_exists('rel',$link) && in_array($link['rel'], [ PROTOCOL_NOMAD, PROTOCOL_ZOT6 ])) { if (array_key_exists('href', $link) && $link['href'] !== EMPTY_STR) { return $link['href']; } } } } return false; } }