]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/FileTag.php
Merge remote-tracking branch 'upstream/develop' into more-q
[friendica.git] / src / Model / FileTag.php
index a5824f5347ca67a2f3a0115f22206d55b3547567..324a78fa6ffa48c9ba28b9ad0d8ca34f64bc640d 100644 (file)
@@ -1,16 +1,28 @@
 <?php
 /**
- * @file src/Model/FileTag.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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\Core\L10n;
-use Friendica\Core\PConfig;
-use Friendica\Database\DBA;
-
 /**
- * @brief This class handles FileTag related functions
+ * This class handles FileTag related functions
  *
  * post categories and "save to file" use the same item.file table for storage.
  * We will differentiate the different uses by wrapping categories in angle brackets
@@ -20,75 +32,53 @@ use Friendica\Database\DBA;
 class FileTag
 {
        /**
-        * @brief URL encode <, >, left and right brackets
+        * URL encode <, >, left and right brackets
         *
         * @param string $s String to be URL encoded.
         *
         * @return string   The URL encoded string.
         */
-       public static function encode($s)
+       private static function encode($s)
        {
                return str_replace(['<', '>', '[', ']'], ['%3c', '%3e', '%5b', '%5d'], $s);
        }
 
        /**
-        * @brief URL decode <, >, left and right brackets
+        * URL decode <, >, left and right brackets
         *
         * @param string $s The URL encoded string to be decoded
         *
         * @return string   The decoded string.
         */
-       public static function decode($s)
+       private static function decode($s)
        {
                return str_replace(['%3c', '%3e', '%5b', '%5d'], ['<', '>', '[', ']'], $s);
        }
 
        /**
-        * @brief Query files for tag
+        * Get file tags from array
         *
-        * @param string $table The table to be queired.
-        * @param string $s     The search term
+        * ex. given [music,video] return <music><video> or [music][video]
+        *
+        * @param array  $array A list of tags.
         * @param string $type  Optional file type.
         *
-        * @return string       Query string.
+        * @return string       A list of file tags.
         */
-       public static function fileQuery($table, $s, $type = 'file')
+       public static function arrayToFile(array $array, string $type = 'file')
        {
+               $tag_list = '';
                if ($type == 'file') {
-                       $str = preg_quote('[' . str_replace('%', '%%', self::encode($s)) . ']');
+                       $lbracket = '[';
+                       $rbracket = ']';
                } else {
-                       $str = preg_quote('<' . str_replace('%', '%%', self::encode($s)) . '>');
+                       $lbracket = '<';
+                       $rbracket = '>';
                }
 
-               return " AND " . (($table) ? DBA::escape($table) . '.' : '') . "file regexp '" . DBA::escape($str) . "' ";
-       }
-
-       /**
-        * @brief Get file tags from list
-        *
-        * ex. given music,video return <music><video> or [music][video]
-        * @param string $list A comma delimited list of tags.
-        * @param string $type Optional file type.
-        *
-        * @return string       A list of file tags.
-        */
-       public static function listToFile($list, $type = 'file')
-       {
-               $tag_list = '';
-               if (strlen($list)) {
-                       $list_array = explode(",", $list);
-                       if ($type == 'file') {
-                               $lbracket = '[';
-                               $rbracket = ']';
-                       } else {
-                               $lbracket = '<';
-                               $rbracket = '>';
-                       }
-
-                       foreach ($list_array as $item) {
-                               if (strlen($item)) {
-                                       $tag_list .= $lbracket . self::encode(trim($item)) . $rbracket;
-                               }
+               foreach ($array as $item) {
+                       if (strlen($item)) {
+                               $tag_list .= $lbracket . self::encode(trim($item)) . $rbracket;
                        }
                }
 
@@ -96,18 +86,19 @@ class FileTag
        }
 
        /**
-        * @brief Get list from file tags
+        * Get tag list from file tags
+        *
+        * ex. given <music><video>[friends], return [music,video] or [friends]
         *
-        * ex. given <music><video>[friends], return music,video or friends
         * @param string $file File tags
         * @param string $type Optional file type.
         *
-        * @return string       Comma delimited list of tag names.
+        * @return array        List of tag names.
         */
-       public static function fileToList($file, $type = 'file')
+       public static function fileToArray(string $file, string $type = 'file')
        {
-               $matches = false;
-               $list = '';
+               $matches = [];
+               $return = [];
 
                if ($type == 'file') {
                        $cnt = preg_match_all('/\[(.*?)\]/', $file, $matches, PREG_SET_ORDER);
@@ -116,182 +107,28 @@ class FileTag
                }
 
                if ($cnt) {
-                       foreach ($matches as $mtch) {
-                               if (strlen($list)) {
-                                       $list .= ',';
-                               }
-
-                               $list .= self::decode($mtch[1]);
-                       }
-               }
-
-               return $list;
-       }
-
-       /**
-        * @brief Update file tags in PConfig
-        *
-        * @param int    $uid      Unique Identity.
-        * @param string $file_old Categories previously associated with an item
-        * @param string $file_new New list of categories for an item
-        * @param string $type     Optional file type.
-        *
-        * @return boolean          A value indicating success or failure.
-        * @throws \Exception
-        */
-       public static function updatePconfig($uid, $file_old, $file_new, $type = 'file')
-       {
-               if (!intval($uid)) {
-                       return false;
-               } elseif ($file_old == $file_new) {
-                       return true;
-               }
-
-               $saved = PConfig::get($uid, 'system', 'filetags');
-
-               if (strlen($saved)) {
-                       if ($type == 'file') {
-                               $lbracket = '[';
-                               $rbracket = ']';
-                               $termtype = TERM_FILE;
-                       } else {
-                               $lbracket = '<';
-                               $rbracket = '>';
-                               $termtype = TERM_CATEGORY;
-                       }
-
-                       $filetags_updated = $saved;
-
-                       // check for new tags to be added as filetags in pconfig
-                       $new_tags = [];
-                       $check_new_tags = explode(",", self::fileToList($file_new, $type));
-
-                       foreach ($check_new_tags as $tag) {
-                               if (!stristr($saved, $lbracket . self::encode($tag) . $rbracket)) {
-                                       $new_tags[] = $tag;
-                               }
+                       foreach ($matches as $match) {
+                               $return[] = self::decode($match[1]);
                        }
-
-                       $filetags_updated .= self::listToFile(implode(",", $new_tags), $type);
-
-                       // check for deleted tags to be removed from filetags in pconfig
-                       $deleted_tags = [];
-                       $check_deleted_tags = explode(",", self::fileToList($file_old, $type));
-
-                       foreach ($check_deleted_tags as $tag) {
-                               if (!stristr($file_new, $lbracket . self::encode($tag) . $rbracket)) {
-                                       $deleted_tags[] = $tag;
-                               }
-                       }
-
-                       foreach ($deleted_tags as $key => $tag) {
-                               $r = q("SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d",
-                                       DBA::escape($tag),
-                                       intval(Term::OBJECT_TYPE_POST),
-                                       intval($termtype),
-                                       intval($uid));
-
-                               if (DBA::isResult($r)) {
-                                       unset($deleted_tags[$key]);
-                               } else {
-                                       $filetags_updated = str_replace($lbracket . self::encode($tag) . $rbracket, '', $filetags_updated);
-                               }
-                       }
-
-                       if ($saved != $filetags_updated) {
-                               PConfig::set($uid, 'system', 'filetags', $filetags_updated);
-                       }
-
-                       return true;
-               } elseif (strlen($file_new)) {
-                       PConfig::set($uid, 'system', 'filetags', $file_new);
-               }
-
-               return true;
-       }
-
-       /**
-        * @brief Add tag to file
-        *
-        * @param int    $uid     Unique identity.
-        * @param int    $item_id Item identity.
-        * @param string $file    File tag.
-        *
-        * @return boolean      A value indicating success or failure.
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        */
-       public static function saveFile($uid, $item_id, $file)
-       {
-               if (!intval($uid)) {
-                       return false;
-               }
-
-               $item = Item::selectFirst(['file'], ['id' => $item_id, 'uid' => $uid]);
-               if (DBA::isResult($item)) {
-                       if (!stristr($item['file'], '[' . self::encode($file) . ']')) {
-                               $fields = ['file' => $item['file'] . '[' . self::encode($file) . ']'];
-                               Item::update($fields, ['id' => $item_id]);
-                       }
-
-                       $saved = PConfig::get($uid, 'system', 'filetags');
-
-                       if (!strlen($saved) || !stristr($saved, '[' . self::encode($file) . ']')) {
-                               PConfig::set($uid, 'system', 'filetags', $saved . '[' . self::encode($file) . ']');
-                       }
-
-                       info(L10n::t('Item filed'));
                }
 
-               return true;
+               return $return;
        }
 
        /**
-        * @brief Remove tag from file
+        * Get file tags from list
         *
-        * @param int     $uid     Unique identity.
-        * @param int     $item_id Item identity.
-        * @param string  $file    File tag.
-        * @param boolean $cat     Optional value indicating the term type (i.e. Category or File)
+        * ex. given music,video return <music><video> or [music][video]
+        * @param string $list A comma delimited list of tags.
+        * @param string $type Optional file type.
         *
-        * @return boolean      A value indicating success or failure.
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @return string       A list of file tags.
+        * @deprecated since 2019.06 use arrayToFile() instead
         */
-       public static function unsaveFile($uid, $item_id, $file, $cat = false)
+       public static function listToFile(string $list, string $type = 'file')
        {
-               if (!intval($uid)) {
-                       return false;
-               }
-
-               if ($cat == true) {
-                       $pattern = '<' . self::encode($file) . '>';
-                       $termtype = Term::CATEGORY;
-               } else {
-                       $pattern = '[' . self::encode($file) . ']';
-                       $termtype = Term::FILE;
-               }
-
-               $item = Item::selectFirst(['file'], ['id' => $item_id, 'uid' => $uid]);
-
-               if (!DBA::isResult($item)) {
-                       return false;
-               }
-
-               $fields = ['file' => str_replace($pattern, '', $item['file'])];
-
-               Item::update($fields, ['id' => $item_id]);
-
-               $r = q("SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d",
-                       DBA::escape($file),
-                       intval(Term::OBJECT_TYPE_POST),
-                       intval($termtype),
-                       intval($uid)
-               );
-
-               if (!DBA::isResult($r)) {
-                       $saved = PConfig::get($uid, 'system', 'filetags');
-                       PConfig::set($uid, 'system', 'filetags', str_replace($pattern, '', $saved));
-               }
+               $list_array = explode(',', $list);
 
-               return true;
+               return self::arrayToFile($list_array, $type);
        }
 }