]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Queue.php
Issue 11776 - process replies via a worker task
[friendica.git] / src / Protocol / ActivityPub / Queue.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\Protocol\ActivityPub;
23
24 use Friendica\Core\Logger;
25 use Friendica\Database\Database;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Util\DateTimeFormat;
29 use Friendica\Util\JsonLD;
30
31 /**
32  * This class handles the processing of incoming posts
33  */
34 class Queue
35 {
36         /**
37          * Add activity to the queue
38          *
39          * @param array $activity
40          * @param string $type
41          * @param integer $uid
42          * @param string $http_signer
43          * @param boolean $push
44          * @return array
45          */
46         public static function add(array $activity, string $type, int $uid, string $http_signer, bool $push, bool $trust_source): array
47         {
48                 $fields = [
49                         'activity-id' => $activity['id'],
50                         'object-id'   => $activity['object_id'],
51                         'type'        => $type,
52                         'object-type' => $activity['object_type'],
53                         'activity'    => json_encode($activity, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT),
54                         'received'    => DateTimeFormat::utcNow(),
55                         'push'        => $push,
56                         'trust'       => $trust_source,
57                 ];
58
59                 if (!empty($activity['reply-to-id'])) {
60                         $fields['in-reply-to-id'] = $activity['reply-to-id'];
61                 }
62
63                 if (!empty($activity['context'])) {
64                         $fields['conversation'] = $activity['context'];
65                 } elseif (!empty($activity['conversation'])) {
66                         $fields['conversation'] = $activity['conversation'];
67                 }
68
69                 if (!empty($activity['object_object_type'])) {
70                         $fields['object-object-type'] = $activity['object_object_type'];
71                 }
72
73                 if (!empty($http_signer)) {
74                         $fields['signer'] = $http_signer;
75                 }
76
77                 DBA::insert('inbox-entry', $fields, Database::INSERT_IGNORE);
78
79                 $queue = DBA::selectFirst('inbox-entry', ['id'], ['activity-id' => $activity['id']]);
80                 if (!empty($queue['id'])) {
81                         $activity['entry-id'] = $queue['id'];
82                         DBA::insert('inbox-entry-receiver', ['queue-id' => $queue['id'], 'uid' => $uid], Database::INSERT_IGNORE);
83                 }
84                 return $activity;
85         }
86
87         /**
88          * Remove activity from the queue
89          *
90          * @param array $activity
91          * @return void
92          */
93         public static function remove(array $activity = [])
94         {
95                 if (empty($activity['entry-id'])) {
96                         return;
97                 }
98                 DBA::delete('inbox-entry', ['id' => $activity['entry-id']]);
99         }
100
101         /**
102          * Delete all entries that depend on the given worker id
103          *
104          * @param integer $wid
105          * @return void
106          */
107         public static function deleteByWorkerId(int $wid)
108         {
109                 $entries = DBA::select('inbox-entry', ['id'], ['wid' => $wid]);
110                 while ($entry = DBA::fetch($entries)) {
111                         self::deleteById($entry['id']);
112                 }
113                 DBA::close($entries);
114         }
115
116         /**
117          * Delete recursively an entry and all their children
118          *
119          * @param integer $id
120          * @return void
121          */
122         public static function deleteById(int $id)
123         {
124                 $entry = DBA::selectFirst('inbox-entry', ['id', 'object-id'], ['id' => $id]);
125                 if (empty($entry)) {
126                         return;
127                 }
128
129                 $children = DBA::select('inbox-entry', ['id'], ['in-reply-to-id' => $entry['object-id']]);
130                 while ($child = DBA::fetch($children)) {
131                         self::deleteById($child['id']);
132                 }
133                 DBA::close($children);
134                 DBA::delete('inbox-entry', ['id' => $entry['id']]);
135         }
136
137         /**
138          * Set the worker id for the queue entry
139          *
140          * @param array $activity
141          * @param int   $wid
142          * @return void
143          */
144         public static function setWorkerId(array $activity, int $wid)
145         {
146                 if (empty($activity['entry-id']) || empty($wid)) {
147                         return;
148                 }
149                 DBA::update('inbox-entry', ['wid' => $wid], ['id' => $activity['entry-id']]);
150         }
151
152         /**
153          * Check if there is an assigned worker task
154          *
155          * @param array $activity
156          * @return bool
157          */
158         public static function hasWorker(array $activity = []): bool
159         {
160                 if (empty($activity['worker-id'])) {
161                         return false;
162                 }
163                 return DBA::exists('workerqueue', ['id' => $activity['worker-id'], 'done' => false]);
164         }
165
166         /**
167          * Process the activity with the given id
168          *
169          * @param integer $id
170          * @return void
171          */
172         public static function process(int $id)
173         {
174                 $entry = DBA::selectFirst('inbox-entry', [], ['id' => $id]);
175                 if (empty($entry)) {
176                         return;
177                 }
178
179                 Logger::debug('Processing queue entry', ['id' => $entry['id'], 'type' => $entry['type'], 'object-type' => $entry['object-type'], 'uri' => $entry['object-id'], 'in-reply-to' => $entry['in-reply-to-id']]);
180
181                 $activity = json_decode($entry['activity'], true);
182                 $type     = $entry['type'];
183                 $push     = $entry['push'];
184
185                 $activity['entry-id']        = $entry['id'];
186                 $activity['worker-id']       = $entry['wid'];
187                 $activity['recursion-depth'] = 0;
188
189                 $receivers = DBA::select('inbox-entry-receiver', ['uid'], ['queue-id' => $entry['id']]);
190                 while ($receiver = DBA::fetch($receivers)) {
191                         if (!in_array($receiver['uid'], $activity['receiver'])) {
192                                 $activity['receiver'][] = $receiver['uid'];
193                         }
194                 }
195                 DBA::close($receivers);
196
197                 if (!Receiver::routeActivities($activity, $type, $push)) {
198                         self::remove($activity);
199                 }
200         }
201
202         /**
203          * Process all activities
204          *
205          * @return void
206          */
207         public static function processAll()
208         {
209                 $entries = DBA::select('inbox-entry', ['id', 'type', 'object-type', 'object-id', 'in-reply-to-id'], ["`trust` AND `wid` IS NULL"], ['order' => ['id' => true]]);
210                 while ($entry = DBA::fetch($entries)) {
211                         // We don't need to process entries that depend on already existing entries.
212                         if (!empty($entry['in-reply-to-id']) && DBA::exists('inbox-entry', ["`id` != ? AND `object-id` = ?", $entry['id'], $entry['in-reply-to-id']])) {
213                                 continue;
214                         }
215                         Logger::debug('Process leftover entry', $entry);
216                         self::process($entry['id']);
217                 }
218                 DBA::close($entries);
219         }
220
221         /**
222          * Clear old activities
223          *
224          * @return void
225          */
226         public static function clear()
227         {
228                 // We delete all entries that aren't associated with a worker entry after seven days.
229                 // The other entries are deleted when the worker deferred for too long.
230                 DBA::delete('inbox-entry', ["`wid` IS NULL AND `received` < ?", DateTimeFormat::utc('now - 7 days')]);
231
232                 // Optimizing this table only last seconds
233                 if (DI::config()->get('system', 'optimize_tables')) {
234                         Logger::info('Optimize start');
235                         DBA::e("OPTIMIZE TABLE `inbox-entry`");
236                         Logger::info('Optimize end');
237                 }
238         }
239
240         /**
241          * Process all activities that are children of a given post url
242          *
243          * @param string $uri
244          * @return int
245          */
246         public static function processReplyByUri(string $uri): int
247         {
248                 $count = 0;
249                 $entries = DBA::select('inbox-entry', ['id'], ["`in-reply-to-id` = ? AND `object-id` != ?", $uri, $uri]);
250                 while ($entry = DBA::fetch($entries)) {
251                         $count += 1;
252                         self::process($entry['id']);
253                 }
254                 DBA::close($entries);
255                 return $count;
256         }
257
258         /**
259          * Checks if there are children of the given uri
260          *
261          * @param string $uri
262          *
263          * @return bool
264          */
265         public static function hasChildren(string $uri): bool
266         {
267                 return DBA::exists('inbox-entry', ["`in-reply-to-id` = ? AND `object-id` != ?", $uri, $uri]);
268         }
269
270         /**
271          * Prepare the queue entry.
272          * This is a test function that is used solely for development.
273          *
274          * @param integer $id
275          * @return array
276          */
277         public static function reprepareActivityById(int $id): array
278         {
279                 $entry = DBA::selectFirst('inbox-entry', [], ['id' => $id]);
280                 if (empty($entry)) {
281                         return [];
282                 }
283
284                 $receiver = DBA::selectFirst('inbox-entry-receiver', ['uid'], ['queue-id' => $id]);
285                 if (!empty($receiver)) {
286                         $uid = $receiver['uid'];
287                 } else {
288                         $uid = 0;
289                 }
290
291                 $trust_source = $entry['trust'];
292
293                 $data     = json_decode($entry['activity'], true);
294                 $activity = json_decode($data['raw'], true);
295
296                 $ldactivity = JsonLD::compact($activity);
297                 return [
298                         'data'  => Receiver::prepareObjectData($ldactivity, $uid, $entry['push'], $trust_source),
299                         'trust' => $trust_source
300                 ];
301         }
302
303         /**
304          * Set the trust for all untrusted entries.
305          * This is a test function that is used solely for development.
306          *
307          * @return void
308          */
309         public static function reprepareAll()
310         {
311                 $entries = DBA::select('inbox-entry', ['id'], ["NOT `trust` AND `wid` IS NULL"], ['order' => ['id' => true]]);
312                 while ($entry = DBA::fetch($entries)) {
313                         $data = self::reprepareActivityById($entry['id'], false);
314                         if ($data['trust']) {
315                                 DBA::update('inbox-entry', ['trust' => true], ['id' => $entry['id']]);
316                         }
317                 }
318                 DBA::close($entries);
319
320         }
321 }