]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/PermissionSet.php
Merge pull request #8939 from MrPetovan/task/8906-frio-viewas-redesign
[friendica.git] / src / Model / PermissionSet.php
index 983261fd617643b12907eabea14ae6ae80df4ea5..cc9650210ffaaa3d83be1c6720f88548e88643d4 100644 (file)
@@ -1,60 +1,78 @@
 <?php
 /**
- * @file src/Model/PermissionSet.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
-namespace Friendica\Model;
 
-use Friendica\BaseObject;
-use Friendica\Database\dba;
-use Friendica\Database\DBM;
+namespace Friendica\Model;
 
-require_once 'include/dba.php';
+use Friendica\BaseModel;
+use Friendica\DI;
 
 /**
- * @brief functions for interacting with the permission set of an object (item, photo, event, ...)
+ * functions for interacting with the permission set of an object (item, photo, event, ...)
+ *
+ * @property int uid
+ * @property string allow_cid
+ * @property string allow_gid
+ * @property string deny_cid
+ * @property string deny_gid
  */
-class PermissionSet extends BaseObject
+class PermissionSet extends BaseModel
 {
        /**
         * Fetch the id of a given permission set. Generate a new one when needed
         *
-        * @param array $postarray The array from an item, picture or event post
-        * @return id
+        * @param int         $uid
+        * @param string|null $allow_cid Allowed contact IDs    - empty = everyone
+        * @param string|null $allow_gid Allowed group IDs      - empty = everyone
+        * @param string|null $deny_cid  Disallowed contact IDs - empty = no one
+        * @param string|null $deny_gid  Disallowed group IDs   - empty = no one
+        * @return int id
+        * @throws \Exception
+        * @deprecated since 2020.03, use Repository\PermissionSet instead
+        * @see \Friendica\Repository\PermissionSet->getIdFromACL
         */
-       public static function fetchIDForPost($postarray)
-       {
-               $condition = ['uid' => $postarray['uid'],
-                       'allow_cid' => self::sortPermissions(defaults($postarray, 'allow_cid', '')),
-                       'allow_gid' => self::sortPermissions(defaults($postarray, 'allow_gid', '')),
-                       'deny_cid' => self::sortPermissions(defaults($postarray, 'deny_cid', '')),
-                       'deny_gid' => self::sortPermissions(defaults($postarray, 'deny_gid', ''))];
-
-               $set = dba::selectFirst('permissionset', ['id'], $condition);
-
-               if (!DBM::is_result($set)) {
-                       dba::insert('permissionset', $condition, true);
-
-                       $set = dba::selectFirst('permissionset', ['id'], $condition);
-               }
-               return $set['id'];
+       public static function getIdFromACL(
+               int $uid,
+               string $allow_cid = null,
+               string $allow_gid = null,
+               string $deny_cid = null,
+               string $deny_gid = null
+       ) {
+               return DI::permissionSet()->getIdFromACL($uid, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
        }
 
-       private static function sortPermissions($permissionlist)
+       /**
+        * Returns a permission set for a given contact
+        *
+        * @param integer $uid        User id whom the items belong
+        * @param integer $contact_id Contact id of the visitor
+        *
+        * @return array of permission set ids.
+        * @throws \Exception
+        * @deprecated since 2020.03, use Repository\PermissionSet instead
+        * @see \Friendica\Repository\PermissionSet->selectByContactId
+        */
+       public static function get($uid, $contact_id)
        {
-               $cleaned_list = trim($permissionlist, '<>');
-
-               if (empty($cleaned_list)) {
-                       return $permissionlist;
-               }
-
-               $elements = explode('><', $cleaned_list);
-
-               if (count($elements) <= 1) {
-                       return $permissionlist;
-               }
-
-               asort($elements);
+               $permissionSets = DI::permissionSet()->selectByContactId($contact_id, $uid);
 
-               return '<' . implode('><', $elements) . '>';
+               return $permissionSets->column('id');
        }
 }