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