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