]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/Thread.php
Merge pull request #10166 from mexon/mat/refactor-user-arguments
[friendica.git] / src / Model / Post / Thread.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model\Post;
23
24 use \BadMethodCallException;
25 use Friendica\Core\Protocol;
26 use Friendica\Database\Database;
27 use Friendica\Database\DBA;
28 use Friendica\Database\DBStructure;
29 use Friendica\Model\Post;
30
31 class Thread
32 {
33         /**
34          * Insert a new post-thread entry
35          *
36          * @param integer $uri_id
37          * @param array   $fields
38          * @return bool   success
39          * @throws \Exception
40          */
41         public static function insert(int $uri_id, array $data = [])
42         {
43                 if (empty($uri_id)) {
44                         throw new BadMethodCallException('Empty URI_id');
45                 }
46
47                 $fields = DBStructure::getFieldsForTable('post-thread', $data);
48
49                 // Additionally assign the key fields
50                 $fields['uri-id'] = $uri_id;
51
52                 return DBA::insert('post-thread', $fields, Database::INSERT_IGNORE);
53         }
54
55         /**
56          * Update a post-thread entry
57          *
58          * @param integer $uri_id
59          * @param array   $data
60          * @param bool    $insert_if_missing
61          * @return bool
62          * @throws \Exception
63          */
64         public static function update(int $uri_id, array $data = [], bool $insert_if_missing = false)
65         {
66                 if (empty($uri_id)) {
67                         throw new BadMethodCallException('Empty URI_id');
68                 }
69
70                 $fields = DBStructure::getFieldsForTable('post-thread', $data);
71
72                 // Remove the key fields
73                 unset($fields['uri-id']);
74
75                 if (empty($fields)) {
76                         return true;
77                 }
78
79                 return DBA::update('post-thread', $fields, ['uri-id' => $uri_id], $insert_if_missing ? true : []);
80         }
81
82         /**
83          * Delete a row from the post-thread table
84          *
85          * @param array        $conditions Field condition(s)
86          * @param array        $options
87          *                           - cascade: If true we delete records in other tables that depend on the one we're deleting through
88          *                           relations (default: true)
89          *
90          * @return boolean was the delete successful?
91          * @throws \Exception
92          */
93         public static function delete(array $conditions, array $options = [])
94         {
95                 return DBA::delete('post-thread', $conditions, $options);
96         }
97 }