]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/User.php
Funkwhale context file moved
[friendica.git] / src / Model / Post / User.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 Friendica\Database\DBA;
25 use \BadMethodCallException;
26 use Friendica\Database\Database;
27 use Friendica\Database\DBStructure;
28 use Friendica\DI;
29
30 class User
31 {
32         /**
33          * Insert a new post user entry
34          *
35          * @param integer $uri_id
36          * @param integer $uid
37          * @param array   $fields
38          * @return int    ID of inserted post-user
39          * @throws \Exception
40          */
41         public static function insert(int $uri_id, int $uid, array $data = [])
42         {
43                 if (empty($uri_id)) {
44                         throw new BadMethodCallException('Empty URI_id');
45                 }
46
47                 if (DBA::exists('post-user', ['uri-id' => $uri_id, 'uid' => $uid])) {
48                         return false;
49                 }
50
51                 $fields = DI::dbaDefinition()->truncateFieldsForTable('post-user', $data);
52
53                 // Additionally assign the key fields
54                 $fields['uri-id'] = $uri_id;
55                 $fields['uid'] = $uid;
56
57                 // Public posts are always seen
58                 if ($uid == 0) {
59                         $fields['unseen'] = false;
60                 }
61
62                 if (!DBA::insert('post-user', $fields, Database::INSERT_IGNORE)) {
63                         return 0;
64                 }
65
66                 return DBA::lastInsertId();
67         }
68
69         /**
70          * Update a post user entry
71          *
72          * @param integer $uri_id
73          * @param integer $uid
74          * @param array   $data
75          * @param bool    $insert_if_missing
76          * @return bool
77          * @throws \Exception
78          */
79         public static function update(int $uri_id, int $uid, array $data = [], bool $insert_if_missing = false)
80         {
81                 if (empty($uri_id)) {
82                         throw new BadMethodCallException('Empty URI_id');
83                 }
84
85                 $fields = DI::dbaDefinition()->truncateFieldsForTable('post-user', $data);
86
87                 // Remove the key fields
88                 unset($fields['uri-id']);
89                 unset($fields['uid']);
90
91                 if (empty($fields)) {
92                         return true;
93                 }
94
95                 return DBA::update('post-user', $fields, ['uri-id' => $uri_id, 'uid' => $uid], $insert_if_missing ? true : []);
96         }
97
98         /**
99          * Delete a row from the post-user table
100          *
101          * @param array        $conditions Field condition(s)
102          * @param array        $options
103          *                           - cascade: If true we delete records in other tables that depend on the one we're deleting through
104          *                           relations (default: true)
105          *
106          * @return boolean was the delete successful?
107          * @throws \Exception
108          */
109         public static function delete(array $conditions, array $options = [])
110         {
111                 return DBA::delete('post-user', $conditions, $options);
112         }
113 }