]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Item.php
Fix PHPDoc comments project-wide
[friendica.git] / src / Model / Item.php
index b71db999d037d5f4c7f4a22bedf16a99840a5edd..6c071bfc7fb7e1adec24c92a2f893dda94e0bea0 100644 (file)
@@ -263,6 +263,7 @@ class Item extends BaseObject
         * @brief Fills an array with data from an item query
         *
         * @param object $stmt statement object
+        * @param bool   $do_close
         * @return array Data array
         */
        public static function inArray($stmt, $do_close = true) {
@@ -286,6 +287,7 @@ class Item extends BaseObject
         * @param array $condition array of fields for condition
         *
         * @return boolean Are there rows for that condition?
+        * @throws \Exception
         */
        public static function exists($condition) {
                $stmt = self::select(['id'], $condition, ['limit' => 1]);
@@ -306,11 +308,12 @@ class Item extends BaseObject
         *
         * @brief Retrieve a single record from a table
         * @param integer $uid User ID
-        * @param array  $fields
-        * @param array  $condition
-        * @param array  $params
+        * @param array   $selected
+        * @param array   $condition
+        * @param array   $params
         * @return bool|array
-        * @see DBA::select
+        * @throws \Exception
+        * @see   DBA::select
         */
        public static function selectFirstForUser($uid, array $selected = [], array $condition = [], $params = [])
        {
@@ -326,12 +329,13 @@ class Item extends BaseObject
        /**
         * @brief Select 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
+        * @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 = [])
        {
@@ -348,11 +352,12 @@ class Item extends BaseObject
         * Retrieve a single record from the item table and returns it in an associative array
         *
         * @brief Retrieve a single record from a table
-        * @param array  $fields
-        * @param array  $condition
-        * @param array  $params
+        * @param array $fields
+        * @param array $condition
+        * @param array $params
         * @return bool|array
-        * @see DBA::select
+        * @throws \Exception
+        * @see   DBA::select
         */
        public static function selectFirst(array $fields = [], array $condition = [], $params = [])
        {
@@ -372,11 +377,12 @@ class Item extends BaseObject
        /**
         * @brief Select rows from the item 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
+        * @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 = [])
        {
@@ -412,12 +418,13 @@ class Item extends BaseObject
        /**
         * @brief Select rows from the starting post in the item table
         *
-        * @param integer $uid User ID
-        * @param array  $fields    Array of selected fields, empty for all
-        * @param array  $condition Array of fields for condition
-        * @param array  $params    Array of several parameters
+        * @param integer $uid       User ID
+        * @param array   $selected
+        * @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 = [])
        {
@@ -435,11 +442,12 @@ class Item extends BaseObject
         *
         * @brief Retrieve a single record from a table
         * @param integer $uid User ID
-        * @param array  $selected
-        * @param array  $condition
-        * @param array  $params
+        * @param array   $selected
+        * @param array   $condition
+        * @param array   $params
         * @return bool|array
-        * @see DBA::select
+        * @throws \Exception
+        * @see   DBA::select
         */
        public static function selectFirstThreadForUser($uid, array $selected = [], array $condition = [], $params = [])
        {
@@ -456,11 +464,12 @@ class Item extends BaseObject
         * Retrieve a single record from the starting post in the item table and returns it in an associative array
         *
         * @brief Retrieve a single record from a table
-        * @param array  $fields
-        * @param array  $condition
-        * @param array  $params
+        * @param array $fields
+        * @param array $condition
+        * @param array $params
         * @return bool|array
-        * @see DBA::select
+        * @throws \Exception
+        * @see   DBA::select
         */
        public static function selectFirstThread(array $fields = [], array $condition = [], $params = [])
        {
@@ -479,11 +488,12 @@ class Item extends BaseObject
        /**
         * @brief Select rows from the starting post in the item 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
+        * @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 = [])
        {
@@ -529,6 +539,7 @@ class Item extends BaseObject
        /**
         * @brief Returns a list of fields that are associated with the item table
         *
+        * @param $usermode
         * @return array field list
         */
        private static function fieldlist($usermode)
@@ -611,10 +622,11 @@ class Item extends BaseObject
        /**
         * @brief Returns all needed "JOIN" commands for the "select" functions
         *
-        * @param integer $uid User ID
-        * @param string $sql_commands The parts of the built SQL commands in the "select" functions
-        * @param boolean $thread_mode Called for the items (false) or for the threads (true)
+        * @param integer $uid          User ID
+        * @param string  $sql_commands The parts of the built SQL commands in the "select" functions
+        * @param boolean $thread_mode  Called for the items (false) or for the threads (true)
         *
+        * @param         $user_mode
         * @return string The SQL joins for the "select" functions
         */
        private static function constructJoins($uid, $sql_commands, $thread_mode, $user_mode)
@@ -777,7 +789,7 @@ class Item extends BaseObject
        /**
         * @brief Update existing item entries
         *
-        * @param array $fields The fields that are to be changed
+        * @param array $fields    The fields that are to be changed
         * @param array $condition The condition for finding the item entries
         *
         * In the future we may have to change permissions as well.
@@ -786,6 +798,7 @@ class Item extends BaseObject
         * A return value of "0" doesn't mean an error - but that 0 rows had been changed.
         *
         * @return integer|boolean number of affected rows - or "false" if there was an error
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function update(array $fields, array $condition)
        {
@@ -932,8 +945,9 @@ class Item extends BaseObject
        /**
         * @brief Delete an item and notify others about it - if it was ours
         *
-        * @param array $condition The condition for finding the item entries
-        * @param integer $priority Priority for the notification
+        * @param array   $condition The condition for finding the item entries
+        * @param integer $priority  Priority for the notification
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function delete($condition, $priority = PRIORITY_HIGH)
        {
@@ -947,8 +961,9 @@ class Item extends BaseObject
        /**
         * @brief Delete an item for an user and notify others about it - if it was ours
         *
-        * @param array $condition The condition for finding the item entries
-        * @param integer $uid User who wants to delete this item
+        * @param array   $condition The condition for finding the item entries
+        * @param integer $uid       User who wants to delete this item
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function deleteForUser($condition, $uid)
        {
@@ -973,10 +988,11 @@ class Item extends BaseObject
        /**
         * @brief Delete an item and notify others about it - if it was ours
         *
-        * @param integer $item_id Item ID that should be delete
+        * @param integer $item_id  Item ID that should be delete
         * @param integer $priority Priority for the notification
         *
         * @return boolean success
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function deleteById($item_id, $priority = PRIORITY_HIGH)
        {
@@ -1850,6 +1866,7 @@ class Item extends BaseObject
         *
         * @param array $item The item fields that are to be inserted
         * @return bool
+        * @throws \Exception
         */
        private static function insertActivity(&$item)
        {
@@ -1896,6 +1913,7 @@ class Item extends BaseObject
         * @brief Insert a new item content entry
         *
         * @param array $item The item fields that are to be inserted
+        * @throws \Exception
         */
        private static function insertContent(&$item)
        {
@@ -1934,8 +1952,10 @@ class Item extends BaseObject
        /**
         * @brief Update existing item content entries
         *
-        * @param array $item The item fields that are to be changed
+        * @param array $item      The item fields that are to be changed
         * @param array $condition The condition for finding the item content entries
+        * @return bool
+        * @throws \Exception
         */
        private static function updateActivity($item, $condition)
        {
@@ -1960,8 +1980,9 @@ class Item extends BaseObject
        /**
         * @brief Update existing item content entries
         *
-        * @param array $item The item fields that are to be changed
+        * @param array $item      The item fields that are to be changed
         * @param array $condition The condition for finding the item content entries
+        * @throws \Exception
         */
        private static function updateContent($item, $condition)
        {
@@ -1989,6 +2010,7 @@ class Item extends BaseObject
         *
         * @param integer $itemid      Item ID that should be added
         * @param string  $signed_text Original text (for Diaspora signatures), JSON encoded.
+        * @throws \Exception
         */
        public static function distribute($itemid, $signed_text = '')
        {
@@ -2085,6 +2107,7 @@ class Item extends BaseObject
         * @param integer $itemid Item ID that should be added
         * @param array   $item   The item entry that will be stored
         * @param integer $uid    The user that will receive the item entry
+        * @throws \Exception
         */
        private static function storeForUser($itemid, $item, $uid)
        {
@@ -2132,6 +2155,7 @@ class Item extends BaseObject
         * It is planned that in the future we will store public item entries only once.
         *
         * @param integer $itemid Item ID that should be added
+        * @throws \Exception
         */
        public static function addShadow($itemid)
        {
@@ -2193,6 +2217,7 @@ class Item extends BaseObject
         * This function does the same like the function above - but for comments
         *
         * @param integer $itemid Item ID that should be added
+        * @throws \Exception
         */
        public static function addShadowPost($itemid)
        {
@@ -2249,9 +2274,12 @@ class Item extends BaseObject
                }
        }
 
-        /**
+       /**
         * Adds a language specification in a "language" element of given $arr.
         * Expects "body" element to exist in $arr.
+        *
+        * @param $item
+        * @throws \Text_LanguageDetect_Exception
         */
        private static function addLanguageToItemArray(&$item)
        {
@@ -2297,10 +2325,11 @@ class Item extends BaseObject
        /**
         * generate an unique URI
         *
-        * @param integer $uid User id
-        * @param string $guid An existing GUID (Otherwise it will be generated)
+        * @param integer $uid  User id
+        * @param string  $guid An existing GUID (Otherwise it will be generated)
         *
         * @return string
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function newURI($uid, $guid = "")
        {
@@ -2319,6 +2348,7 @@ class Item extends BaseObject
         * Don't set this value if it isn't from the owner (could be an author that we don't know)
         *
         * @param array $arr Contains the just posted item record
+        * @throws \Exception
         */
        private static function updateContact($arr)
        {
@@ -2439,9 +2469,11 @@ class Item extends BaseObject
 
        /**
         * This function is only used for the old Friendica app on Android that doesn't like paths with guid
+        *
         * @param string $guid item guid
         * @param int    $uid  user id
         * @return array with id and nick of the item with the given guid
+        * @throws \Exception
         */
        public static function getIdAndNickByGuid($guid, $uid = 0)
        {
@@ -2483,9 +2515,12 @@ class Item extends BaseObject
 
        /**
         * look for mention tags and setup a second delivery chain for forum/community posts if appropriate
+        *
         * @param int $uid
         * @param int $item_id
-        * @return bool true if item was deleted, else false
+        * @return void true if item was deleted, else false
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
         */
        private static function tagDeliver($uid, $item_id)
        {
@@ -2671,6 +2706,8 @@ class Item extends BaseObject
         * @param array  $item
         * @param int    $cid
         * @return string
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
         */
        public static function fixPrivatePhotos($s, $uid, $item = null, $cid = 0)
        {
@@ -2928,12 +2965,15 @@ class Item extends BaseObject
         *
         * @param string $item_id
         * @param string $verb
-        *              Activity verb. One of
-        *                      like, unlike, dislike, undislike, attendyes, unattendyes,
-        *                      attendno, unattendno, attendmaybe, unattendmaybe
-        * @hook 'post_local_end'
-        *              array $arr
-        *                      'post_id' => ID of posted item
+        *            Activity verb. One of
+        *            like, unlike, dislike, undislike, attendyes, unattendyes,
+        *            attendno, unattendno, attendmaybe, unattendmaybe
+        * @return bool
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        * @hook  'post_local_end'
+        *            array $arr
+        *            'post_id' => ID of posted item
         */
        public static function performLike($item_id, $verb)
        {
@@ -3212,7 +3252,7 @@ class Item extends BaseObject
        /**
         * get translated item type
         *
-        * @param array $itme
+        * @param $item
         * @return string
         */
        public static function postType($item)
@@ -3238,6 +3278,7 @@ class Item extends BaseObject
         * @param array $item
         * @param bool  $update
         *
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @todo Remove reference, simply return "rendered-html" and "rendered-hash"
         */
        public static function putInCache(&$item, $update = false)
@@ -3296,10 +3337,12 @@ class Item extends BaseObject
         * @param boolean $attach
         * @param boolean $is_preview
         * @return string item body html
-        * @hook prepare_body_init item array before any work
-        * @hook prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
-        * @hook prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
-        * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        * @hook  prepare_body_init item array before any work
+        * @hook  prepare_body_content_filter ('item'=>item array, 'filter_reasons'=>string array) before first bbcode to html
+        * @hook  prepare_body ('item'=>item array, 'html'=>body string, 'is_preview'=>boolean, 'filter_reasons'=>string array) after first bbcode to html
+        * @hook  prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
         */
        public static function prepareBody(array &$item, $attach = false, $is_preview = false)
        {
@@ -3467,8 +3510,10 @@ class Item extends BaseObject
 
        /**
         * get private link for item
+        *
         * @param array $item
         * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
+        * @throws \Exception
         */
        public static function getPlink($item)
        {