]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/Thread.php
Use the owner, not the author
[friendica.git] / src / Model / Post / Thread.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Database\Database;
26 use Friendica\Database\DBA;
27 use Friendica\Database\DBStructure;
28 use Friendica\DI;
29
30 class Thread
31 {
32         /**
33          * Insert a new post-thread entry
34          *
35          * @param integer $uri_id
36          * @param array   $fields
37          * @return bool   success
38          * @throws \Exception
39          */
40         public static function insert(int $uri_id, array $data = [])
41         {
42                 if (empty($uri_id)) {
43                         throw new BadMethodCallException('Empty URI_id');
44                 }
45
46                 $fields = DI::dbaDefinition()->truncateFieldsForTable('post-thread', $data);
47
48                 // Additionally assign the key fields
49                 $fields['uri-id'] = $uri_id;
50
51                 return DBA::insert('post-thread', $fields, Database::INSERT_IGNORE);
52         }
53
54         /**
55          * Update a post-thread entry
56          *
57          * @param integer $uri_id
58          * @param array   $data
59          * @param bool    $insert_if_missing
60          * @return bool
61          * @throws \Exception
62          */
63         public static function update(int $uri_id, array $data = [], bool $insert_if_missing = false)
64         {
65                 if (empty($uri_id)) {
66                         throw new BadMethodCallException('Empty URI_id');
67                 }
68
69                 $fields = DI::dbaDefinition()->truncateFieldsForTable('post-thread', $data);
70
71                 // Remove the key fields
72                 unset($fields['uri-id']);
73
74                 if (empty($fields)) {
75                         return true;
76                 }
77
78                 return DBA::update('post-thread', $fields, ['uri-id' => $uri_id], $insert_if_missing ? true : []);
79         }
80
81         /**
82          * Delete a row from the post-thread table
83          *
84          * @param array        $conditions Field condition(s)
85          * @param array        $options
86          *                           - cascade: If true we delete records in other tables that depend on the one we're deleting through
87          *                           relations (default: true)
88          *
89          * @return boolean was the delete successful?
90          * @throws \Exception
91          */
92         public static function delete(array $conditions, array $options = [])
93         {
94                 return DBA::delete('post-thread', $conditions, $options);
95         }
96 }