]> git.mxchange.org Git - friendica.git/commitdiff
use separate hcard from profile url
authorFriendika <info@friendika.com>
Mon, 8 Aug 2011 02:26:44 +0000 (19:26 -0700)
committerFriendika <info@friendika.com>
Mon, 8 Aug 2011 02:26:44 +0000 (19:26 -0700)
mod/follow.php
mod/hcard.php [new file with mode: 0644]
mod/xrd.php
view/xrd_person.tpl

index 92557264023ba0d1d3737a8720e556f9a594cb2e..80226f3b9e00094d6fdacbc38db65bb45419cb9f 100644 (file)
@@ -58,7 +58,7 @@ function follow_post(&$a) {
        }
 
        if($ret['network'] === NETWORK_OSTATUS && get_config('system','ostatus_disabled')) {
-               notice( t('Communication options with this network have been restricted.') . EOL);
+               notice( t('The profile address specified belongs to a network which has been disabled on this site.') . EOL);
                $ret['notify'] = '';
        }
 
diff --git a/mod/hcard.php b/mod/hcard.php
new file mode 100644 (file)
index 0000000..5505ca0
--- /dev/null
@@ -0,0 +1,50 @@
+<?php
+
+function hcard_init(&$a) {
+
+       if((get_config('system','block_public')) && (! local_user()) && (! remote_user()))
+               return;
+
+       if($a->argc > 1)
+               $which = $a->argv[1];
+       else {
+               notice( t('No profile') . EOL );
+               $a->error = 404;
+               return;
+       }
+
+       $profile = 0;
+       if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
+               $which = $a->user['nickname'];
+               $profile = $a->argv[1];         
+       }
+
+       profile_load($a,$which,$profile);
+
+       if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) {
+               $a->page['htmlhead'] .= '<meta name="friendika.community" content="true" />';
+       }
+       if(x($a->profile,'openidserver'))                               
+               $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
+       if(x($a->profile,'openid')) {
+               $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
+               $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
+       }
+
+       $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
+       $keywords = str_replace(array(',',' ',',,'),array(' ',',',','),$keywords);
+       if(strlen($keywords))
+               $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
+
+       $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
+       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
+       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
+       $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
+       header('Link: <' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
+       
+       $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
+       foreach($dfrn_pages as $dfrn)
+               $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
+
+}
+
index c96c18f3cead5c796563f7733f9f29ad03928b71..9021222b748fc898e7b929e3891350dcd1a984be 100644 (file)
@@ -47,6 +47,7 @@ function xrd_content(&$a) {
        $o = replace_macros($tpl, array(
                '$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'],
                '$photo'       => $a->get_baseurl() . '/photo/profile/' . $r[0]['uid']      . '.jpg',
                '$dspr'        => $dspr,
index 0dabaa5a31b0bddbf88efa78fcf53767d613d2e8..fd11ad600dbaea18702162ec96cd5aeab31b707a 100644 (file)
@@ -15,7 +15,7 @@
           href="$profile_url" />
     <Link rel="http://microformats.org/profile/hcard"
           type="text/html"
-          href="$profile_url" />
+          href="$hcard_url" />
     <Link rel="http://webfinger.net/rel/avatar"
           type="image/jpeg"
           href="$photo" />