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