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