]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Post.php
Replace legacy file/category handling
[friendica.git] / src / Model / Post.php
index 52b801de3c45b65dc4df33f2a22f72ae2b5e7a01..ec348c60ad3b7d7f1565448ab2721ca517a0e7c1 100644 (file)
@@ -63,22 +63,6 @@ class Post
                        }
                }
 
-               if (!array_key_exists('verb', $row) || in_array($row['verb'], ['', Activity::POST, Activity::SHARE])) {
-                       // Build the file string out of the term entries
-                       if (array_key_exists('file', $row)) {
-                               if ($row['internal-file-count'] > 0) {
-                                       $row['file'] = Post\Category::getTextByURIId($row['internal-uri-id'], $row['internal-uid']);
-                               } else {
-                                       $row['file'] = '';
-                               }
-                       }
-               }
-
-               // Remove internal fields
-               unset($row['internal-file-count']);
-               unset($row['internal-uri-id']);
-               unset($row['internal-uid']);
-
                return $row;
        }
 
@@ -190,33 +174,68 @@ class Post
        }
 
        /**
-        * Select rows from the post table
+        * Select rows from the given view
         *
-        * @param array $selected  Array of selected fields, empty for all
-        * @param array $condition Array of fields for condition
-        * @param array $params    Array of several parameters
+        * @param string $view      View (post-view or post-thread-view)
+        * @param array  $selected  Array of selected fields, empty for all
+        * @param array  $condition Array of fields for condition
+        * @param array  $params    Array of several parameters
         *
         * @return boolean|object
         * @throws \Exception
         */
-       public static function select(array $selected = [], array $condition = [], $params = [])
+       private static function selectView(string $view, array $selected = [], array $condition = [], $params = [])
        {
                if (empty($selected)) {
                        $selected = array_merge(['author-addr', 'author-nick', 'owner-addr', 'owner-nick', 'causer-addr', 'causer-nick',
                                'causer-network', 'photo', 'name-date', 'uri-date', 'avatar-date', 'thumb', 'dfrn-id',
                                'parent-guid', 'parent-network', 'parent-author-id', 'parent-author-link', 'parent-author-name',
                                'parent-author-network', 'signed_text'], Item::DISPLAY_FIELDLIST, Item::ITEM_FIELDLIST, Item::CONTENT_FIELDLIST);
+                       
+                       if ($view == 'post-thread-view') {
+                               $selected = array_merge($selected, ['ignored', 'iid']);
+                       }
                }
 
-               $selected = array_merge($selected, ['internal-uri-id', 'internal-uid', 'internal-file-count']);
                $selected = array_unique($selected);
 
-               return DBA::select('post-view', $selected, $condition, $params);
+               return DBA::select($view, $selected, $condition, $params);
        }
 
        /**
-        * Select rows from the post view for a given user
+        * Select rows from the post table
         *
+        * @param array $selected  Array of selected fields, empty for all
+        * @param array $condition Array of fields for condition
+        * @param array $params    Array of several parameters
+        *
+        * @return boolean|object
+        * @throws \Exception
+        */
+       public static function select(array $selected = [], array $condition = [], $params = [])
+       {
+               return self::selectView('post-view', $selected, $condition, $params);
+       }
+
+       /**
+        * Select rows from the post table
+        *
+        * @param array $selected  Array of selected fields, empty for all
+        * @param array $condition Array of fields for condition
+        * @param array $params    Array of several parameters
+        *
+        * @return boolean|object
+        * @throws \Exception
+        */
+       public static function selectThread(array $selected = [], array $condition = [], $params = [])
+       {
+               return self::selectView('post-thread-view', $selected, $condition, $params);
+       }
+
+       /**
+        * Select rows from the given view for a given user
+        *
+        * @param string  $view      View (post-view or post-thread-view)
         * @param integer $uid       User ID
         * @param array   $selected  Array of selected fields, empty for all
         * @param array   $condition Array of fields for condition
@@ -225,14 +244,12 @@ class Post
         * @return boolean|object
         * @throws \Exception
         */
-       public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [])
+       private static function selectViewForUser(string $view, $uid, array $selected = [], array $condition = [], $params = [])
        {
                if (empty($selected)) {
                        $selected = Item::DISPLAY_FIELDLIST;
                }
 
-               $selected = array_unique(array_merge($selected, ['internal-uri-id', 'internal-uid', 'internal-file-count']));
-
                $condition = DBA::mergeConditions($condition,
                        ["`visible` AND NOT `deleted` AND NOT `moderated`
                        AND NOT `author-blocked` AND NOT `owner-blocked`
@@ -253,7 +270,7 @@ class Post
                        unset($selected['pinned']);
                        $selected = array_flip($selected);      
 
-                       $select_string = '(SELECT `pinned` FROM `user-item` WHERE `iid` = `post-view`.`id` AND uid=`post-view`.`uid`) AS `pinned`, ';
+                       $select_string = "(SELECT `pinned` FROM `user-item` WHERE `iid` = `" . $view . "`.`id` AND uid=`" . $view . "`.`uid`) AS `pinned`, ";
                }
 
                $select_string .= implode(', ', array_map([DBA::class, 'quoteIdentifier'], $selected));
@@ -261,12 +278,44 @@ class Post
                $condition_string = DBA::buildCondition($condition);
                $param_string = DBA::buildParameter($params);
 
-               $sql = "SELECT " . $select_string . " FROM `post-view` " . $condition_string . $param_string;
+               $sql = "SELECT " . $select_string . " FROM `" . $view . "` " . $condition_string . $param_string;
                $sql = DBA::cleanQuery($sql);
 
                return DBA::p($sql, $condition);
        }
 
+       /**
+        * Select rows from the post view for a given user
+        *
+        * @param integer $uid       User ID
+        * @param array   $selected  Array of selected fields, empty for all
+        * @param array   $condition Array of fields for condition
+        * @param array   $params    Array of several parameters
+        *
+        * @return boolean|object
+        * @throws \Exception
+        */
+       public static function selectForUser($uid, array $selected = [], array $condition = [], $params = [])
+       {
+               return self::selectViewForUser('post-view', $uid, $selected, $condition, $params);
+       }
+
+               /**
+        * Select rows from the post view for a given user
+        *
+        * @param integer $uid       User ID
+        * @param array   $selected  Array of selected fields, empty for all
+        * @param array   $condition Array of fields for condition
+        * @param array   $params    Array of several parameters
+        *
+        * @return boolean|object
+        * @throws \Exception
+        */
+       public static function selectThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
+       {
+               return self::selectViewForUser('post-thread-view', $uid, $selected, $condition, $params);
+       }
+
        /**
         * Retrieve a single record from the post view for a given user and returns it in an associative array
         *
@@ -292,4 +341,63 @@ class Post
                        return $row;
                }
        }
+
+       /**
+        * Retrieve a single record from the starting post in the item table and returns it in an associative array
+        *
+        * @param integer $uid User ID
+        * @param array   $selected
+        * @param array   $condition
+        * @param array   $params
+        * @return bool|array
+        * @throws \Exception
+        * @see   DBA::select
+        */
+       public static function selectFirstThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
+       {
+               $params['limit'] = 1;
+
+               $result = self::selectThreadForUser($uid, $selected, $condition, $params);
+
+               if (is_bool($result)) {
+                       return $result;
+               } else {
+                       $row = self::fetch($result);
+                       DBA::close($result);
+                       return $row;
+               }
+       }
+
+       /**
+        * Select pinned rows from the item table for a given user
+        *
+        * @param integer $uid       User ID
+        * @param array   $selected  Array of selected fields, empty for all
+        * @param array   $condition Array of fields for condition
+        * @param array   $params    Array of several parameters
+        *
+        * @return boolean|object
+        * @throws \Exception
+        */
+       public static function selectPinned(int $uid, array $selected = [], array $condition = [], $params = [])
+       {
+               $useritems = DBA::select('user-item', ['iid'], ['uid' => $uid, 'pinned' => true]);
+               if (!DBA::isResult($useritems)) {
+                       return $useritems;
+               }
+
+               $pinned = [];
+               while ($useritem = DBA::fetch($useritems)) {
+                       $pinned[] = $useritem['iid'];
+               }
+               DBA::close($useritems);
+
+               if (empty($pinned)) {
+                       return [];
+               }
+
+               $condition = DBA::mergeConditions(['iid' => $pinned], $condition);
+
+               return self::selectThreadForUser($uid, $selected, $condition, $params);
+       }
 }