]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Merge pull request #6311 from annando/issue-6308
[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         $remote_cid = null;
143
144         $tab = 'posts';
145         $o = '';
146
147         if ($update) {
148                 // Ensure we've got a profile owner if updating.
149                 $a->profile['profile_uid'] = $update;
150         } elseif ($a->profile['profile_uid'] == local_user()) {
151                 Nav::setSelected('home');
152         }
153
154         $remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
155         $is_owner = local_user() == $a->profile['profile_uid'];
156         $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();
157
158         if ($remote_contact) {
159                 $cdata = Contact::getPublicAndUserContacID(remote_user(), $a->profile['profile_uid']);
160                 if (!empty($cdata['user'])) {
161                         $groups = Group::getIdsByContactId($cdata['user']);
162                         $remote_cid = $cdata['user'];
163                 }
164         }
165
166         if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {
167                 notice(L10n::t('Access to this profile has been restricted.') . EOL);
168                 return;
169         }
170
171         if (!$update) {
172                 $tab = false;
173                 if (!empty($_GET['tab'])) {
174                         $tab = Strings::escapeTags(trim($_GET['tab']));
175                 }
176
177                 $o .= Profile::getTabs($a, $is_owner, $a->profile['nickname']);
178
179                 if ($tab === 'profile') {
180                         $o .= Profile::getAdvanced($a);
181                         Addon::callHooks('profile_advanced', $o);
182                         return $o;
183                 }
184
185                 $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
186
187                 $commpage = $a->profile['page-flags'] == Contact::PAGE_COMMUNITY;
188                 $commvisitor = $commpage && $remote_contact;
189
190                 $a->page['aside'] .= posted_date_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], $a->profile['profile_uid'], true);
191                 $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (!empty($category) ? XML::escape($category) : ''));
192                 $a->page['aside'] .= Widget::tagCloud();
193
194                 if (Security::canWriteToUserWall($a->profile['profile_uid'])) {
195                         $x = [
196                                 'is_owner' => $is_owner,
197                                 'allow_location' => ($is_owner || $commvisitor) && $a->profile['allow_location'],
198                                 'default_location' => $is_owner ? $a->user['default-location'] : '',
199                                 'nickname' => $a->profile['nickname'],
200                                 'lockstate' => is_array($a->user)
201                                         && (strlen($a->user['allow_cid'])
202                                                 || strlen($a->user['allow_gid'])
203                                                 || strlen($a->user['deny_cid'])
204                                                 || strlen($a->user['deny_gid'])
205                                         ) ? 'lock' : 'unlock',
206                                 'acl' => $is_owner ? ACL::getFullSelectorHTML($a->user, true) : '',
207                                 'bang' => '',
208                                 'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
209                                 'profile_uid' => $a->profile['profile_uid'],
210                         ];
211
212                         $o .= status_editor($a, $x);
213                 }
214         }
215
216         // Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
217         $sql_extra = Item::getPermissionsSQLByUserId($a->profile['profile_uid'], $remote_contact, $groups, $remote_cid);
218         $sql_extra2 = '';
219
220         if ($update) {
221                 $last_updated = (defaults($_SESSION['last_updated'], $last_updated_key, 0));
222
223                 // If the page user is the owner of the page we should query for unseen
224                 // items. Otherwise use a timestamp of the last succesful update request.
225                 if ($is_owner || !$last_updated) {
226                         $sql_extra4 = " AND `item`.`unseen`";
227                 } else {
228                         $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);
229                         $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
230                 }
231
232                 $items = q("SELECT DISTINCT(`parent-uri`) AS `uri`, `item`.`created`
233                         FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
234                         AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
235                         WHERE `item`.`uid` = %d AND `item`.`visible` AND
236                         (NOT `item`.`deleted` OR `item`.`gravity` = %d)
237                         AND NOT `item`.`moderated` AND `item`.`wall`
238                         $sql_extra4
239                         $sql_extra
240                         ORDER BY `item`.`created` DESC",
241                         intval($a->profile['profile_uid']), intval(GRAVITY_ACTIVITY)
242                 );
243
244                 if (!DBA::isResult($items)) {
245                         return '';
246                 }
247
248                 $pager = new Pager($a->query_string);
249         } else {
250                 $sql_post_table = "";
251
252                 if (!empty($category)) {
253                         $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` ",
254                                 DBA::escape(Strings::protectSprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
255                 }
256
257                 if (!empty($hashtags)) {
258                         $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` ",
259                                 DBA::escape(Strings::protectSprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));
260                 }
261
262                 if (!empty($datequery)) {
263                         $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` <= '%s' ", DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
264                 }
265                 if (!empty($datequery2)) {
266                         $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` >= '%s' ", DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
267                 }
268
269                 // Does the profile page belong to a forum?
270                 // If not then we can improve the performance with an additional condition
271                 $condition = ['uid' => $a->profile['profile_uid'], 'page-flags' => [Contact::PAGE_COMMUNITY, Contact::PAGE_PRVGROUP]];
272                 if (!DBA::exists('user', $condition)) {
273                         $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
274                 } else {
275                         $sql_extra3 = "";
276                 }
277
278                 //  check if we serve a mobile device and get the user settings
279                 //  accordingly
280                 if ($a->is_mobile) {
281                         $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
282                 } else {
283                         $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
284                 }
285
286                 //  now that we have the user settings, see if the theme forces
287                 //  a maximum item number which is lower then the user choice
288                 if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
289                         $itemspage_network = $a->force_max_items;
290                 }
291
292                 $pager = new Pager($a->query_string, $itemspage_network);
293
294                 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
295
296                 $items = q("SELECT `item`.`uri`
297                         FROM `thread`
298                         STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
299                         $sql_post_table
300                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
301                                 AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
302                         WHERE `thread`.`uid` = %d AND `thread`.`visible`
303                                 AND NOT `thread`.`deleted`
304                                 AND NOT `thread`.`moderated`
305                                 AND `thread`.`wall`
306                                 $sql_extra3 $sql_extra $sql_extra2
307                         ORDER BY `thread`.`created` DESC $pager_sql",
308                         intval($a->profile['profile_uid'])
309                 );
310         }
311
312         // Set a time stamp for this page. We will make use of it when we
313         // search for new items (update routine)
314         $_SESSION['last_updated'][$last_updated_key] = time();
315
316         if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
317                 $o .= Profile::getBirthdays();
318                 $o .= Profile::getEventsReminderHTML();
319         }
320
321         if ($is_owner) {
322                 $unseen = Item::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);
323                 if ($unseen) {
324                         $r = Item::update(['unseen' => false],
325                                         ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
326                 }
327         }
328
329         $o .= conversation($a, $items, $pager, 'profile', $update, false, 'created', $a->profile['profile_uid']);
330
331         if (!$update) {
332                 $o .= $pager->renderMinimal(count($items));
333         }
334
335         return $o;
336 }