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