2011-08-07 22:26:44 -04:00
|
|
|
<?php
|
2018-01-14 21:22:39 -05:00
|
|
|
/**
|
|
|
|
* @file mod/hcard.php
|
|
|
|
*/
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 13:33:59 -05:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
2019-09-28 14:09:11 -04:00
|
|
|
use Friendica\Core\Session;
|
2018-07-27 19:25:57 -04:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-14 21:38:26 -05:00
|
|
|
use Friendica\Model\Profile;
|
2019-01-06 23:49:13 -05:00
|
|
|
use Friendica\Model\User;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
function hcard_init(App $a)
|
|
|
|
{
|
2019-09-28 14:09:11 -04:00
|
|
|
$blocked = Config::get('system', 'block_public') && !Session::isAuthenticated();
|
2011-08-07 22:26:44 -04:00
|
|
|
|
2016-12-20 15:15:53 -05:00
|
|
|
if ($a->argc > 1) {
|
2011-08-07 22:26:44 -04:00
|
|
|
$which = $a->argv[1];
|
2018-01-14 21:22:39 -05:00
|
|
|
} else {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException(L10n::t('No profile'));
|
2011-08-07 22:26:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$profile = 0;
|
2016-12-20 15:15:53 -05:00
|
|
|
if ((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
|
|
|
|
$which = $a->user['nickname'];
|
|
|
|
$profile = $a->argv[1];
|
2011-08-07 22:26:44 -04:00
|
|
|
}
|
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
Profile::load($a, $which, $profile);
|
2011-08-07 22:26:44 -04:00
|
|
|
|
2019-01-06 12:37:48 -05:00
|
|
|
if (!empty($a->profile['page-flags']) && ($a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
|
2012-03-11 18:50:23 -04:00
|
|
|
$a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
|
2011-08-07 22:26:44 -04:00
|
|
|
}
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($a->profile['openidserver'])) {
|
2011-08-07 22:26:44 -04:00
|
|
|
$a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
|
2016-12-20 15:15:53 -05:00
|
|
|
}
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($a->profile['openid'])) {
|
2018-01-14 21:22:39 -05:00
|
|
|
$delegate = ((strstr($a->profile['openid'], '://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
|
2011-08-07 22:26:44 -04:00
|
|
|
$a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
|
|
|
|
}
|
|
|
|
|
2018-01-14 23:44:39 -05:00
|
|
|
if (!$blocked) {
|
2018-11-30 09:06:22 -05:00
|
|
|
$keywords = defaults($a->profile, 'pub_keywords', '');
|
2018-01-15 08:05:12 -05:00
|
|
|
$keywords = str_replace([',',' ',',,'], [' ',',',','], $keywords);
|
2016-12-20 15:15:53 -05:00
|
|
|
if (strlen($keywords)) {
|
2018-11-30 09:06:22 -05:00
|
|
|
$a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
|
2016-12-20 15:15:53 -05:00
|
|
|
}
|
2011-08-18 02:01:44 -04:00
|
|
|
}
|
2011-08-07 22:26:44 -04:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
$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="' . System::baseUrl() . '/dfrn_poll/' . $which .'" />' . "\r\n";
|
2018-10-09 19:18:47 -04:00
|
|
|
$uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . (($a->getURLPath()) ? '/' . $a->getURLPath() : ''));
|
2017-08-26 03:32:10 -04: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 04:39:06 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
|
2016-12-20 15:15:53 -05:00
|
|
|
foreach ($dfrn_pages as $dfrn) {
|
2017-08-26 03:32:10 -04:00
|
|
|
$a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".System::baseUrl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
|
2016-12-20 04:39:06 -05:00
|
|
|
}
|
2011-08-07 22:26:44 -04:00
|
|
|
}
|