]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/User.php
Don't create a user-item entry on default
[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 URI user entry
33          *
34          * @param integer $uri_id
35          * @param integer $uid
36          * @param array   $fields
37          * @return bool
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                 return DBA::insert('post-user', $fields, Database::INSERT_IGNORE);
62         }
63
64         /**
65          * Update a URI user entry
66          *
67          * @param integer $uri_id
68          * @param integer $uid
69          * @param array   $data
70          * @param bool    $insert_if_missing
71          * @return bool
72          * @throws \Exception
73          */
74         public static function update(int $uri_id, int $uid, array $data = [], bool $insert_if_missing = false)
75         {
76                 if (empty($uri_id)) {
77                         throw new BadMethodCallException('Empty URI_id');
78                 }
79
80                 $fields = DBStructure::getFieldsForTable('post-user', $data);
81
82                 // Remove the key fields
83                 unset($fields['uri-id']);
84                 unset($fields['uid']);
85
86                 if (empty($fields)) {
87                         return true;
88                 }
89
90                 return DBA::update('post-user', $fields, ['uri-id' => $uri_id, 'uid' => $uid], $insert_if_missing ? true : []);
91         }
92 }