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