]> git.mxchange.org Git - friendica.git/blob - src/Module/HCard.php
Merge pull request #10543 from annando/app-variables
[friendica.git] / src / Module / HCard.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Session;
26 use Friendica\DI;
27 use Friendica\Model\Profile;
28 use Friendica\Model\User;
29 use Friendica\Network\HTTPException;
30
31 /**
32  * Loads a profile for the hCard page
33  * @see http://microformats.org/wiki/hcard
34  */
35 class HCard extends BaseModule
36 {
37         public static function rawContent(array $parameters = [])
38         {
39                 $a = DI::app();
40
41                 if ((local_user()) && ($parameters['action'] ?? '') === 'view') {
42                         // A logged in user views a profile of a user
43                         $nickname = $a->user['nickname'];
44                 } elseif (empty($parameters['action'])) {
45                         // Show the profile hCard
46                         $nickname = $parameters['profile'];
47                 } else {
48                         throw new HTTPException\NotFoundException(DI::l10n()->t('No profile'));
49                 }
50
51                 $profile = Profile::load($a, $nickname, false);
52
53                 if (empty($profile)) {
54                         throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
55                 }
56
57                 $page = DI::page();
58
59                 if (!empty($profile['page-flags']) && ($profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
60                         $page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
61                 }
62                 if (!empty($profile['openidserver'])) {
63                         $page['htmlhead'] .= '<link rel="openid.server" href="' . $profile['openidserver'] . '" />' . "\r\n";
64                 }
65                 if (!empty($profile['openid'])) {
66                         $delegate         = ((strstr($profile['openid'], '://')) ? $profile['openid'] : 'http://' . $profile['openid']);
67                         $page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
68                 }
69
70                 // check if blocked
71                 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
72                         $keywords = $profile['pub_keywords'] ?? '';
73                         $keywords = str_replace([',', ' ', ',,'], [' ', ',', ','], $keywords);
74                         if (strlen($keywords)) {
75                                 $page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
76                         }
77                 }
78
79                 $baseUrl = DI::baseUrl();
80
81                 $uri = urlencode('acct:' . $profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : ''));
82
83                 $page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
84                 $page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl->get() . '/dfrn_poll/' . $nickname . '" />' . "\r\n";
85                 $page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $baseUrl->get() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
86                 header('Link: <' . $baseUrl->get() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
87
88                 foreach (['request', 'confirm', 'notify', 'poll'] as $dfrn) {
89                         $page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . $baseUrl->get() . "/dfrn_{$dfrn}/{$nickname}\" />\r\n";
90                 }
91         }
92 }