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