X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fxrd.php;h=094211360e03b107c23e7d841d385c96253b2ec1;hb=06998f13b61fcd50588f425703793bacc2e55cab;hp=7cfb643df1413bfa5d1d211369edfdcb89ee4929;hpb=685a677bc91c38dc2f59d3565d6c413bca84629d;p=friendica.git diff --git a/mod/xrd.php b/mod/xrd.php index 7cfb643df1..094211360e 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -6,9 +6,11 @@ function xrd_init(&$a) { $uri = urldecode(notags(trim($_GET['uri']))); - if(substr($uri,0,4) === 'http') + if(substr($uri,0,4) === 'http') { + $acct = false; $name = basename($uri); - else { + } else { + $acct = true; $local = str_replace('acct:', '', $uri); if(substr($local,0,2) == '//') $local = substr($local,2); @@ -27,25 +29,31 @@ function xrd_init(&$a) { header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); - if(get_config('system','diaspora_enabled')) { - //$tpl = file_get_contents('view/xrd_diaspora.tpl'); - $tpl = get_markup_template('xrd_diaspora.tpl'); - $dspr = replace_macros($tpl,array( - '$baseurl' => $a->get_baseurl(), - '$dspr_guid' => $r[0]['guid'], - '$dspr_key' => base64_encode(pemtorsa($r[0]['pubkey'])) - )); - } - else - $dspr = ''; + $tpl = get_markup_template('xrd_diaspora.tpl'); + $dspr = replace_macros($tpl,array( + '$baseurl' => $a->get_baseurl(), + '$dspr_guid' => $r[0]['guid'], + '$dspr_key' => base64_encode(pemtorsa($r[0]['pubkey'])) + )); - //$tpl = file_get_contents('view/xrd_person.tpl'); $tpl = get_markup_template('xrd_person.tpl'); + $profile_url = $a->get_baseurl().'/profile/'.$r[0]['nickname']; + + if ($acct) + $alias = $profile_url; + else { + $alias = 'acct:'.$r[0]['nickname'].'@'.$a->get_hostname(); + + if ($a->get_path()) + $alias .= '/'.$a->get_path(); + } + $o = replace_macros($tpl, array( '$nick' => $r[0]['nickname'], '$accturi' => $uri, - '$profile_url' => $a->get_baseurl() . '/profile/' . $r[0]['nickname'], + '$alias' => $alias, + '$profile_url' => $profile_url, '$hcard_url' => $a->get_baseurl() . '/hcard/' . $r[0]['nickname'], '$atom' => $a->get_baseurl() . '/dfrn_poll/' . $r[0]['nickname'], '$zot_post' => $a->get_baseurl() . '/post/' . $r[0]['nickname'], @@ -54,6 +62,7 @@ function xrd_init(&$a) { '$dspr' => $dspr, '$salmon' => $a->get_baseurl() . '/salmon/' . $r[0]['nickname'], '$salmen' => $a->get_baseurl() . '/salmon/' . $r[0]['nickname'] . '/mention', + '$subscribe' => $a->get_baseurl() . '/follow?url={uri}', '$modexp' => 'data:application/magic-public-key,' . $salmon_key, '$bigkey' => salmon_key($r[0]['pubkey']) ));