]> git.mxchange.org Git - friendica.git/blob - src/Model/Post/Content.php
We now store the receivers as well
[friendica.git] / src / Model / Post / Content.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\Core\Protocol;
26 use Friendica\Database\Database;
27 use Friendica\Database\DBA;
28 use Friendica\Database\DBStructure;
29 use Friendica\Model\Post;
30
31 class Content
32 {
33         /**
34          * Insert a new post-content entry
35          *
36          * @param integer $uri_id
37          * @param array   $fields
38          * @return bool   success
39          * @throws \Exception
40          */
41         public static function insert(int $uri_id, array $data = [])
42         {
43                 if (empty($uri_id)) {
44                         throw new BadMethodCallException('Empty URI_id');
45                 }
46
47                 $fields = DBStructure::getFieldsForTable('post-content', $data);
48
49                 // Additionally assign the key fields
50                 $fields['uri-id'] = $uri_id;
51
52                 return DBA::insert('post-content', $fields, Database::INSERT_IGNORE);
53         }
54
55         /**
56          * Update a post content entry
57          *
58          * @param integer $uri_id
59          * @param array   $data
60          * @param bool    $insert_if_missing
61          * @return bool
62          * @throws \Exception
63          */
64         public static function update(int $uri_id, array $data = [], bool $insert_if_missing = false)
65         {
66                 if (empty($uri_id)) {
67                         throw new BadMethodCallException('Empty URI_id');
68                 }
69
70                 $fields = DBStructure::getFieldsForTable('post-content', $data);
71
72                 // Remove the key fields
73                 unset($fields['uri-id']);
74
75                 if (empty($fields)) {
76                         return true;
77                 }
78
79                 return DBA::update('post-content', $fields, ['uri-id' => $uri_id], $insert_if_missing ? true : []);
80         }
81
82         /**
83          * Delete a row from the post-content table
84          *
85          * @param array        $conditions Field condition(s)
86          * @param array        $options
87          *                           - cascade: If true we delete records in other tables that depend on the one we're deleting through
88          *                           relations (default: true)
89          *
90          * @return boolean was the delete successful?
91          * @throws \Exception
92          */
93         public static function delete(array $conditions, array $options = [])
94         {
95                 return DBA::delete('post-content', $conditions, $options);
96         }
97
98
99         /**
100          * Search posts for given content
101          *
102          * @param string $search
103          * @param integer $uid
104          * @param integer $start
105          * @param integer $limit
106          * @param integer $last_uriid
107          * @return array
108          */
109         public static function getURIIdListBySearch(string $search, int $uid = 0, int $start = 0, int $limit = 100, int $last_uriid = 0)
110         {
111                 $condition = ["`uri-id` IN (SELECT `uri-id` FROM `post-content` WHERE MATCH (`title`, `content-warning`, `body`) AGAINST (? IN BOOLEAN MODE))
112                         AND (`uid` = ? OR (`uid` = ? AND NOT `global`)) AND (`network` IN (?, ?, ?, ?) OR (`uid` = ? AND `uid` != ?))",
113                         str_replace('@', ' ', $search), 0, $uid, Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, $uid, 0];
114
115                 if (!empty($last_uriid)) {
116                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $last_uriid]);
117                 }
118
119                 $params = [
120                         'order' => ['uri-id' => true],
121                         'limit' => [$start, $limit]
122                 ];
123
124                 $tags = Post::select(['uri-id'], $condition, $params);
125
126                 $uriids = [];
127                 while ($tag = DBA::fetch($tags)) {
128                         $uriids[] = $tag['uri-id'];
129                 }
130                 DBA::close($tags);
131
132                 return $uriids;
133         }
134
135         public static function countBySearch(string $search, int $uid = 0)
136         {
137                 $condition = ["`uri-id` IN (SELECT `uri-id` FROM `post-content` WHERE MATCH (`title`, `content-warning`, `body`) AGAINST (? IN BOOLEAN MODE))
138                         AND (`uid` = ? OR (`uid` = ? AND NOT `global`)) AND (`network` IN (?, ?, ?, ?) OR (`uid` = ? AND `uid` != ?))",
139                         str_replace('@', ' ', $search), 0, $uid, Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, $uid, 0];
140                 return Post::count($condition);
141         }
142 }