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