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