X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fxrd.php;h=bbfd7ce64a31687f5fc0a66e787c6c3c3e645e54;hb=5743bb0daec2f91f06689c84a69c8d7315311c51;hp=ca6c02b6a2f01cfdd1d33d9871806f2b51250891;hpb=0b7e8b7fb45330c64df3cb00f70600f725c38c93;p=friendica.git diff --git a/mod/xrd.php b/mod/xrd.php index ca6c02b6a2..bbfd7ce64a 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -1,11 +1,15 @@ argv[0] == 'xrd') { $uri = urldecode(notags(trim($_GET['uri']))); if ($_SERVER['HTTP_ACCEPT'] == 'application/jrd+json') { @@ -22,94 +26,91 @@ function xrd_init(App $a) { } } - if(substr($uri,0,4) === 'http') { - $acct = false; + if (substr($uri, 0, 4) === 'http') { $name = ltrim(basename($uri), '~'); } else { - $acct = true; $local = str_replace('acct:', '', $uri); - if(substr($local,0,2) == '//') + if (substr($local, 0, 2) == '//') { $local = substr($local, 2); + } - $name = substr($local, 0, strpos($local,'@')); + $name = substr($local, 0, strpos($local, '@')); } - $r = dba::select('user', array(), array('nickname' => $name), array('limit' => 1)); - if (!dbm::is_result($r)) { + $user = dba::selectFirst('user', [], ['nickname' => $name]); + if (!DBM::is_result($user)) { killme(); } - $profile_url = System::baseUrl().'/profile/'.$r['nickname']; + $profile_url = System::baseUrl().'/profile/'.$user['nickname']; - if ($acct) { - $alias = $profile_url; - } else { - $alias = 'acct:'.$r['nickname'].'@'.$a->get_hostname(); + $alias = str_replace('/profile/', '/~', $profile_url); - if ($a->get_path()) { - $alias .= '/'.$a->get_path(); - } + $addr = 'acct:'.$user['nickname'].'@'.$a->get_hostname(); + if ($a->get_path()) { + $addr .= '/'.$a->get_path(); } if ($mode == 'xml') { - xrd_xml($a, $uri, $alias, $profile_url, $r); + xrd_xml($a, $addr, $alias, $profile_url, $user); } else { - xrd_json($a, $uri, $alias, $profile_url, $r); + xrd_json($a, $addr, $alias, $profile_url, $user); } } -function xrd_json($a, $uri, $alias, $profile_url, $r) { - $salmon_key = salmon_key($r['spubkey']); +function xrd_json($a, $uri, $alias, $profile_url, $r) +{ + $salmon_key = Salmon::salmonKey($r['spubkey']); header('Access-Control-Allow-Origin: *'); header("Content-type: application/json; charset=utf-8"); - $json = array('subject' => $uri, - 'aliases' => array($alias), - 'links' => array(array('rel' => NAMESPACE_DFRN, 'href' => $profile_url), - array('rel' => NAMESPACE_FEED, 'type' => 'application/atom+xml', 'href' => System::baseUrl().'/dfrn_poll/'.$r['nickname']), - array('rel' => 'http://webfinger.net/rel/profile-page', 'type' => 'text/html', 'href' => $profile_url), - array('rel' => 'http://microformats.org/profile/hcard', 'type' => 'text/html', 'href' => System::baseUrl().'/hcard/'.$r['nickname']), - array('rel' => NAMESPACE_POCO, 'href' => System::baseUrl().'/poco/'.$r['nickname']), - array('rel' => 'http://webfinger.net/rel/avatar', 'type' => 'image/jpeg', 'href' => System::baseUrl().'/photo/profile/'.$r['uid'].'.jpg'), - array('rel' => 'http://joindiaspora.com/seed_location', 'type' => 'text/html', 'href' => System::baseUrl()), - array('rel' => 'salmon', 'href' => System::baseUrl().'/salmon/'.$r['nickname']), - array('rel' => 'http://salmon-protocol.org/ns/salmon-replies', 'href' => System::baseUrl().'/salmon/'.$r['nickname']), - array('rel' => 'http://salmon-protocol.org/ns/salmon-mention', 'href' => System::baseUrl().'/salmon/'.$r['nickname'].'/mention'), - array('rel' => 'http://ostatus.org/schema/1.0/subscribe', 'template' => System::baseUrl().'/follow?url={uri}'), - array('rel' => 'magic-public-key', 'href' => 'data:application/magic-public-key,'.$salmon_key) - )); + $json = ['subject' => $uri, + 'aliases' => [$alias, $profile_url], + 'links' => [['rel' => NAMESPACE_DFRN, 'href' => $profile_url], + ['rel' => NAMESPACE_FEED, 'type' => 'application/atom+xml', 'href' => System::baseUrl().'/dfrn_poll/'.$r['nickname']], + ['rel' => 'http://webfinger.net/rel/profile-page', 'type' => 'text/html', 'href' => $profile_url], + ['rel' => 'http://microformats.org/profile/hcard', 'type' => 'text/html', 'href' => System::baseUrl().'/hcard/'.$r['nickname']], + ['rel' => NAMESPACE_POCO, 'href' => System::baseUrl().'/poco/'.$r['nickname']], + ['rel' => 'http://webfinger.net/rel/avatar', 'type' => 'image/jpeg', 'href' => System::baseUrl().'/photo/profile/'.$r['uid'].'.jpg'], + ['rel' => 'http://joindiaspora.com/seed_location', 'type' => 'text/html', 'href' => System::baseUrl()], + ['rel' => 'salmon', 'href' => System::baseUrl().'/salmon/'.$r['nickname']], + ['rel' => 'http://salmon-protocol.org/ns/salmon-replies', 'href' => System::baseUrl().'/salmon/'.$r['nickname']], + ['rel' => 'http://salmon-protocol.org/ns/salmon-mention', 'href' => System::baseUrl().'/salmon/'.$r['nickname'].'/mention'], + ['rel' => 'http://ostatus.org/schema/1.0/subscribe', 'template' => System::baseUrl().'/follow?url={uri}'], + ['rel' => 'magic-public-key', 'href' => 'data:application/magic-public-key,'.$salmon_key] + ]]; echo json_encode($json); killme(); } -function xrd_xml($a, $uri, $alias, $profile_url, $r) { - $salmon_key = salmon_key($r['spubkey']); +function xrd_xml($a, $uri, $alias, $profile_url, $r) +{ + $salmon_key = Salmon::salmonKey($r['spubkey']); header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); $tpl = get_markup_template('xrd_person.tpl'); - $o = replace_macros($tpl, array( + $o = replace_macros($tpl, [ '$nick' => $r['nickname'], '$accturi' => $uri, '$alias' => $alias, '$profile_url' => $profile_url, '$hcard_url' => System::baseUrl() . '/hcard/' . $r['nickname'], '$atom' => System::baseUrl() . '/dfrn_poll/' . $r['nickname'], - '$zot_post' => System::baseUrl() . '/post/' . $r['nickname'], '$poco_url' => System::baseUrl() . '/poco/' . $r['nickname'], '$photo' => System::baseUrl() . '/photo/profile/' . $r['uid'] . '.jpg', '$baseurl' => System::baseUrl(), '$salmon' => System::baseUrl() . '/salmon/' . $r['nickname'], '$salmen' => System::baseUrl() . '/salmon/' . $r['nickname'] . '/mention', '$subscribe' => System::baseUrl() . '/follow?url={uri}', - '$modexp' => 'data:application/magic-public-key,' . $salmon_key, - )); + '$modexp' => 'data:application/magic-public-key,' . $salmon_key] + ); - $arr = array('user' => $r, 'xml' => $o); - call_hooks('personal_xrd', $arr); + $arr = ['user' => $r, 'xml' => $o]; + Addon::callHooks('personal_xrd', $arr); echo $arr['xml']; killme();