]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile.php
Move internal recursion-counter to the end of all cur/fetchUrl parameters
[friendica.git] / src / Module / Profile.php
1 <?php
2
3 namespace Friendica\Module;
4
5 use Friendica\BaseModule;
6 use Friendica\Content\Nav;
7 use Friendica\Content\Pager;
8 use Friendica\Content\Widget;
9 use Friendica\Core\ACL;
10 use Friendica\Core\Config;
11 use Friendica\Core\Hook;
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 as ContactModel;
17 use Friendica\Model\Group;
18 use Friendica\Model\Item;
19 use Friendica\Model\Profile as ProfileModel;
20 use Friendica\Model\User;
21 use Friendica\Protocol\ActivityPub;
22 use Friendica\Protocol\DFRN;
23 use Friendica\Util\DateTimeFormat;
24 use Friendica\Util\Security;
25 use Friendica\Util\Strings;
26 use Friendica\Util\XML;
27
28 require_once 'boot.php';
29
30 class Profile extends BaseModule
31 {
32         public static $which = '';
33         public static $profile = 0;
34
35         public static function init()
36         {
37                 $a = self::getApp();
38
39                 // @TODO: Replace with parameter from router
40                 if ($a->argc < 2) {
41                         throw new \Friendica\Network\HTTPException\BadRequestException();
42                 }
43
44                 self::$which = filter_var($a->argv[1], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP_BACKTICK);
45
46                 // @TODO: Replace with parameter from router
47                 if (local_user() && $a->argc > 2 && $a->argv[2] === 'view') {
48                         self::$which = $a->user['nickname'];
49                         self::$profile = filter_var($a->argv[1], FILTER_SANITIZE_NUMBER_INT);
50                 } else {
51                         DFRN::autoRedir($a, self::$which);
52                 }
53         }
54
55         public static function rawContent()
56         {
57                 if (ActivityPub::isRequest()) {
58                         $user = DBA::selectFirst('user', ['uid'], ['nickname' => self::$which]);
59                         $data = [];
60                         if (DBA::isResult($user)) {
61                                 $data = ActivityPub\Transmitter::getProfile($user['uid']);
62                         }
63
64                         if (!empty($data)) {
65                                 System::jsonExit($data, 'application/activity+json');
66                         } elseif (DBA::exists('userd', ['username' => self::$which])) {
67                                 // Known deleted user
68                                 $data = ActivityPub\Transmitter::getDeletedUser(self::$which);
69
70                                 System::jsonError(410, $data);
71                         } else {
72                                 // Any other case (unknown, blocked, unverified, expired, no profile, no self contact)
73                                 System::jsonError(404, $data);
74                         }
75                 }
76         }
77
78         public static function content($update = 0)
79         {
80                 $a = self::getApp();
81
82                 if (!$update) {
83                         ProfileModel::load($a, self::$which, self::$profile);
84
85                         $blocked   = !local_user() && !remote_user() && Config::get('system', 'block_public');
86                         $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];
87
88                         if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
89                                 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
90                         }
91
92                         if (!empty($a->profile['openidserver'])) {
93                                 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\n";
94                         }
95
96                         if (!empty($a->profile['openid'])) {
97                                 $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid'];
98                                 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\n";
99                         }
100
101                         // site block
102                         if (!$blocked && !$userblock) {
103                                 $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], defaults($a->profile, 'pub_keywords', ''));
104                                 if (strlen($keywords)) {
105                                         $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\n";
106                                 }
107                         }
108
109                         $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\n";
110                         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . self::$which . '" title="DFRN: ' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";
111                         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\n";
112                         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\n";
113                         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";
114                         $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''));
115                         $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\n";
116                         header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
117
118                         $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
119                         foreach ($dfrn_pages as $dfrn) {
120                                 $a->page['htmlhead'] .= '<link rel="dfrn-' . $dfrn . '" href="' . System::baseUrl() . '/dfrn_' . $dfrn . '/' . self::$which . '" />' . "\n";
121                         }
122                         $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . '/poco/' . self::$which . '" />' . "\n";
123                 }
124
125                 $category = $datequery = $datequery2 = '';
126
127                 if ($a->argc > 2) {
128                         for ($x = 2; $x < $a->argc; $x ++) {
129                                 if (is_a_date_arg($a->argv[$x])) {
130                                         if ($datequery) {
131                                                 $datequery2 = Strings::escapeHtml($a->argv[$x]);
132                                         } else {
133                                                 $datequery = Strings::escapeHtml($a->argv[$x]);
134                                         }
135                                 } else {
136                                         $category = $a->argv[$x];
137                                 }
138                         }
139                 }
140
141                 if (empty($category)) {
142                         $category = defaults($_GET, 'category', '');
143                 }
144
145                 $hashtags = defaults($_GET, 'tag', '');
146
147                 if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
148                         return Login::form();
149                 }
150
151                 $groups = [];
152                 $remote_cid = null;
153
154                 $o = '';
155
156                 if ($update) {
157                         // Ensure we've got a profile owner if updating.
158                         $a->profile['profile_uid'] = $update;
159                 } elseif ($a->profile['profile_uid'] == local_user()) {
160                         Nav::setSelected('home');
161                 }
162
163                 $remote_contact = ContactModel::isFollower(remote_user(), $a->profile['profile_uid']);
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 ($remote_contact) {
168                         $cdata = ContactModel::getPublicAndUserContacID(remote_user(), $a->profile['profile_uid']);
169                         if (!empty($cdata['user'])) {
170                                 $groups = Group::getIdsByContactId($cdata['user']);
171                                 $remote_cid = $cdata['user'];
172                         }
173                 }
174
175                 if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {
176                         notice(L10n::t('Access to this profile has been restricted.') . EOL);
177                         return '';
178                 }
179
180                 if (!$update) {
181             $tab = Strings::escapeTags(trim(defaults($_GET, 'tab', '')));
182
183                         $o .= ProfileModel::getTabs($a, $tab, $is_owner, $a->profile['nickname']);
184
185                         if ($tab === 'profile') {
186                                 $o .= ProfileModel::getAdvanced($a);
187                                 Hook::callAll('profile_advanced', $o);
188                                 return $o;
189                         }
190
191                         $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
192
193                         $commpage = $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
194                         $commvisitor = $commpage && $remote_contact;
195
196                         $a->page['aside'] .= Widget::postedByYear(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], $a->profile['profile_uid'] ?? 0, true);
197                         $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], XML::escape($category));
198                         $a->page['aside'] .= Widget::tagCloud();
199
200                         if (Security::canWriteToUserWall($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 ? ACL::getFullSelectorHTML($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                 // 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::getPermissionsSQLByUserId($a->profile['profile_uid'], $remote_contact, $groups, $remote_cid);
224                 $sql_extra2 = '';
225
226                 if ($update) {
227                         $last_updated = (defaults($_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(DateTimeFormat::MYSQL, $last_updated);
235                                 $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
236                         }
237
238                         $items_stmt = DBA::p(
239                                 "SELECT DISTINCT(`parent-uri`) AS `uri`, `item`.`created`
240                                 FROM `item`
241                                 INNER JOIN `contact`
242                                 ON `contact`.`id` = `item`.`contact-id`
243                                         AND NOT `contact`.`blocked`
244                                         AND NOT `contact`.`pending`
245                                 WHERE `item`.`uid` = ?
246                                         AND `item`.`visible`
247                                         AND     (NOT `item`.`deleted` OR `item`.`gravity` = ?)
248                                         AND NOT `item`.`moderated`
249                                         AND `item`.`wall`
250                                         $sql_extra4
251                                         $sql_extra
252                                 ORDER BY `item`.`created` DESC",
253                                 $a->profile['profile_uid'],
254                                 GRAVITY_ACTIVITY
255                         );
256
257                         if (!DBA::isResult($items_stmt)) {
258                                 return '';
259                         }
260
261                         $pager = new Pager($a->query_string);
262                 } else {
263                         $sql_post_table = "";
264
265                         if (!empty($category)) {
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                                         DBA::escape(Strings::protectSprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
268                         }
269
270                         if (!empty($hashtags)) {
271                                 $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` ",
272                                         DBA::escape(Strings::protectSprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));
273                         }
274
275                         if (!empty($datequery)) {
276                                 $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` <= '%s' ", DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
277                         }
278                         if (!empty($datequery2)) {
279                                 $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` >= '%s' ", DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
280                         }
281
282                         // Does the profile page belong to a forum?
283                         // If not then we can improve the performance with an additional condition
284                         $condition = ['uid' => $a->profile['profile_uid'], 'page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]];
285                         if (!DBA::exists('user', $condition)) {
286                                 $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
287                         } else {
288                                 $sql_extra3 = "";
289                         }
290
291                         //  check if we serve a mobile device and get the user settings
292                         //  accordingly
293                         if ($a->is_mobile) {
294                                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
295                         } else {
296                                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
297                         }
298
299                         //  now that we have the user settings, see if the theme forces
300                         //  a maximum item number which is lower then the user choice
301                         if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
302                                 $itemspage_network = $a->force_max_items;
303                         }
304
305                         $pager = new Pager($a->query_string, $itemspage_network);
306
307                         $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
308
309                         $items_stmt = DBA::p(
310                                 "SELECT `item`.`uri`
311                                 FROM `thread`
312                                 STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
313                                 $sql_post_table
314                                 STRAIGHT_JOIN `contact`
315                                 ON `contact`.`id` = `thread`.`contact-id`
316                                         AND NOT `contact`.`blocked`
317                                         AND NOT `contact`.`pending`
318                                 WHERE `thread`.`uid` = ?
319                                         AND `thread`.`visible`
320                                         AND NOT `thread`.`deleted`
321                                         AND NOT `thread`.`moderated`
322                                         AND `thread`.`wall`
323                                         $sql_extra3
324                                         $sql_extra
325                                         $sql_extra2
326                                 ORDER BY `thread`.`created` DESC
327                                 $pager_sql",
328                                 $a->profile['profile_uid']
329                         );
330                 }
331
332                 // Set a time stamp for this page. We will make use of it when we
333                 // search for new items (update routine)
334                 $_SESSION['last_updated'][$last_updated_key] = time();
335
336                 if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
337                         $o .= ProfileModel::getBirthdays();
338                         $o .= ProfileModel::getEventsReminderHTML();
339                 }
340
341                 if ($is_owner) {
342                         $unseen = Item::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);
343                         if ($unseen) {
344                                 Item::update(['unseen' => false], ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
345                         }
346                 }
347
348                 $items = DBA::toArray($items_stmt);
349
350                 $o .= conversation($a, $items, $pager, 'profile', $update, false, 'created', $a->profile['profile_uid']);
351
352                 if (!$update) {
353                         $o .= $pager->renderMinimal(count($items));
354                 }
355
356                 return $o;
357         }
358 }