3 * @file mod/profile.php
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\DBM;
16 use Friendica\Model\Group;
17 use Friendica\Model\Item;
18 use Friendica\Model\Profile;
19 use Friendica\Module\Login;
20 use Friendica\Protocol\DFRN;
21 use Friendica\Util\DateTimeFormat;
23 function profile_init(App $a)
25 if (!x($a->page, 'aside')) {
26 $a->page['aside'] = '';
30 $which = htmlspecialchars($a->argv[1]);
32 $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");
33 if (DBM::is_result($r)) {
34 goaway(System::baseUrl() . '/profile/' . $r[0]['nickname']);
36 logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
37 notice(L10n::t('Requested profile is not available.') . EOL);
44 if (local_user() && $a->argc > 2 && $a->argv[2] === 'view') {
45 $which = $a->user['nickname'];
46 $profile = htmlspecialchars($a->argv[1]);
48 DFRN::autoRedir($a, $which);
51 Profile::load($a, $which, $profile);
53 $blocked = !local_user() && !remote_user() && Config::get('system', 'block_public');
54 $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];
56 if (x($a->profile, 'page-flags') && $a->profile['page-flags'] == PAGE_COMMUNITY) {
57 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
60 if (x($a->profile, 'openidserver')) {
61 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
64 if (x($a->profile, 'openid')) {
65 $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid'];
66 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
70 if (!$blocked && !$userblock) {
71 $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], defaults($a->profile, 'pub_keywords', ''));
72 if (strlen($keywords)) {
73 $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
77 $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
78 $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";
79 $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";
80 $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";
81 $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";
82 $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . ($a->path ? '/' . $a->path : ''));
83 $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
84 header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
86 $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
87 foreach ($dfrn_pages as $dfrn) {
88 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . System::baseUrl() . "/dfrn_{$dfrn}/{$which}\" />\r\n";
90 $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . "/poco/{$which}\" />\r\n";
93 function profile_content(App $a, $update = 0)
95 $category = $datequery = $datequery2 = '';
98 for ($x = 2; $x < $a->argc; $x ++) {
99 if (is_a_date_arg($a->argv[$x])) {
101 $datequery2 = escape_tags($a->argv[$x]);
103 $datequery = escape_tags($a->argv[$x]);
106 $category = $a->argv[$x];
112 $category = defaults($_GET, 'category', '');
115 $hashtags = defaults($_GET, 'tag', '');
117 if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
118 return Login::form();
121 require_once 'include/security.php';
122 require_once 'include/conversation.php';
123 require_once 'include/items.php';
131 // Ensure we've got a profile owner if updating.
132 $a->profile['profile_uid'] = $update;
133 } elseif ($a->profile['profile_uid'] == local_user()) {
134 Nav::setSelected('home');
138 $remote_contact = false;
142 if (x($_SESSION, 'remote') && is_array($_SESSION['remote'])) {
143 foreach ($_SESSION['remote'] as $v) {
144 if ($v['uid'] == $a->profile['profile_uid']) {
145 $contact_id = $v['cid'];
152 $groups = Group::getIdsByContactId($contact_id);
153 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
155 intval($a->profile['profile_uid'])
157 if (DBM::is_result($r)) {
159 $remote_contact = true;
163 if (!$remote_contact) {
165 $contact_id = $_SESSION['cid'];
166 $contact = $a->contact;
170 $is_owner = local_user() == $a->profile['profile_uid'];
171 $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();
173 if (x($a->profile, 'hidewall') && !$is_owner && !$remote_contact) {
174 notice(L10n::t('Access to this profile has been restricted.') . EOL);
180 if (x($_GET, 'tab')) {
181 $tab = notags(trim($_GET['tab']));
184 $o .= Profile::getTabs($a, $is_owner, $a->profile['nickname']);
186 if ($tab === 'profile') {
187 $o .= Profile::getAdvanced($a);
188 Addon::callHooks('profile_advanced', $o);
192 $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
194 if (x($_SESSION, 'new_member') && $is_owner) {
195 $o .= '<div id="newmember-tips"><a href="newmember"><b>' . L10n::t('Tips for New Members') . '</b></a></div>';
198 $commpage = $a->profile['page-flags'] == PAGE_COMMUNITY;
199 $commvisitor = $commpage && $remote_contact;
201 $a->page['aside'] .= posted_date_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], $a->profile['profile_uid'], true);
202 $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (x($category) ? xmlify($category) : ''));
203 $a->page['aside'] .= Widget::tagCloud();
205 if (can_write_wall($a->profile['profile_uid'])) {
207 'is_owner' => $is_owner,
208 'allow_location' => ($is_owner || $commvisitor) && $a->profile['allow_location'],
209 'default_location' => $is_owner ? $a->user['default-location'] : '',
210 'nickname' => $a->profile['nickname'],
211 'lockstate' => is_array($a->user)
212 && (strlen($a->user['allow_cid'])
213 || strlen($a->user['allow_gid'])
214 || strlen($a->user['deny_cid'])
215 || strlen($a->user['deny_gid'])
216 ) ? 'lock' : 'unlock',
217 'acl' => $is_owner ? ACL::getFullSelectorHTML($a->user, true) : '',
219 'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
220 'profile_uid' => $a->profile['profile_uid'],
223 $o .= status_editor($a, $x);
228 // Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
229 $sql_extra = item_permissions_sql($a->profile['profile_uid'], $remote_contact, $groups);
233 $last_updated = (x($_SESSION['last_updated'], $last_updated_key) ? $_SESSION['last_updated'][$last_updated_key] : 0);
235 // If the page user is the owner of the page we should query for unseen
236 // items. Otherwise use a timestamp of the last succesful update request.
237 if ($is_owner || !$last_updated) {
238 $sql_extra4 = " AND `item`.`unseen`";
240 $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);
241 $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
244 $r = q("SELECT distinct(parent) AS `item_id`, `item`.`network` AS `item_network`, `item`.`created`
245 FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
246 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
247 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
248 (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE . "'
249 OR item.verb = '" . ACTIVITY_DISLIKE . "' OR item.verb = '" . ACTIVITY_ATTEND . "'
250 OR item.verb = '" . ACTIVITY_ATTENDNO . "' OR item.verb = '" . ACTIVITY_ATTENDMAYBE . "')
251 AND `item`.`moderated` = 0
252 AND `item`.`wall` = 1
255 ORDER BY `item`.`created` DESC",
256 intval($a->profile['profile_uid'])
259 if (!DBM::is_result($r)) {
263 $sql_post_table = "";
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 dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
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 dbesc(protect_sprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));
276 $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", dbesc(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
279 $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
282 // Belongs the profile page to a forum?
283 // If not then we can improve the performance with an additional condition
284 $r = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `page-flags` IN (%d, %d)",
285 intval($a->profile['profile_uid']),
286 intval(PAGE_COMMUNITY),
287 intval(PAGE_PRVGROUP)
290 if (!DBM::is_result($r)) {
291 $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
294 // check if we serve a mobile device and get the user settings
297 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
299 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
302 // now that we have the user settings, see if the theme forces
303 // a maximum item number which is lower then the user choice
304 if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
305 $itemspage_network = $a->force_max_items;
308 $a->set_pager_itemspage($itemspage_network);
310 $pager_sql = sprintf(" LIMIT %d, %d ", intval($a->pager['start']), intval($a->pager['itemspage']));
312 $r = q("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`
314 STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
316 STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
317 AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
318 WHERE `thread`.`uid` = %d AND `thread`.`visible`
319 AND NOT `thread`.`deleted`
320 AND NOT `thread`.`moderated`
322 $sql_extra3 $sql_extra $sql_extra2
323 ORDER BY `thread`.`created` DESC $pager_sql",
324 intval($a->profile['profile_uid'])
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();
335 if (DBM::is_result($r)) {
336 foreach ($r as $rr) {
337 $parents_arr[] = $rr['item_id'];
340 $parents_str = implode(', ', $parents_arr);
342 $items = q(item_query($a->profile['profile_uid']) . " AND `item`.`uid` = %d
343 AND `item`.`parent` IN (%s)
345 intval($a->profile['profile_uid']),
349 $items = conv_sort($items, 'created');
354 if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
355 $o .= Profile::getBirthdays();
356 $o .= Profile::getEventsReminderHTML();
361 $unseen = dba::exists('item', ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
363 $r = Item::update(['unseen' => false],
364 ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
368 $o .= conversation($a, $items, 'profile', $update, false, 'commented', local_user());
371 $o .= alt_pager($a, count($items));