]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/ACL.php
Avoid memory issue in exception
[friendica.git] / src / Core / ACL.php
index 78d2ca41bf23f474479bcb4b14fc466f50bb177a..19015714e9c7b48148700c0f414153330aa9cc75 100644 (file)
@@ -6,47 +6,33 @@
 
 namespace Friendica\Core;
 
-use dba;
 use Friendica\BaseObject;
 use Friendica\Content\Feature;
-use Friendica\Database\DBM;
+use Friendica\Database\DBA;
 use Friendica\Model\Contact;
 use Friendica\Model\GContact;
 use Friendica\Util\Network;
-use const CONTACT_IS_FRIEND;
-use const NETWORK_DFRN;
-use const NETWORK_DIASPORA;
-use const NETWORK_FACEBOOK;
-use const NETWORK_MAIL;
-use const NETWORK_OSTATUS;
-use const PHP_EOL;
-use function dbesc;
-use function defaults;
-use function get_markup_template;
-use function get_server;
-use function local_user;
-use function remote_user;
-use function replace_macros;
 
 /**
  * Handle ACL management and display
  *
- * @author Hypolite Petovan <mrpetovan@gmail.com>
+ * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class ACL extends BaseObject
 {
        /**
         * Returns a select input tag with all the contact of the local user
         *
-        * @param string $selname Name attribute of the select input tag
-        * @param string $selclass Class attribute of the select input tag
-        * @param array $options Available options:
-        * - size: length of the select box
-        * - mutual_friends: Only used for the hook
-        * - single: Only used for the hook
-        * - exclude: Only used for the hook
-        * @param array $preselected Contact ID that should be already selected
+        * @param string $selname     Name attribute of the select input tag
+        * @param string $selclass    Class attribute of the select input tag
+        * @param array  $options     Available options:
+        *                            - size: length of the select box
+        *                            - mutual_friends: Only used for the hook
+        *                            - single: Only used for the hook
+        *                            - exclude: Only used for the hook
+        * @param array  $preselected Contact ID that should be already selected
         * @return string
+        * @throws \Exception
         */
        public static function getSuggestContactSelectHTML($selname, $selclass, array $options = [], array $preselected = [])
        {
@@ -61,36 +47,35 @@ class ACL extends BaseObject
 
                switch (defaults($options, 'networks', Protocol::PHANTOM)) {
                        case 'DFRN_ONLY':
-                               $networks = [NETWORK_DFRN];
+                               $networks = [Protocol::DFRN];
                                break;
+
                        case 'PRIVATE':
-                               if (!empty($a->user['prvnets'])) {
-                                       $networks = [NETWORK_DFRN, NETWORK_MAIL, NETWORK_DIASPORA];
-                               } else {
-                                       $networks = [NETWORK_DFRN, NETWORK_FACEBOOK, NETWORK_MAIL, NETWORK_DIASPORA];
-                               }
+                               $networks = [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::MAIL, Protocol::DIASPORA];
                                break;
+
                        case 'TWO_WAY':
                                if (!empty($a->user['prvnets'])) {
-                                       $networks = [NETWORK_DFRN, NETWORK_MAIL, NETWORK_DIASPORA];
+                                       $networks = [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::MAIL, Protocol::DIASPORA];
                                } else {
-                                       $networks = [NETWORK_DFRN, NETWORK_FACEBOOK, NETWORK_MAIL, NETWORK_DIASPORA, NETWORK_OSTATUS];
+                                       $networks = [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::MAIL, Protocol::DIASPORA, Protocol::OSTATUS];
                                }
                                break;
+
                        default: /// @TODO Maybe log this call?
                                break;
                }
 
                $x = ['options' => $options, 'size' => $size, 'single' => $single, 'mutual' => $mutual, 'exclude' => $exclude, 'networks' => $networks];
 
-               Addon::callHooks('contact_select_options', $x);
+               Hook::callAll('contact_select_options', $x);
 
                $o = '';
 
                $sql_extra = '';
 
                if (!empty($x['mutual'])) {
-                       $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
+                       $sql_extra .= sprintf(" AND `rel` = %d ", intval(Contact::FRIEND));
                }
 
                if (!empty($x['exclude'])) {
@@ -100,7 +85,7 @@ class ACL extends BaseObject
                if (!empty($x['networks'])) {
                        /// @TODO rewrite to foreach()
                        array_walk($x['networks'], function (&$value) {
-                               $value = "'" . dbesc($value) . "'";
+                               $value = "'" . DBA::escape($value) . "'";
                        });
                        $str_nets = implode(',', $x['networks']);
                        $sql_extra .= " AND `network` IN ( $str_nets ) ";
@@ -114,20 +99,20 @@ class ACL extends BaseObject
                        $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"" . $x['size'] . "$\" $tabindex >\r\n";
                }
 
-               $stmt = dba::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
-                       WHERE `uid` = ? AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
+               $stmt = DBA::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
+                       WHERE `uid` = ? AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND NOT `deleted` AND `notify` != ''
                        $sql_extra
                        ORDER BY `name` ASC ", intval(local_user())
                );
 
-               $contacts = dba::inArray($stmt);
+               $contacts = DBA::toArray($stmt);
 
                $arr = ['contact' => $contacts, 'entry' => $o];
 
                // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
-               Addon::callHooks($a->module . '_pre_' . $selname, $arr);
+               Hook::callAll($a->module . '_pre_' . $selname, $arr);
 
-               if (DBM::is_result($contacts)) {
+               if (DBA::isResult($contacts)) {
                        foreach ($contacts as $contact) {
                                if (in_array($contact['id'], $preselected)) {
                                        $selected = ' selected="selected" ';
@@ -143,7 +128,7 @@ class ACL extends BaseObject
 
                $o .= '</select>' . PHP_EOL;
 
-               Addon::callHooks($a->module . '_post_' . $selname, $o);
+               Hook::callAll($a->module . '_post_' . $selname, $o);
 
                return $o;
        }
@@ -157,6 +142,7 @@ class ACL extends BaseObject
         * @param int    $size        Length of the select box
         * @param int    $tabindex    Select input tag tabindex attribute
         * @return string
+        * @throws \Exception
         */
        public static function getMessageContactSelectHTML($selname, $selclass, array $preselected = [], $size = 4, $tabindex = null)
        {
@@ -166,8 +152,8 @@ class ACL extends BaseObject
 
                // When used for private messages, we limit correspondence to mutual DFRN/Friendica friends and the selector
                // to one recipient. By default our selector allows multiple selects amongst all contacts.
-               $sql_extra = sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
-               $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ", NETWORK_DFRN, NETWORK_DIASPORA);
+               $sql_extra = sprintf(" AND `rel` = %d ", intval(Contact::FRIEND));
+               $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ", Protocol::DFRN, Protocol::DIASPORA);
 
                $tabindex_attr = !empty($tabindex) ? ' tabindex="' . intval($tabindex) . '"' : '';
 
@@ -179,22 +165,22 @@ class ACL extends BaseObject
 
                $o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\"$tabindex_attr$hidepreselected>\r\n";
 
-               $stmt = dba::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
-                       WHERE `uid` = ? AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
+               $stmt = DBA::p("SELECT `id`, `name`, `url`, `network` FROM `contact`
+                       WHERE `uid` = ? AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND NOT `deleted` AND `notify` != ''
                        $sql_extra
                        ORDER BY `name` ASC ", intval(local_user())
                );
 
-               $contacts = dba::inArray($stmt);
+               $contacts = DBA::toArray($stmt);
 
                $arr = ['contact' => $contacts, 'entry' => $o];
 
                // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
-               Addon::callHooks($a->module . '_pre_' . $selname, $arr);
+               Hook::callAll($a->module . '_pre_' . $selname, $arr);
 
                $receiverlist = [];
 
-               if (DBM::is_result($contacts)) {
+               if (DBA::isResult($contacts)) {
                        foreach ($contacts as $contact) {
                                if (in_array($contact['id'], $preselected)) {
                                        $selected = ' selected="selected"';
@@ -216,12 +202,13 @@ class ACL extends BaseObject
                        $o .= implode(', ', $receiverlist);
                }
 
-               Addon::callHooks($a->module . '_post_' . $selname, $o);
+               Hook::callAll($a->module . '_post_' . $selname, $o);
 
                return $o;
        }
 
-       private static function fixACL(&$item) {
+       private static function fixACL(&$item)
+       {
                $item = intval(str_replace(['<', '>'], ['', ''], $item));
        }
 
@@ -230,6 +217,7 @@ class ACL extends BaseObject
         *
         * @param array $user
         * @return array Hash of contact id lists
+        * @throws \Exception
         */
        public static function getDefaultUserPermissions(array $user = null)
        {
@@ -247,10 +235,10 @@ class ACL extends BaseObject
                $deny_gid = $matches[1];
 
                // Reformats the ACL data so that it is accepted by the JS frontend
-                array_walk($allow_cid, 'self::fixACL');
-                array_walk($allow_gid, 'self::fixACL');
-                array_walk($deny_cid, 'self::fixACL');
-                array_walk($deny_gid, 'self::fixACL');
+               array_walk($allow_cid, 'self::fixACL');
+               array_walk($allow_gid, 'self::fixACL');
+               array_walk($deny_cid, 'self::fixACL');
+               array_walk($deny_gid, 'self::fixACL');
 
                Contact::pruneUnavailable($allow_cid);
 
@@ -265,13 +253,18 @@ class ACL extends BaseObject
        /**
         * Return the full jot ACL selector HTML
         *
-        * @param array $user
+        * @param array $user                User array
         * @param bool  $show_jotnets
+        * @param array $default_permissions Static defaults permission array: ['allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '']
         * @return string
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function getFullSelectorHTML(array $user = null, $show_jotnets = false)
+       public static function getFullSelectorHTML(array $user, $show_jotnets = false, array $default_permissions = [])
        {
-               $perms = self::getDefaultUserPermissions($user);
+               // Defaults user permissions
+               if (empty($default_permissions)) {
+                       $default_permissions = self::getDefaultUserPermissions($user);
+               }
 
                $jotnets = '';
                if ($show_jotnets) {
@@ -281,35 +274,35 @@ class ACL extends BaseObject
                        $pubmail_enabled = false;
 
                        if (!$imap_disabled) {
-                               $mailacct = dba::selectFirst('mailacct', ['pubmail'], ['`uid` = ? AND `server` != ""', local_user()]);
-                               if (DBM::is_result($mailacct)) {
+                               $mailacct = DBA::selectFirst('mailacct', ['pubmail'], ['`uid` = ? AND `server` != ""', local_user()]);
+                               if (DBA::isResult($mailacct)) {
                                        $mail_enabled = true;
                                        $pubmail_enabled = !empty($mailacct['pubmail']);
                                }
                        }
 
-                       if (empty($user['hidewall'])) {
+                       if (empty($default_permissions['hidewall'])) {
                                if ($mail_enabled) {
                                        $selected = $pubmail_enabled ? ' checked="checked"' : '';
                                        $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . L10n::t("Post to Email") . '</div>';
                                }
 
-                               Addon::callHooks('jot_networks', $jotnets);
+                               Hook::callAll('jot_networks', $jotnets);
                        } else {
                                $jotnets .= L10n::t('Connectors disabled, since "%s" is enabled.',
                                                L10n::t('Hide your profile details from unknown viewers?'));
                        }
                }
-
-               $tpl = get_markup_template('acl_selector.tpl');
-               $o = replace_macros($tpl, [
+               
+               $tpl = Renderer::getMarkupTemplate('acl_selector.tpl');
+               $o = Renderer::replaceMacros($tpl, [
                        '$showall' => L10n::t('Visible to everybody'),
                        '$show' => L10n::t('show'),
                        '$hide' => L10n::t('don\'t show'),
-                       '$allowcid' => json_encode($perms['allow_cid']),
-                       '$allowgid' => json_encode($perms['allow_gid']),
-                       '$denycid' => json_encode($perms['deny_cid']),
-                       '$denygid' => json_encode($perms['deny_gid']),
+                       '$allowcid' => json_encode(defaults($default_permissions, 'allow_cid', [])), // we need arrays for Javascript since we call .remove() and .push() on this values
+                       '$allowgid' => json_encode(defaults($default_permissions, 'allow_gid', [])),
+                       '$denycid' => json_encode(defaults($default_permissions, 'deny_cid', [])),
+                       '$denygid' => json_encode(defaults($default_permissions, 'deny_gid', [])),
                        '$networks' => $show_jotnets,
                        '$emailcc' => L10n::t('CC: email addresses'),
                        '$emtitle' => L10n::t('Example: bob@example.com, mary@example.com'),
@@ -331,10 +324,11 @@ class ACL extends BaseObject
         * @param string $search Name or part of a name or nick
         * @param string $mode   Search mode (e.g. "community")
         * @return array with the search results
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function contactAutocomplete($search, $mode)
        {
-               if ((Config::get('system', 'block_public')) && (!local_user()) && (!remote_user())) {
+               if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
                        return [];
                }
 
@@ -351,12 +345,11 @@ class ACL extends BaseObject
                if (Config::get('system', 'poco_local_search')) {
                        $return = GContact::searchByName($search, $mode);
                } else {
-                       $a = self::getApp();
-                       $p = $a->pager['page'] != 1 ? '&p=' . $a->pager['page'] : '';
+                       $p = defaults($_GET, 'page', 1) != 1 ? '&p=' . defaults($_GET, 'page', 1) : '';
 
-                       $response = Network::curl(get_server() . '/lsearch?f=' . $p . '&search=' . urlencode($search));
-                       if ($response['success']) {
-                               $lsearch = json_decode($response['body'], true);
+                       $curlResult = Network::curl(get_server() . '/lsearch?f=' . $p . '&search=' . urlencode($search));
+                       if ($curlResult->isSuccess()) {
+                               $lsearch = json_decode($curlResult->getBody(), true);
                                if (!empty($lsearch['results'])) {
                                        $return = $lsearch['results'];
                                }