]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
Decrease scope of query in Profile::getEventsReminderHTML
[friendica.git] / mod / profile.php
index 843f06de3ea9e8d61b589acfc99c151eb2f8b51b..ab11b4d5fe509850c97c48fdc9e4346feb9f9215 100644 (file)
@@ -1,13 +1,24 @@
 <?php
+/**
+ * @file mod/profile.php
+ */
 
 use Friendica\App;
+use Friendica\Content\Nav;
+use Friendica\Content\Widget;
+use Friendica\Core\ACL;
+use Friendica\Core\Addon;
 use Friendica\Core\Config;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
 use Friendica\Database\DBM;
-
-require_once 'include/contact_widgets.php';
-require_once 'include/redir.php';
+use Friendica\Model\Group;
+use Friendica\Model\Item;
+use Friendica\Model\Profile;
+use Friendica\Module\Login;
+use Friendica\Protocol\DFRN;
+use Friendica\Util\DateTimeFormat;
 
 function profile_init(App $a)
 {
@@ -23,7 +34,7 @@ function profile_init(App $a)
                        goaway(System::baseUrl() . '/profile/' . $r[0]['nickname']);
                } else {
                        logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
-                       notice(t('Requested profile is not available.') . EOL);
+                       notice(L10n::t('Requested profile is not available.') . EOL);
                        $a->error = 404;
                        return;
                }
@@ -34,13 +45,13 @@ function profile_init(App $a)
                $which = $a->user['nickname'];
                $profile = htmlspecialchars($a->argv[1]);
        } else {
-               auto_redir($a, $which);
+               DFRN::autoRedir($a, $which);
        }
 
-       profile_load($a, $which, $profile);
+       Profile::load($a, $which, $profile);
 
-       $blocked = Config::get('system', 'block_public') && !local_user() && !remote_user();
-       $userblock = $a->profile['hidewall'] && !local_user() && !remote_user();
+       $blocked   = !local_user() && !remote_user() && Config::get('system', 'block_public');
+       $userblock = !local_user() && !remote_user() && $a->profile['hidewall'];
 
        if (x($a->profile, 'page-flags') && $a->profile['page-flags'] == PAGE_COMMUNITY) {
                $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
@@ -51,32 +62,31 @@ function profile_init(App $a)
        }
 
        if (x($a->profile, 'openid')) {
-               $delegate = ((strstr($a->profile['openid'], '://')) ? $a->profile['openid'] : 'https://' . $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 = x($a->profile, 'pub_keywords') ? $a->profile['pub_keywords'] : '';
-               $keywords = str_replace(array('#', ',', ' ', ',,'), array('', ' ', ',', ','), $keywords);
+               $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() . '/feed/' . $which . '/" title="' . 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="' . 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="' . 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->get_hostname() . ($a->path ? '/' . $a->path : ''));
        $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 = array('request', 'confirm', 'notify', 'poll');
+       $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";
+       $a->page['htmlhead'] .= '<link rel="dfrn-poco" href="' . System::baseUrl() . "/poco/{$which}\" />\r\n";
 }
 
 function profile_content(App $a, $update = 0)
@@ -98,22 +108,20 @@ function profile_content(App $a, $update = 0)
        }
 
        if (!x($category)) {
-               $category = x($_GET, 'category') ? $_GET['category'] : '';
+               $category = defaults($_GET, 'category', '');
        }
 
-       $hashtags = x($_GET, 'tag') ? $_GET['tag'] : '';
+       $hashtags = defaults($_GET, 'tag', '');
 
-       if (Config::get('system', 'block_public') && (!local_user()) && (!remote_user())) {
-               return login();
+       if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
+               return Login::form();
        }
 
-       require_once 'include/bbcode.php';
        require_once 'include/security.php';
        require_once 'include/conversation.php';
-       require_once 'include/acl_selectors.php';
        require_once 'include/items.php';
 
-       $groups = array();
+       $groups = [];
 
        $tab = 'posts';
        $o = '';
@@ -122,7 +130,7 @@ function profile_content(App $a, $update = 0)
                // Ensure we've got a profile owner if updating.
                $a->profile['profile_uid'] = $update;
        } elseif ($a->profile['profile_uid'] == local_user()) {
-               nav_set_selected('home');
+               Nav::setSelected('home');
        }
 
        $contact = null;
@@ -130,7 +138,7 @@ function profile_content(App $a, $update = 0)
 
        $contact_id = 0;
 
-       if (is_array($_SESSION['remote'])) {
+       if (x($_SESSION, 'remote') && is_array($_SESSION['remote'])) {
                foreach ($_SESSION['remote'] as $v) {
                        if ($v['uid'] == $a->profile['profile_uid']) {
                                $contact_id = $v['cid'];
@@ -140,7 +148,7 @@ function profile_content(App $a, $update = 0)
        }
 
        if ($contact_id) {
-               $groups = init_groups_visitor($contact_id);
+               $groups = Group::getIdsByContactId($contact_id);
                $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($contact_id),
                        intval($a->profile['profile_uid'])
@@ -158,45 +166,46 @@ function profile_content(App $a, $update = 0)
                }
        }
 
-       $is_owner = local_user() && local_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 ($a->profile['hidewall'] && !$is_owner && !$remote_contact) {
-               notice(t('Access to this profile has been restricted.') . EOL);
+       if (x($a->profile, 'hidewall') && !$is_owner && !$remote_contact) {
+               notice(L10n::t('Access to this profile has been restricted.') . EOL);
                return;
        }
 
        if (!$update) {
+               $tab = false;
                if (x($_GET, 'tab')) {
                        $tab = notags(trim($_GET['tab']));
                }
 
-               $o .= profile_tabs($a, $is_owner, $a->profile['nickname']);
+               $o .= Profile::getTabs($a, $is_owner, $a->profile['nickname']);
 
                if ($tab === 'profile') {
-                       $o .= advanced_profile($a);
-                       call_hooks('profile_advanced', $o);
+                       $o .= Profile::getAdvanced($a);
+                       Addon::callHooks('profile_advanced', $o);
                        return $o;
                }
 
-               $o .= common_friends_visitor_widget($a->profile['profile_uid']);
+               $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
 
-               if (x($_SESSION, 'new_member') && $_SESSION['new_member'] && $is_owner) {
-                       $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
+               if (x($_SESSION, 'new_member') && $is_owner) {
+                       $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . L10n::t('Tips for New Members') . '</b></a>' . EOL;
                }
 
-               $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
-               $commvisitor = (($commpage && $remote_contact == true) ? true : false);
+               $commpage = $a->profile['page-flags'] == PAGE_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'] .= categories_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (x($category) ? xmlify($category) : ''));
-               $a->page['aside'] .= tagcloud_wall_widget();
+               $a->page['aside'] .= Widget::categories(System::baseUrl(true) . '/profile/' . $a->profile['nickname'], (x($category) ? xmlify($category) : ''));
+               $a->page['aside'] .= Widget::tagCloud();
 
-               if (can_write_wall($a, $a->profile['profile_uid'])) {
-                       $x = array(
+               if (can_write_wall($a->profile['profile_uid'])) {
+                       $x = [
                                'is_owner' => $is_owner,
-                               'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
-                               'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
+                               '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'])
@@ -204,19 +213,20 @@ function profile_content(App $a, $update = 0)
                                                || strlen($a->user['deny_cid'])
                                                || strlen($a->user['deny_gid'])
                                        ) ? 'lock' : 'unlock',
-                               'acl' => $is_owner ? populate_acl($a->user, true) : '',
+                               'acl' => $is_owner ? ACL::getFullSelectorHTML($a->user, true) : '',
                                'bang' => '',
                                'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
                                'profile_uid' => $a->profile['profile_uid'],
-                               'acl_data' => $is_owner ? construct_acl_data($a, $a->user) : '', // For non-Javascript ACL selector
-                       );
+                       ];
 
                        $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_permissions_sql($a->profile['profile_uid'], $remote_contact, $groups);
+       $sql_extra2 = '';
 
        if ($update) {
                $last_updated = (x($_SESSION['last_updated'], $last_updated_key) ? $_SESSION['last_updated'][$last_updated_key] : 0);
@@ -226,7 +236,7 @@ function profile_content(App $a, $update = 0)
                if ($is_owner || !$last_updated) {
                        $sql_extra4 = " AND `item`.`unseen`";
                } else {
-                       $gmupdate = gmdate("Y-m-d H:i:s", $last_updated);
+                       $gmupdate = gmdate(DateTimeFormat::MYSQL, $last_updated);
                        $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
                }
 
@@ -254,7 +264,6 @@ function profile_content(App $a, $update = 0)
                if (x($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` ",
                                dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
-                       //$sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
                }
 
                if (x($hashtags)) {
@@ -263,10 +272,10 @@ function profile_content(App $a, $update = 0)
                }
 
                if ($datequery) {
-                       $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(), '', $datequery))));
+                       $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", dbesc(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
                }
                if ($datequery2) {
-                       $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(), '', $datequery2))));
+                       $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
                }
 
                // Belongs the profile page to a forum?
@@ -274,7 +283,8 @@ function profile_content(App $a, $update = 0)
                $r = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `page-flags` IN (%d, %d)",
                        intval($a->profile['profile_uid']),
                        intval(PAGE_COMMUNITY),
-                       intval(PAGE_PRVGROUP));
+                       intval(PAGE_PRVGROUP)
+               );
 
                if (!DBM::is_result($r)) {
                        $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
@@ -283,11 +293,9 @@ function profile_content(App $a, $update = 0)
                //  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');
-                       $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 10);
+                       $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network', 10);
                } else {
-                       $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network');
-                       $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
+                       $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network', 20);
                }
 
                //  now that we have the user settings, see if the theme forces
@@ -316,7 +324,7 @@ function profile_content(App $a, $update = 0)
                );
        }
 
-       $parents_arr = array();
+       $parents_arr = [];
        $parents_str = '';
 
        // Set a time stamp for this page. We will make use of it when we
@@ -339,20 +347,20 @@ function profile_content(App $a, $update = 0)
 
                $items = conv_sort($items, 'created');
        } else {
-               $items = array();
+               $items = [];
        }
 
        if ($is_owner && !$update && !Config::get('theme', 'hide_eventlist')) {
-               $o .= get_birthdays();
-               $o .= get_events();
+               $o .= Profile::getBirthdays();
+               $o .= Profile::getEventsReminderHTML();
        }
 
 
        if ($is_owner) {
-               $unseen = dba::exists('item', array('wall' => true, 'unseen' => true, 'uid' => local_user()));
+               $unseen = dba::exists('item', ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
                if ($unseen) {
-                       $r = dba::update('item', array('unseen' => false),
-                                       array('wall' => true, 'unseen' => true, 'uid' => local_user()));
+                       $r = Item::update(['unseen' => false],
+                                       ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
                }
        }