]> git.mxchange.org Git - friendica.git/blobdiff - mod/xrd.php
DE update to the strings
[friendica.git] / mod / xrd.php
index de0c20ea5d39c5b7ef2b2f12a387429f1fe26d1b..dfb188c138197f17bdd00aa2f608aec17df7cb25 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 
-require_once('salmon.php');
+require_once('include/crypto.php');
 
-function xrd_content(&$a) {
+function xrd_init(&$a) {
 
        $uri = urldecode(notags(trim($_GET['uri'])));
 
@@ -27,23 +27,43 @@ function xrd_content(&$a) {
        header('Access-Control-Allow-Origin: *');
        header("Content-type: text/xml");
 
-       $tpl = file_get_contents('view/xrd_person.tpl');
+       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 = file_get_contents('view/xrd_person.tpl');
+       $tpl = get_markup_template('xrd_person.tpl');
 
        $o = replace_macros($tpl, array(
+               '$nick'        => $r[0]['nickname'],
                '$accturi'     => $uri,
                '$profile_url' => $a->get_baseurl() . '/profile/'       . $r[0]['nickname'],
+               '$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'],
+               '$poco_url'    => $a->get_baseurl() . '/poco/'          . $r[0]['nickname'],
                '$photo'       => $a->get_baseurl() . '/photo/profile/' . $r[0]['uid']      . '.jpg',
+               '$dspr'        => $dspr,
                '$salmon'      => $a->get_baseurl() . '/salmon/'        . $r[0]['nickname'],
                '$salmen'      => $a->get_baseurl() . '/salmon/'        . $r[0]['nickname'] . '/mention',
-               '$modexp'      => 'data:application/magic-public-key,'  . $salmon_key
+               '$subscribe'   => $a->get_baseurl() . '/follow?url={uri}',
+               '$modexp'      => 'data:application/magic-public-key,'  . $salmon_key,
+               '$bigkey'      =>  salmon_key($r[0]['pubkey'])
        ));
 
 
        $arr = array('user' => $r[0], 'xml' => $o);
        call_hooks('personal_xrd', $arr);
 
-       echo $o;
+       echo $arr['xml'];
        killme();
 
 }