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