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;
|
2019-09-28 20:09:11 +02:00
|
|
|
use Friendica\Core\Session;
|
2018-07-28 01:25:57 +02:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:38:26 +01:00
|
|
|
use Friendica\Model\Profile;
|
2019-01-07 05:49:13 +01:00
|
|
|
use Friendica\Model\User;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
function hcard_init(App $a)
|
|
|
|
{
|
2019-09-28 20:09:11 +02:00
|
|
|
$blocked = Config::get('system', 'block_public') && !Session::isAuthenticated();
|
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 {
|
2019-05-02 05:16:10 +02:00
|
|
|
throw new \Friendica\Network\HTTPException\NotFoundException(L10n::t('No profile'));
|
2011-08-08 04:26:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$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
|
|
|
|
2019-01-06 18:37:48 +01:00
|
|
|
if (!empty($a->profile['page-flags']) && ($a->profile['page-flags'] == User::PAGE_FLAGS_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-11-30 15:06:22 +01:00
|
|
|
if (!empty($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-11-30 15:06:22 +01:00
|
|
|
if (!empty($a->profile['openid'])) {
|
2018-01-15 03:22:39 +01:00
|
|
|
$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) {
|
2019-10-15 15:01:17 +02:00
|
|
|
$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)) {
|
2018-11-30 15:06:22 +01: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
|
|
|
|
2018-11-30 15:06:22 +01: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-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
|
|
|
}
|