friendica/src/Module/HCard.php

97 lines
3.6 KiB
PHP
Raw Normal View History

2019-12-27 22:53:09 +01:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
2020-02-09 15:45:36 +01:00
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2019-12-27 22:53:09 +01:00
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Core\Session;
2019-12-29 16:48:15 +01:00
use Friendica\DI;
2019-12-27 22:53:09 +01:00
use Friendica\Model\Profile;
use Friendica\Model\User;
use Friendica\Network\HTTPException;
2019-12-27 22:53:09 +01:00
/**
2021-07-23 14:38:29 +02:00
* Loads a profile for the hCard page
* @see http://microformats.org/wiki/hcard
2019-12-27 22:53:09 +01:00
*/
2021-07-23 14:38:29 +02:00
class HCard extends BaseModule
2019-12-27 22:53:09 +01:00
{
public static function content(array $parameters = [])
2019-12-27 22:53:09 +01:00
{
2019-12-28 15:28:17 +01:00
if ((local_user()) && ($parameters['action'] ?? '') === 'view') {
// A logged in user views a profile of a user
$nickname = DI::app()->getLoggedInUserNickname();
2019-12-28 15:28:17 +01:00
} elseif (empty($parameters['action'])) {
2021-07-23 14:38:29 +02:00
// Show the profile hCard
2019-12-27 22:53:09 +01:00
$nickname = $parameters['profile'];
} else {
throw new HTTPException\NotFoundException(DI::l10n()->t('No profile'));
2019-12-27 22:53:09 +01:00
}
$profile = User::getOwnerDataByNick($nickname);
2019-12-27 22:53:09 +01:00
2021-07-24 12:09:39 +02:00
if (empty($profile)) {
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
}
2019-12-29 16:48:15 +01:00
$page = DI::page();
2019-12-27 22:53:09 +01:00
2021-07-24 12:09:39 +02:00
if (!empty($profile['page-flags']) && ($profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
2019-12-27 22:53:09 +01:00
$page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
}
2021-07-24 12:09:39 +02:00
if (!empty($profile['openidserver'])) {
$page['htmlhead'] .= '<link rel="openid.server" href="' . $profile['openidserver'] . '" />' . "\r\n";
2019-12-27 22:53:09 +01:00
}
2021-07-24 12:09:39 +02:00
if (!empty($profile['openid'])) {
$delegate = ((strstr($profile['openid'], '://')) ? $profile['openid'] : 'http://' . $profile['openid']);
2019-12-27 22:53:09 +01:00
$page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
}
2019-12-29 16:48:15 +01:00
$baseUrl = DI::baseUrl();
2019-12-27 22:53:09 +01:00
2021-07-24 12:09:39 +02:00
$uri = urlencode('acct:' . $profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : ''));
2019-12-27 22:53:09 +01:00
2021-07-24 12:09:39 +02:00
$page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
2019-12-27 22:53:09 +01:00
$page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl->get() . '/dfrn_poll/' . $nickname . '" />' . "\r\n";
$page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $baseUrl->get() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
header('Link: <' . $baseUrl->get() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
foreach (['request', 'confirm', 'notify', 'poll'] as $dfrn) {
$page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . $baseUrl->get() . "/dfrn_{$dfrn}/{$nickname}\" />\r\n";
}
$block = (DI::config()->get('system', 'block_public') && !Session::isAuthenticated());
// check if blocked
if ($block) {
$keywords = $profile['pub_keywords'] ?? '';
$keywords = str_replace([',', ' ', ',,'], [' ', ',', ','], $keywords);
if (strlen($keywords)) {
$page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
}
}
$page['aside'] = Profile::getVCardHtml($profile, $block, false);
return '';
2019-12-27 22:53:09 +01:00
}
}