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