]> git.mxchange.org Git - friendica.git/blob - src/Module/HoverCard.php
Merge pull request #8269 from MrPetovan/bug/frio-more-actions
[friendica.git] / src / Module / HoverCard.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\NotFoundException;
30
31 /**
32  * Loads a profile for the HoverCard view
33  */
34 class HoverCard extends BaseModule
35 {
36         public static function rawContent(array $parameters = [])
37         {
38                 $a = DI::app();
39
40                 if ((local_user()) && ($parameters['action'] ?? '') === 'view') {
41                         // A logged in user views a profile of a user
42                         $nickname = $a->user['nickname'];
43                 } elseif (empty($parameters['action'])) {
44                         // Show the profile hovercard
45                         $nickname = $parameters['profile'];
46                 } else {
47                         throw new NotFoundException(DI::l10n()->t('No profile'));
48                 }
49
50                 Profile::load($a, $nickname);
51
52                 $page = DI::page();
53
54                 if (!empty($a->profile['page-flags']) && ($a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
55                         $page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
56                 }
57                 if (!empty($a->profile['openidserver'])) {
58                         $page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
59                 }
60                 if (!empty($a->profile['openid'])) {
61                         $delegate         = ((strstr($a->profile['openid'], '://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
62                         $page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
63                 }
64
65                 // check if blocked
66                 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
67                         $keywords = $a->profile['pub_keywords'] ?? '';
68                         $keywords = str_replace([',', ' ', ',,'], [' ', ',', ','], $keywords);
69                         if (strlen($keywords)) {
70                                 $page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
71                         }
72                 }
73
74                 $baseUrl = DI::baseUrl();
75
76                 $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $baseUrl->getHostname() . ($baseUrl->getUrlPath() ? '/' . $baseUrl->getUrlPath() : ''));
77
78                 $page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n";
79                 $page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $baseUrl->get() . '/dfrn_poll/' . $nickname . '" />' . "\r\n";
80                 $page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $baseUrl->get() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
81                 header('Link: <' . $baseUrl->get() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
82
83                 foreach (['request', 'confirm', 'notify', 'poll'] as $dfrn) {
84                         $page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . $baseUrl->get() . "/dfrn_{$dfrn}/{$nickname}\" />\r\n";
85                 }
86         }
87 }