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