2011-08-08 04:26:44 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
|
|
|
* @file mod/hcard.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-28 01:25:57 +02:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:38:26 +01:00
|
|
|
use Friendica\Model\Profile;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
function hcard_init(App $a)
|
|
|
|
{
|
2018-01-15 05:44:39 +01:00
|
|
|
$blocked = Config::get('system', 'block_public') && !local_user() && !remote_user();
|
2011-08-08 04:26:44 +02:00
|
|
|
|
2016-12-20 21:15:53 +01:00
|
|
|
if ($a->argc > 1) {
|
2011-08-08 04:26:44 +02:00
|
|
|
$which = $a->argv[1];
|
2018-01-15 03:22:39 +01:00
|
|
|
} else {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('No profile') . EOL);
|
2011-08-08 04:26:44 +02:00
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = 0;
|
2016-12-20 21:15:53 +01:00
|
|
|
if ((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
|
|
|
|
$which = $a->user['nickname'];
|
|
|
|
$profile = $a->argv[1];
|
2011-08-08 04:26:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
Profile::load($a, $which, $profile);
|
2011-08-08 04:26:44 +02:00
|
|
|
|
2018-07-28 01:25:57 +02:00
|
|
|
if ((x($a->profile, 'page-flags')) && ($a->profile['page-flags'] == Contact::PAGE_COMMUNITY)) {
|
2012-03-11 23:50:23 +01:00
|
|
|
$a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
|
2011-08-08 04:26:44 +02:00
|
|
|
}
|
2018-01-15 03:22:39 +01:00
|
|
|
if (x($a->profile, 'openidserver')) {
|
2011-08-08 04:26:44 +02:00
|
|
|
$a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2018-01-15 03:22:39 +01:00
|
|
|
if (x($a->profile, 'openid')) {
|
|
|
|
$delegate = ((strstr($a->profile['openid'], '://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
|
2011-08-08 04:26:44 +02:00
|
|
|
$a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
|
|
|
|
}
|
|
|
|
|
2018-01-15 05:44:39 +01:00
|
|
|
if (!$blocked) {
|
2018-01-15 03:22:39 +01:00
|
|
|
$keywords = ((x($a->profile, 'pub_keywords')) ? $a->profile['pub_keywords'] : '');
|
2018-01-15 14:05:12 +01:00
|
|
|
$keywords = str_replace([',',' ',',,'], [' ',',',','], $keywords);
|
2016-12-20 21:15:53 +01:00
|
|
|
if (strlen($keywords)) {
|
2011-08-18 08:01:44 +02:00
|
|
|
$a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2011-08-18 08:01:44 +02:00
|
|
|
}
|
2011-08-08 04:26:44 +02:00
|
|
|
|
|
|
|
$a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
|
2017-08-26 09:32:10 +02:00
|
|
|
$a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
|
2018-10-10 01:18:47 +02:00
|
|
|
$uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . (($a->getURLPath()) ? '/' . $a->getURLPath() : ''));
|
2017-08-26 09:32:10 +02:00
|
|
|
$a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
|
|
|
|
header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
|
2016-12-20 10:39:06 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($dfrn_pages as $dfrn) {
|
2017-08-26 09:32:10 +02:00
|
|
|
$a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".System::baseUrl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
|
2016-12-20 10:39:06 +01:00
|
|
|
}
|
2011-08-08 04:26:44 +02:00
|
|
|
}
|