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