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