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