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