]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Fix for remote authentication when visiting contact's pages
[friendica.git] / mod / profile.php
1 <?php
2 /**
3  * @file mod/profile.php
4  */
5
6 use Friendica\App;
7 use Friendica\Content\Nav;
8 use Friendica\Content\Pager;
9 use Friendica\Content\Widget;
10 use Friendica\Core\ACL;
11 use Friendica\Core\Addon;
12 use Friendica\Core\Config;
13 use Friendica\Core\L10n;
14 use Friendica\Core\Logger;
15 use Friendica\Core\PConfig;
16 use Friendica\Core\System;
17 use Friendica\Database\DBA;
18 use Friendica\Model\Contact;
19 use Friendica\Model\Group;
20 use Friendica\Model\Item;
21 use Friendica\Model\Profile;
22 use Friendica\Module\Login;
23 use Friendica\Protocol\ActivityPub;
24 use Friendica\Protocol\DFRN;
25 use Friendica\Util\DateTimeFormat;
26 use Friendica\Util\Security;
27 use Friendica\Util\Strings;
28 use Friendica\Util\XML;
29
30 function profile_init(App $a)
31 {
32         if (empty($a->page['aside'])) {
33                 $a->page['aside'] = '';
34         }
35
36         if ($a->argc > 1) {
37                 $which = htmlspecialchars($a->argv[1]);
38         } else {
39                 $r = q("SELECT `nickname` FROM `user` WHERE `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 ORDER BY RAND() LIMIT 1");
40                 if (DBA::isResult($r)) {
41                         $a->internalRedirect('profile/' . $r[0]['nickname']);
42                 } else {
43                         Logger::log('profile error: mod_profile ' . $a->query_string, Logger::DEBUG);
44                         notice(L10n::t('Requested profile is not available.') . EOL);
45                         $a->error = 404;
46                         return;
47                 }
48         }
49
50         $profile = 0;
51         if (local_user() && $a->argc > 2 && $a->argv[2] === 'view') {
52                 $which = $a->user['nickname'];
53                 $profile = htmlspecialchars($a->argv[1]);
54         } else {
55                 DFRN::autoRedir($a, $which);
56         }
57
58         if (ActivityPub::isRequest()) {
59                 $user = DBA::selectFirst('user', ['uid'], ['nickname' => $which]);
60                 if (DBA::isResult($user)) {
61                         $data = ActivityPub\Transmitter::getProfile($user['uid']);
62                         header('Content-Type: application/activity+json');
63                         echo json_encode($data);
64                         exit();
65                 }
66         }
67
68         Profile::load($a, $which, $profile);
69
70         $blocked   = !local_user() && !remote_user() && Config::get('system', 'block_public');
71         $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];
72
73         if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == Contact::PAGE_COMMUNITY) {
74                 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
75         }
76
77         if (!empty($a->profile['openidserver'])) {
78                 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
79         }
80
81         if (!empty($a->profile['openid'])) {
82                 $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid'];
83                 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
84         }
85
86         // site block
87         if (!$blocked && !$userblock) {
88                 $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], defaults($a->profile, 'pub_keywords', ''));
89                 if (strlen($keywords)) {
90                         $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
91                 }
92         }
93
94         $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
95         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which . '" title="DFRN: ' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
96         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\r\n";
97         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\r\n";
98         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
99         $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''));
100         $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
101         header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
102
103         $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
104         foreach ($dfrn_pages as $dfrn) {
105                 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . System::baseUrl() . "/dfrn_{$dfrn}/{$which}\" />\r\n";
106         }
107         $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . "/poco/{$which}\" />\r\n";
108 }
109
110 function profile_content(App $a, $update = 0)
111 {
112         $category = $datequery = $datequery2 = '';
113
114         if ($a->argc > 2) {
115                 for ($x = 2; $x < $a->argc; $x ++) {
116                         if (is_a_date_arg($a->argv[$x])) {
117                                 if ($datequery) {
118                                         $datequery2 = Strings::escapeHtml($a->argv[$x]);
119                                 } else {
120                                         $datequery = Strings::escapeHtml($a->argv[$x]);
121                                 }
122                         } else {
123                                 $category = $a->argv[$x];
124                         }
125                 }
126         }
127
128         if (empty($category)) {
129                 $category = defaults($_GET, 'category', '');
130         }
131
132         $hashtags = defaults($_GET, 'tag', '');
133
134         if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
135                 return Login::form();
136         }
137
138         require_once 'include/conversation.php';
139         require_once 'include/items.php';
140
141         $groups = [];
142
143         $tab = 'posts';
144         $o = '';
145
146         if ($update) {
147                 // Ensure we've got a profile owner if updating.
148                 $a->profile['profile_uid'] = $update;
149         } elseif ($a->profile['profile_uid'] == local_user()) {
150                 Nav::setSelected('home');
151         }
152
153         $remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
154         $is_owner = local_user() == $a->profile['profile_uid'];
155         $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();
156
157         if ($remote_contact) {
158                 $cdata = Contact::getPublicAndUserContacID(remote_user(), $a->profile['profile_uid']);
159                 if (!empty($cdata['user'])) {
160                         $groups = Group::getIdsByContactId($cdata['user']);
161                 }
162         }
163
164         if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {
165                 notice(L10n::t('Access to this profile has been restricted.') . EOL);
166                 return;
167         }
168
169         if (!$update) {
170                 $tab = false;
171                 if (!empty($_GET['tab'])) {
172                         $tab = Strings::escapeTags(trim($_GET['tab']));
173                 }
174
175                 $o .= Profile::getTabs($a, $is_owner, $a->profile['nickname']);
176
177                 if ($tab === 'profile') {
178                         $o .= Profile::getAdvanced($a);
179                         Addon::callHooks('profile_advanced', $o);
180                         return $o;
181                 }
182
183                 $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
184
185                 $commpage = $a->profile['page-flags'] == Contact::PAGE_COMMUNITY;
186                 $commvisitor = $commpage && $remote_contact;
187
188                 $a->page['aside'] .= posted_date_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], $a->profile['profile_uid'], true);
189                 $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (!empty($category) ? XML::escape($category) : ''));
190                 $a->page['aside'] .= Widget::tagCloud();
191
192                 if (Security::canWriteToUserWall($a->profile['profile_uid'])) {
193                         $x = [
194                                 'is_owner' => $is_owner,
195                                 'allow_location' => ($is_owner || $commvisitor) && $a->profile['allow_location'],
196                                 'default_location' => $is_owner ? $a->user['default-location'] : '',
197                                 'nickname' => $a->profile['nickname'],
198                                 'lockstate' => is_array($a->user)
199                                         && (strlen($a->user['allow_cid'])
200                                                 || strlen($a->user['allow_gid'])
201                                                 || strlen($a->user['deny_cid'])
202                                                 || strlen($a->user['deny_gid'])
203                                         ) ? 'lock' : 'unlock',
204                                 'acl' => $is_owner ? ACL::getFullSelectorHTML($a->user, true) : '',
205                                 'bang' => '',
206                                 'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
207                                 'profile_uid' => $a->profile['profile_uid'],
208                         ];
209
210                         $o .= status_editor($a, $x);
211                 }
212         }
213
214
215         // Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
216         $sql_extra = Item::getPermissionsSQLByUserId($a->profile['profile_uid'], $remote_contact, $groups);
217         $sql_extra2 = '';
218
219         if ($update) {
220                 $last_updated = (defaults($_SESSION['last_updated'], $last_updated_key, 0));
221
222                 // If the page user is the owner of the page we should query for unseen
223                 // items. Otherwise use a timestamp of the last succesful update request.
224                 if ($is_owner || !$last_updated) {
225                         $sql_extra4 = " AND `item`.`unseen`";
226                 } else {
227                         $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);
228                         $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
229                 }
230
231                 $items = q("SELECT DISTINCT(`parent-uri`) AS `uri`, `item`.`created`
232                         FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
233                         AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
234                         WHERE `item`.`uid` = %d AND `item`.`visible` AND
235                         (NOT `item`.`deleted` OR `item`.`gravity` = %d)
236                         AND NOT `item`.`moderated` AND `item`.`wall`
237                         $sql_extra4
238                         $sql_extra
239                         ORDER BY `item`.`created` DESC",
240                         intval($a->profile['profile_uid']), intval(GRAVITY_ACTIVITY)
241                 );
242
243                 if (!DBA::isResult($items)) {
244                         return '';
245                 }
246
247                 $pager = new Pager($a->query_string);
248         } else {
249                 $sql_post_table = "";
250
251                 if (!empty($category)) {
252                         $sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
253                                 DBA::escape(Strings::protectSprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
254                 }
255
256                 if (!empty($hashtags)) {
257                         $sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
258                                 DBA::escape(Strings::protectSprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));
259                 }
260
261                 if (!empty($datequery)) {
262                         $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` <= '%s' ", DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
263                 }
264                 if (!empty($datequery2)) {
265                         $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` >= '%s' ", DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
266                 }
267
268                 // Does the profile page belong to a forum?
269                 // If not then we can improve the performance with an additional condition
270                 $condition = ['uid' => $a->profile['profile_uid'], 'page-flags' => [Contact::PAGE_COMMUNITY, Contact::PAGE_PRVGROUP]];
271                 if (!DBA::exists('user', $condition)) {
272                         $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
273                 } else {
274                         $sql_extra3 = "";
275                 }
276
277                 //  check if we serve a mobile device and get the user settings
278                 //  accordingly
279                 if ($a->is_mobile) {
280                         $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
281                 } else {
282                         $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
283                 }
284
285                 //  now that we have the user settings, see if the theme forces
286                 //  a maximum item number which is lower then the user choice
287                 if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
288                         $itemspage_network = $a->force_max_items;
289                 }
290
291                 $pager = new Pager($a->query_string, $itemspage_network);
292
293                 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
294
295                 $items = q("SELECT `item`.`uri`
296                         FROM `thread`
297                         STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
298                         $sql_post_table
299                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
300                                 AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
301                         WHERE `thread`.`uid` = %d AND `thread`.`visible`
302                                 AND NOT `thread`.`deleted`
303                                 AND NOT `thread`.`moderated`
304                                 AND `thread`.`wall`
305                                 $sql_extra3 $sql_extra $sql_extra2
306                         ORDER BY `thread`.`created` DESC $pager_sql",
307                         intval($a->profile['profile_uid'])
308                 );
309         }
310
311         // Set a time stamp for this page. We will make use of it when we
312         // search for new items (update routine)
313         $_SESSION['last_updated'][$last_updated_key] = time();
314
315         if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
316                 $o .= Profile::getBirthdays();
317                 $o .= Profile::getEventsReminderHTML();
318         }
319
320         if ($is_owner) {
321                 $unseen = Item::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);
322                 if ($unseen) {
323                         $r = Item::update(['unseen' => false],
324                                         ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
325                 }
326         }
327
328         $o .= conversation($a, $items, $pager, 'profile', $update, false, 'created', local_user());
329
330         if (!$update) {
331                 $o .= $pager->renderMinimal(count($items));
332         }
333
334         return $o;
335 }