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