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\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;
25 function profile_init(App $a)
27 if (empty($a->page['aside'])) {
28 $a->page['aside'] = '';
32 $which = htmlspecialchars($a->argv[1]);
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']);
38 logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
39 notice(L10n::t('Requested profile is not available.') . EOL);
46 if (local_user() && $a->argc > 2 && $a->argv[2] === 'view') {
47 $which = $a->user['nickname'];
48 $profile = htmlspecialchars($a->argv[1]);
50 DFRN::autoRedir($a, $which);
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');
63 Profile::load($a, $which, $profile);
65 $blocked = !local_user() && !remote_user() && Config::get('system', 'block_public');
66 $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];
68 if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == Contact::PAGE_COMMUNITY) {
69 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
72 if (!empty($a->profile['openidserver'])) {
73 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
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";
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";
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);
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";
102 $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . "/poco/{$which}\" />\r\n";
105 function profile_content(App $a, $update = 0)
107 $category = $datequery = $datequery2 = '';
110 for ($x = 2; $x < $a->argc; $x ++) {
111 if (is_a_date_arg($a->argv[$x])) {
113 $datequery2 = escape_tags($a->argv[$x]);
115 $datequery = escape_tags($a->argv[$x]);
118 $category = $a->argv[$x];
123 if (empty($category)) {
124 $category = defaults($_GET, 'category', '');
127 $hashtags = defaults($_GET, 'tag', '');
129 if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
130 return Login::form();
133 require_once 'include/security.php';
134 require_once 'include/conversation.php';
135 require_once 'include/items.php';
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');
150 $remote_contact = false;
154 if (!empty($_SESSION['remote'])) {
155 foreach ($_SESSION['remote'] as $v) {
156 if ($v['uid'] == $a->profile['profile_uid']) {
157 $contact_id = $v['cid'];
164 $groups = Group::getIdsByContactId($contact_id);
165 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
167 intval($a->profile['profile_uid'])
169 if (DBA::isResult($r)) {
171 $remote_contact = true;
175 if (!$remote_contact) {
177 $contact_id = $_SESSION['cid'];
178 $contact = $a->contact;
182 $is_owner = local_user() == $a->profile['profile_uid'];
183 $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();
185 if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {
186 notice(L10n::t('Access to this profile has been restricted.') . EOL);
192 if (!empty($_GET['tab'])) {
193 $tab = notags(trim($_GET['tab']));
196 $o .= Profile::getTabs($a, $is_owner, $a->profile['nickname']);
198 if ($tab === 'profile') {
199 $o .= Profile::getAdvanced($a);
200 Addon::callHooks('profile_advanced', $o);
204 $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
206 $commpage = $a->profile['page-flags'] == Contact::PAGE_COMMUNITY;
207 $commvisitor = $commpage && $remote_contact;
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();
213 if (can_write_wall($a->profile['profile_uid'])) {
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) : '',
227 'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
228 'profile_uid' => $a->profile['profile_uid'],
231 $o .= status_editor($a, $x);
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);
241 $last_updated = (!empty($_SESSION['last_updated'][$last_updated_key]) ? $_SESSION['last_updated'][$last_updated_key] : 0);
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`";
248 $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);
249 $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
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`
260 ORDER BY `item`.`created` DESC",
261 intval($a->profile['profile_uid']), intval(GRAVITY_ACTIVITY)
264 if (!DBA::isResult($items)) {
268 $sql_post_table = "";
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']));
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']));
280 if (!empty($datequery)) {
281 $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
283 if (!empty($datequery2)) {
284 $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
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'])));
296 // check if we serve a mobile device and get the user settings
299 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
301 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
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;
310 $a->set_pager_itemspage($itemspage_network);
312 $pager_sql = sprintf(" LIMIT %d, %d ", intval($a->pager['start']), intval($a->pager['itemspage']));
314 $items = q("SELECT `item`.`uri`
316 STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
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`
324 $sql_extra3 $sql_extra $sql_extra2
325 ORDER BY `thread`.`created` DESC $pager_sql",
326 intval($a->profile['profile_uid'])
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();
334 if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
335 $o .= Profile::getBirthdays();
336 $o .= Profile::getEventsReminderHTML();
340 $unseen = Item::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);
342 $r = Item::update(['unseen' => false],
343 ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
347 $o .= conversation($a, $items, 'profile', $update, false, 'created', local_user());
350 $o .= alt_pager($a, count($items));