]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #6562 from MrPetovan/task/4090-move-profile-to-src
authorMichael Vogel <icarus@dabo.de>
Thu, 31 Jan 2019 06:02:05 +0000 (07:02 +0100)
committerGitHub <noreply@github.com>
Thu, 31 Jan 2019 06:02:05 +0000 (07:02 +0100)
Move profile module to src/

mod/profile.php [deleted file]
mod/update_profile.php
src/Module/Profile.php [new file with mode: 0644]

diff --git a/mod/profile.php b/mod/profile.php
deleted file mode 100644 (file)
index f93e459..0000000
+++ /dev/null
@@ -1,324 +0,0 @@
-<?php
-/**
- * @file mod/profile.php
- */
-
-use Friendica\App;
-use Friendica\Content\Nav;
-use Friendica\Content\Pager;
-use Friendica\Content\Widget;
-use Friendica\Core\ACL;
-use Friendica\Core\Config;
-use Friendica\Core\Hook;
-use Friendica\Core\L10n;
-use Friendica\Core\Logger;
-use Friendica\Core\PConfig;
-use Friendica\Core\System;
-use Friendica\Database\DBA;
-use Friendica\Model\Contact;
-use Friendica\Model\Group;
-use Friendica\Model\Item;
-use Friendica\Model\Profile;
-use Friendica\Model\User;
-use Friendica\Module\Login;
-use Friendica\Protocol\ActivityPub;
-use Friendica\Protocol\DFRN;
-use Friendica\Util\DateTimeFormat;
-use Friendica\Util\Security;
-use Friendica\Util\Strings;
-use Friendica\Util\XML;
-
-function profile_init(App $a)
-{
-       if (empty($a->page['aside'])) {
-               $a->page['aside'] = '';
-       }
-
-       if ($a->argc < 2) {
-               System::httpExit(400);
-       }
-
-       $which = filter_var($a->argv[1], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP_BACKTICK);
-
-       $profile = 0;
-       if (local_user() && $a->argc > 2 && $a->argv[2] === 'view') {
-               $which = $a->user['nickname'];
-               $profile = filter_var($a->argv[1], FILTER_SANITIZE_NUMBER_INT);
-       } else {
-               DFRN::autoRedir($a, $which);
-       }
-
-       if (ActivityPub::isRequest()) {
-               $user = DBA::selectFirst('user', ['uid'], ['nickname' => $which]);
-               if (DBA::isResult($user)) {
-                       $data = ActivityPub\Transmitter::getProfile($user['uid']);
-                       header('Content-Type: application/activity+json');
-                       echo json_encode($data);
-                       exit();
-               }
-       }
-
-       Profile::load($a, $which, $profile);
-
-       $blocked   = !local_user() && !remote_user() && Config::get('system', 'block_public');
-       $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];
-
-       if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {
-               $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
-       }
-
-       if (!empty($a->profile['openidserver'])) {
-               $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
-       }
-
-       if (!empty($a->profile['openid'])) {
-               $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid'];
-               $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
-       }
-
-       // site block
-       if (!$blocked && !$userblock) {
-               $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], defaults($a->profile, 'pub_keywords', ''));
-               if (strlen($keywords)) {
-                       $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n";
-               }
-       }
-
-       $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\r\n";
-       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which . '" title="DFRN: ' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
-       $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";
-       $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";
-       $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";
-       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''));
-       $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
-       header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
-
-       $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
-       foreach ($dfrn_pages as $dfrn) {
-               $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"" . System::baseUrl() . "/dfrn_{$dfrn}/{$which}\" />\r\n";
-       }
-       $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . "/poco/{$which}\" />\r\n";
-}
-
-function profile_content(App $a, $update = 0)
-{
-       $category = $datequery = $datequery2 = '';
-
-       if ($a->argc > 2) {
-               for ($x = 2; $x < $a->argc; $x ++) {
-                       if (is_a_date_arg($a->argv[$x])) {
-                               if ($datequery) {
-                                       $datequery2 = Strings::escapeHtml($a->argv[$x]);
-                               } else {
-                                       $datequery = Strings::escapeHtml($a->argv[$x]);
-                               }
-                       } else {
-                               $category = $a->argv[$x];
-                       }
-               }
-       }
-
-       if (empty($category)) {
-               $category = defaults($_GET, 'category', '');
-       }
-
-       $hashtags = defaults($_GET, 'tag', '');
-
-       if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
-               return Login::form();
-       }
-
-       $groups = [];
-       $remote_cid = null;
-
-       $o = '';
-
-       if ($update) {
-               // Ensure we've got a profile owner if updating.
-               $a->profile['profile_uid'] = $update;
-       } elseif ($a->profile['profile_uid'] == local_user()) {
-               Nav::setSelected('home');
-       }
-
-       $remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
-       $is_owner = local_user() == $a->profile['profile_uid'];
-       $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();
-
-       if ($remote_contact) {
-               $cdata = Contact::getPublicAndUserContacID(remote_user(), $a->profile['profile_uid']);
-               if (!empty($cdata['user'])) {
-                       $groups = Group::getIdsByContactId($cdata['user']);
-                       $remote_cid = $cdata['user'];
-               }
-       }
-
-       if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {
-               notice(L10n::t('Access to this profile has been restricted.') . EOL);
-               return;
-       }
-
-       if (!$update) {
-               $tab = false;
-               if (!empty($_GET['tab'])) {
-                       $tab = Strings::escapeTags(trim($_GET['tab']));
-               }
-
-               $o .= Profile::getTabs($a, $is_owner, $a->profile['nickname']);
-
-               if ($tab === 'profile') {
-                       $o .= Profile::getAdvanced($a);
-                       Hook::callAll('profile_advanced', $o);
-                       return $o;
-               }
-
-               $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
-
-               $commpage = $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
-               $commvisitor = $commpage && $remote_contact;
-
-               $a->page['aside'] .= posted_date_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], $a->profile['profile_uid'], true);
-               $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (!empty($category) ? XML::escape($category) : ''));
-               $a->page['aside'] .= Widget::tagCloud();
-
-               if (Security::canWriteToUserWall($a->profile['profile_uid'])) {
-                       $x = [
-                               'is_owner' => $is_owner,
-                               'allow_location' => ($is_owner || $commvisitor) && $a->profile['allow_location'],
-                               'default_location' => $is_owner ? $a->user['default-location'] : '',
-                               'nickname' => $a->profile['nickname'],
-                               'lockstate' => is_array($a->user)
-                                       && (strlen($a->user['allow_cid'])
-                                               || strlen($a->user['allow_gid'])
-                                               || strlen($a->user['deny_cid'])
-                                               || strlen($a->user['deny_gid'])
-                                       ) ? 'lock' : 'unlock',
-                               'acl' => $is_owner ? ACL::getFullSelectorHTML($a->user, true) : '',
-                               'bang' => '',
-                               'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
-                               'profile_uid' => $a->profile['profile_uid'],
-                       ];
-
-                       $o .= status_editor($a, $x);
-               }
-       }
-
-       // Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
-       $sql_extra = Item::getPermissionsSQLByUserId($a->profile['profile_uid'], $remote_contact, $groups, $remote_cid);
-       $sql_extra2 = '';
-
-       if ($update) {
-               $last_updated = (defaults($_SESSION['last_updated'], $last_updated_key, 0));
-
-               // If the page user is the owner of the page we should query for unseen
-               // items. Otherwise use a timestamp of the last succesful update request.
-               if ($is_owner || !$last_updated) {
-                       $sql_extra4 = " AND `item`.`unseen`";
-               } else {
-                       $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);
-                       $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
-               }
-
-               $items = q("SELECT DISTINCT(`parent-uri`) AS `uri`, `item`.`created`
-                       FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
-                       WHERE `item`.`uid` = %d AND `item`.`visible` AND
-                       (NOT `item`.`deleted` OR `item`.`gravity` = %d)
-                       AND NOT `item`.`moderated` AND `item`.`wall`
-                       $sql_extra4
-                       $sql_extra
-                       ORDER BY `item`.`created` DESC",
-                       intval($a->profile['profile_uid']), intval(GRAVITY_ACTIVITY)
-               );
-
-               if (!DBA::isResult($items)) {
-                       return '';
-               }
-
-               $pager = new Pager($a->query_string);
-       } else {
-               $sql_post_table = "";
-
-               if (!empty($category)) {
-                       $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` ",
-                               DBA::escape(Strings::protectSprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
-               }
-
-               if (!empty($hashtags)) {
-                       $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` ",
-                               DBA::escape(Strings::protectSprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));
-               }
-
-               if (!empty($datequery)) {
-                       $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` <= '%s' ", DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
-               }
-               if (!empty($datequery2)) {
-                       $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` >= '%s' ", DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
-               }
-
-               // Does the profile page belong to a forum?
-               // If not then we can improve the performance with an additional condition
-               $condition = ['uid' => $a->profile['profile_uid'], 'page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]];
-               if (!DBA::exists('user', $condition)) {
-                       $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
-               } else {
-                       $sql_extra3 = "";
-               }
-
-               //  check if we serve a mobile device and get the user settings
-               //  accordingly
-               if ($a->is_mobile) {
-                       $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
-               } else {
-                       $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
-               }
-
-               //  now that we have the user settings, see if the theme forces
-               //  a maximum item number which is lower then the user choice
-               if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
-                       $itemspage_network = $a->force_max_items;
-               }
-
-               $pager = new Pager($a->query_string, $itemspage_network);
-
-               $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
-
-               $items = q("SELECT `item`.`uri`
-                       FROM `thread`
-                       STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
-                       $sql_post_table
-                       STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
-                       WHERE `thread`.`uid` = %d AND `thread`.`visible`
-                               AND NOT `thread`.`deleted`
-                               AND NOT `thread`.`moderated`
-                               AND `thread`.`wall`
-                               $sql_extra3 $sql_extra $sql_extra2
-                       ORDER BY `thread`.`created` DESC $pager_sql",
-                       intval($a->profile['profile_uid'])
-               );
-       }
-
-       // Set a time stamp for this page. We will make use of it when we
-       // search for new items (update routine)
-       $_SESSION['last_updated'][$last_updated_key] = time();
-
-       if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
-               $o .= Profile::getBirthdays();
-               $o .= Profile::getEventsReminderHTML();
-       }
-
-       if ($is_owner) {
-               $unseen = Item::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);
-               if ($unseen) {
-                       Item::update(['unseen' => false], ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
-               }
-       }
-
-       $o .= conversation($a, $items, $pager, 'profile', $update, false, 'created', $a->profile['profile_uid']);
-
-       if (!$update) {
-               $o .= $pager->renderMinimal(count($items));
-       }
-
-       return $o;
-}
index bc6e511896f5935e137a5f57c32110988eec1a17..72056703958ef0306251773c101d52c5371aea5c 100644 (file)
@@ -8,8 +8,7 @@
 use Friendica\App;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
-
-require_once 'mod/profile.php';
+use Friendica\Module\Profile;
 
 function update_profile_content(App $a) {
 
@@ -29,7 +28,7 @@ function update_profile_content(App $a) {
         * on the client side and then swap the image back.
         */
 
-       $text = profile_content($a, $profile_uid);
+       $text = Profile::content($profile_uid);
 
        if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
                $replace = "<br />".L10n::t("[Embedded content - reload page to view]")."<br />";
diff --git a/src/Module/Profile.php b/src/Module/Profile.php
new file mode 100644 (file)
index 0000000..e43554a
--- /dev/null
@@ -0,0 +1,353 @@
+<?php\r
+\r
+namespace Friendica\Module;\r
+\r
+use Friendica\BaseModule;\r
+use Friendica\Content\Nav;\r
+use Friendica\Content\Pager;\r
+use Friendica\Content\Widget;\r
+use Friendica\Core\ACL;\r
+use Friendica\Core\Config;\r
+use Friendica\Core\Hook;\r
+use Friendica\Core\L10n;\r
+use Friendica\Core\PConfig;\r
+use Friendica\Core\System;\r
+use Friendica\Database\DBA;\r
+use Friendica\Model\Contact as ContactModel;\r
+use Friendica\Model\Group;\r
+use Friendica\Model\Item;\r
+use Friendica\Model\Profile AS ProfileModel;\r
+use Friendica\Model\User;\r
+use Friendica\Protocol\ActivityPub;\r
+use Friendica\Protocol\DFRN;\r
+use Friendica\Util\DateTimeFormat;\r
+use Friendica\Util\Security;\r
+use Friendica\Util\Strings;\r
+use Friendica\Util\XML;\r
+\r
+require_once 'boot.php';\r
+\r
+class Profile extends BaseModule\r
+{\r
+       public static $which = '';\r
+       public static $profile = 0;\r
+\r
+       public static function init()\r
+       {\r
+               $a = self::getApp();\r
+\r
+               if ($a->argc < 2) {\r
+                       System::httpExit(400);\r
+               }\r
+\r
+               self::$which = filter_var($a->argv[1], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP_BACKTICK);\r
+\r
+               if (local_user() && $a->argc > 2 && $a->argv[2] === 'view') {\r
+                       self::$which = $a->user['nickname'];\r
+                       self::$profile = filter_var($a->argv[1], FILTER_SANITIZE_NUMBER_INT);\r
+               } else {\r
+                       DFRN::autoRedir($a, self::$which);\r
+               }\r
+       }\r
+\r
+       public static function rawContent()\r
+       {\r
+               if (ActivityPub::isRequest()) {\r
+                       $user = DBA::selectFirst('user', ['uid'], ['nickname' => self::$which]);\r
+                       if (DBA::isResult($user)) {\r
+                               $data = ActivityPub\Transmitter::getProfile($user['uid']);\r
+                               System::jsonExit($data, 'application/activity+json');\r
+                       } elseif (DBA::exists('userd', ['username' => self::$which])) {\r
+                               // Known deleted user\r
+                               System::httpExit(410);\r
+                       } else {\r
+                               // Unknown user\r
+                               System::httpExit(404);\r
+                       }\r
+               }\r
+       }\r
+\r
+       public static function content($update = 0)\r
+       {\r
+               $a = self::getApp();\r
+\r
+               if (!$update) {\r
+                       ProfileModel::load($a, self::$which, self::$profile);\r
+\r
+                       $blocked   = !local_user() && !remote_user() && Config::get('system', 'block_public');\r
+                       $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];\r
+\r
+                       if (!empty($a->profile['page-flags']) && $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY) {\r
+                               $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';\r
+                       }\r
+\r
+                       if (!empty($a->profile['openidserver'])) {\r
+                               $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\n";\r
+                       }\r
+\r
+                       if (!empty($a->profile['openid'])) {\r
+                               $delegate = strstr($a->profile['openid'], '://') ? $a->profile['openid'] : 'https://' . $a->profile['openid'];\r
+                               $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\n";\r
+                       }\r
+\r
+                       // site block\r
+                       if (!$blocked && !$userblock) {\r
+                               $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], defaults($a->profile, 'pub_keywords', ''));\r
+                               if (strlen($keywords)) {\r
+                                       $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\n";\r
+                               }\r
+                       }\r
+\r
+                       $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . ($a->profile['net-publish'] ? 'true' : 'false') . '" />' . "\n";\r
+                       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . self::$which . '" title="DFRN: ' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";\r
+                       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\n";\r
+                       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\n";\r
+                       $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";\r
+                       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''));\r
+                       $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\n";\r
+                       header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);\r
+\r
+                       $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];\r
+                       foreach ($dfrn_pages as $dfrn) {\r
+                               $a->page['htmlhead'] .= '<link rel="dfrn-' . $dfrn . '" href="' . System::baseUrl() . '/dfrn_' . $dfrn . '/' . self::$which . '" />' . "\n";\r
+                       }\r
+                       $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . '/poco/' . self::$which . '" />' . "\n";\r
+               }\r
+\r
+               $category = $datequery = $datequery2 = '';\r
+\r
+               if ($a->argc > 2) {\r
+                       for ($x = 2; $x < $a->argc; $x ++) {\r
+                               if (is_a_date_arg($a->argv[$x])) {\r
+                                       if ($datequery) {\r
+                                               $datequery2 = Strings::escapeHtml($a->argv[$x]);\r
+                                       } else {\r
+                                               $datequery = Strings::escapeHtml($a->argv[$x]);\r
+                                       }\r
+                               } else {\r
+                                       $category = $a->argv[$x];\r
+                               }\r
+                       }\r
+               }\r
+\r
+               if (empty($category)) {\r
+                       $category = defaults($_GET, 'category', '');\r
+               }\r
+\r
+               $hashtags = defaults($_GET, 'tag', '');\r
+\r
+               if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {\r
+                       return Login::form();\r
+               }\r
+\r
+               $groups = [];\r
+               $remote_cid = null;\r
+\r
+               $o = '';\r
+\r
+               if ($update) {\r
+                       // Ensure we've got a profile owner if updating.\r
+                       $a->profile['profile_uid'] = $update;\r
+               } elseif ($a->profile['profile_uid'] == local_user()) {\r
+                       Nav::setSelected('home');\r
+               }\r
+\r
+               $remote_contact = ContactModel::isFollower(remote_user(), $a->profile['profile_uid']);\r
+               $is_owner = local_user() == $a->profile['profile_uid'];\r
+               $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();\r
+\r
+               if ($remote_contact) {\r
+                       $cdata = ContactModel::getPublicAndUserContacID(remote_user(), $a->profile['profile_uid']);\r
+                       if (!empty($cdata['user'])) {\r
+                               $groups = Group::getIdsByContactId($cdata['user']);\r
+                               $remote_cid = $cdata['user'];\r
+                       }\r
+               }\r
+\r
+               if (!empty($a->profile['hidewall']) && !$is_owner && !$remote_contact) {\r
+                       notice(L10n::t('Access to this profile has been restricted.') . EOL);\r
+                       return '';\r
+               }\r
+\r
+               if (!$update) {\r
+                       $tab = false;\r
+                       if (!empty($_GET['tab'])) {\r
+                               $tab = Strings::escapeTags(trim($_GET['tab']));\r
+                       }\r
+\r
+                       $o .= ProfileModel::getTabs($a, $is_owner, $a->profile['nickname']);\r
+\r
+                       if ($tab === 'profile') {\r
+                               $o .= ProfileModel::getAdvanced($a);\r
+                               Hook::callAll('profile_advanced', $o);\r
+                               return $o;\r
+                       }\r
+\r
+                       $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);\r
+\r
+                       $commpage = $a->profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY;\r
+                       $commvisitor = $commpage && $remote_contact;\r
+\r
+                       $a->page['aside'] .= posted_date_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], $a->profile['profile_uid'], true);\r
+                       $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (!empty($category) ? XML::escape($category) : ''));\r
+                       $a->page['aside'] .= Widget::tagCloud();\r
+\r
+                       if (Security::canWriteToUserWall($a->profile['profile_uid'])) {\r
+                               $x = [\r
+                                       'is_owner' => $is_owner,\r
+                                       'allow_location' => ($is_owner || $commvisitor) && $a->profile['allow_location'],\r
+                                       'default_location' => $is_owner ? $a->user['default-location'] : '',\r
+                                       'nickname' => $a->profile['nickname'],\r
+                                       'lockstate' => is_array($a->user)\r
+                                       && (strlen($a->user['allow_cid'])\r
+                                               || strlen($a->user['allow_gid'])\r
+                                               || strlen($a->user['deny_cid'])\r
+                                               || strlen($a->user['deny_gid'])\r
+                                       ) ? 'lock' : 'unlock',\r
+                                       'acl' => $is_owner ? ACL::getFullSelectorHTML($a->user, true) : '',\r
+                                       'bang' => '',\r
+                                       'visitor' => $is_owner || $commvisitor ? 'block' : 'none',\r
+                                       'profile_uid' => $a->profile['profile_uid'],\r
+                               ];\r
+\r
+                               $o .= status_editor($a, $x);\r
+                       }\r
+               }\r
+\r
+               // Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups\r
+               $sql_extra = Item::getPermissionsSQLByUserId($a->profile['profile_uid'], $remote_contact, $groups, $remote_cid);\r
+               $sql_extra2 = '';\r
+\r
+               if ($update) {\r
+                       $last_updated = (defaults($_SESSION['last_updated'], $last_updated_key, 0));\r
+\r
+                       // If the page user is the owner of the page we should query for unseen\r
+                       // items. Otherwise use a timestamp of the last succesful update request.\r
+                       if ($is_owner || !$last_updated) {\r
+                               $sql_extra4 = " AND `item`.`unseen`";\r
+                       } else {\r
+                               $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);\r
+                               $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";\r
+                       }\r
+\r
+                       $items_stmt = DBA::p(\r
+                               "SELECT DISTINCT(`parent-uri`) AS `uri`, `item`.`created`\r
+                               FROM `item`\r
+                               INNER JOIN `contact`\r
+                               ON `contact`.`id` = `item`.`contact-id`\r
+                                       AND NOT `contact`.`blocked`\r
+                                       AND NOT `contact`.`pending`\r
+                               WHERE `item`.`uid` = ?\r
+                                       AND `item`.`visible`\r
+                                       AND     (NOT `item`.`deleted` OR `item`.`gravity` = ?)\r
+                                       AND NOT `item`.`moderated`\r
+                                       AND `item`.`wall`\r
+                                       $sql_extra4\r
+                                       $sql_extra\r
+                               ORDER BY `item`.`created` DESC",\r
+                               $a->profile['profile_uid'],\r
+                               GRAVITY_ACTIVITY\r
+                       );\r
+\r
+                       if (!DBA::isResult($items_stmt)) {\r
+                               return '';\r
+                       }\r
+\r
+                       $pager = new Pager($a->query_string);\r
+               } else {\r
+                       $sql_post_table = "";\r
+\r
+                       if (!empty($category)) {\r
+                               $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` ",\r
+                                       DBA::escape(Strings::protectSprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));\r
+                       }\r
+\r
+                       if (!empty($hashtags)) {\r
+                               $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` ",\r
+                                       DBA::escape(Strings::protectSprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));\r
+                       }\r
+\r
+                       if (!empty($datequery)) {\r
+                               $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` <= '%s' ", DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));\r
+                       }\r
+                       if (!empty($datequery2)) {\r
+                               $sql_extra2 .= Strings::protectSprintf(sprintf(" AND `thread`.`created` >= '%s' ", DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));\r
+                       }\r
+\r
+                       // Does the profile page belong to a forum?\r
+                       // If not then we can improve the performance with an additional condition\r
+                       $condition = ['uid' => $a->profile['profile_uid'], 'page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]];\r
+                       if (!DBA::exists('user', $condition)) {\r
+                               $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));\r
+                       } else {\r
+                               $sql_extra3 = "";\r
+                       }\r
+\r
+                       //  check if we serve a mobile device and get the user settings\r
+                       //  accordingly\r
+                       if ($a->is_mobile) {\r
+                               $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);\r
+                       } else {\r
+                               $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);\r
+                       }\r
+\r
+                       //  now that we have the user settings, see if the theme forces\r
+                       //  a maximum item number which is lower then the user choice\r
+                       if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {\r
+                               $itemspage_network = $a->force_max_items;\r
+                       }\r
+\r
+                       $pager = new Pager($a->query_string, $itemspage_network);\r
+\r
+                       $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());\r
+\r
+                       $items_stmt = DBA::p(\r
+                               "SELECT `item`.`uri`\r
+                               FROM `thread`\r
+                               STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`\r
+                               $sql_post_table\r
+                               STRAIGHT_JOIN `contact`\r
+                               ON `contact`.`id` = `thread`.`contact-id`\r
+                                       AND NOT `contact`.`blocked`\r
+                                       AND NOT `contact`.`pending`\r
+                               WHERE `thread`.`uid` = ?\r
+                                       AND `thread`.`visible`\r
+                                       AND NOT `thread`.`deleted`\r
+                                       AND NOT `thread`.`moderated`\r
+                                       AND `thread`.`wall`\r
+                                       $sql_extra3\r
+                                       $sql_extra\r
+                                       $sql_extra2\r
+                               ORDER BY `thread`.`created` DESC\r
+                               $pager_sql",\r
+                               $a->profile['profile_uid']\r
+                       );\r
+               }\r
+\r
+               // Set a time stamp for this page. We will make use of it when we\r
+               // search for new items (update routine)\r
+               $_SESSION['last_updated'][$last_updated_key] = time();\r
+\r
+               if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {\r
+                       $o .= ProfileModel::getBirthdays();\r
+                       $o .= ProfileModel::getEventsReminderHTML();\r
+               }\r
+\r
+               if ($is_owner) {\r
+                       $unseen = Item::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);\r
+                       if ($unseen) {\r
+                               Item::update(['unseen' => false], ['wall' => true, 'unseen' => true, 'uid' => local_user()]);\r
+                       }\r
+               }\r
+\r
+               $items = DBA::toArray($items_stmt);\r
+\r
+               $o .= conversation($a, $items, $pager, 'profile', $update, false, 'created', $a->profile['profile_uid']);\r
+\r
+               if (!$update) {\r
+                       $o .= $pager->renderMinimal(count($items));\r
+               }\r
+\r
+               return $o;\r
+       }\r
+}\r