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