]> git.mxchange.org Git - friendica.git/blob - src/Protocol/ActivityPub/Queue.php
Merge pull request #11785 from annando/processing
[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                 DBA::delete('inbox-entry', ['id' => $entry['id']]);
130         }
131
132         /**
133          * Set the worker id for the queue entry
134          *
135          * @param array $activity
136          * @param int   $wid
137          * @return void
138          */
139         public static function setWorkerId(array $activity, int $wid)
140         {
141                 if (empty($activity['entry-id']) || empty($wid)) {
142                         return;
143                 }
144                 DBA::update('inbox-entry', ['wid' => $wid], ['id' => $activity['entry-id']]);
145         }
146
147         /**
148          * Check if there is an assigned worker task
149          *
150          * @param array $activity
151          * @return bool
152          */
153         public static function hasWorker(array $activity = []): bool
154         {
155                 if (empty($activity['worker-id'])) {
156                         return false;
157                 }
158                 return DBA::exists('workerqueue', ['id' => $activity['worker-id'], 'done' => false]);
159         }
160
161         /**
162          * Process the activity with the given id
163          *
164          * @param integer $id
165          *
166          * @return bool
167          */
168         public static function process(int $id): bool
169         {
170                 $entry = DBA::selectFirst('inbox-entry', [], ['id' => $id]);
171                 if (empty($entry)) {
172                         return false;
173                 }
174
175                 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']]);
176
177                 $activity = json_decode($entry['activity'], true);
178                 $type     = $entry['type'];
179                 $push     = $entry['push'];
180
181                 $activity['entry-id']        = $entry['id'];
182                 $activity['worker-id']       = $entry['wid'];
183                 $activity['recursion-depth'] = 0;
184
185                 $receivers = DBA::select('inbox-entry-receiver', ['uid'], ['queue-id' => $entry['id']]);
186                 while ($receiver = DBA::fetch($receivers)) {
187                         if (!in_array($receiver['uid'], $activity['receiver'])) {
188                                 $activity['receiver'][] = $receiver['uid'];
189                         }
190                 }
191                 DBA::close($receivers);
192
193                 if (!Receiver::routeActivities($activity, $type, $push)) {
194                         self::remove($activity);
195                 }
196
197                 return true;
198         }
199
200         /**
201          * Process all activities
202          *
203          * @return void
204          */
205         public static function processAll()
206         {
207                 $entries = DBA::select('inbox-entry', ['id', 'type', 'object-type', 'object-id', 'in-reply-to-id'], ["`trust` AND `wid` IS NULL"], ['order' => ['id' => true]]);
208                 while ($entry = DBA::fetch($entries)) {
209                         // We don't need to process entries that depend on already existing entries.
210                         if (!empty($entry['in-reply-to-id']) && DBA::exists('inbox-entry', ["`id` != ? AND `object-id` = ?", $entry['id'], $entry['in-reply-to-id']])) {
211                                 continue;
212                         }
213                         Logger::debug('Process leftover entry', $entry);
214                         self::process($entry['id']);
215                 }
216                 DBA::close($entries);
217         }
218
219         /**
220          * Clear old activities
221          *
222          * @return void
223          */
224         public static function clear()
225         {
226                 // We delete all entries that aren't associated with a worker entry after seven days.
227                 // The other entries are deleted when the worker deferred for too long.
228                 DBA::delete('inbox-entry', ["`wid` IS NULL AND `received` < ?", DateTimeFormat::utc('now - 7 days')]);
229
230                 // Optimizing this table only last seconds
231                 if (DI::config()->get('system', 'optimize_tables')) {
232                         Logger::info('Optimize start');
233                         DBA::e("OPTIMIZE TABLE `inbox-entry`");
234                         Logger::info('Optimize end');
235                 }
236         }
237
238         /**
239          * Process all activities that are children of a given post url
240          *
241          * @param string $uri
242          * @return int
243          */
244         public static function processReplyByUri(string $uri): int
245         {
246                 $count = 0;
247                 $entries = DBA::select('inbox-entry', ['id'], ["`in-reply-to-id` = ? AND `object-id` != ?", $uri, $uri]);
248                 while ($entry = DBA::fetch($entries)) {
249                         $count += 1;
250                         self::process($entry['id']);
251                 }
252                 DBA::close($entries);
253                 return $count;
254         }
255
256         /**
257          * Checks if there are children of the given uri
258          *
259          * @param string $uri
260          *
261          * @return bool
262          */
263         public static function hasChildren(string $uri): bool
264         {
265                 return DBA::exists('inbox-entry', ["`in-reply-to-id` = ? AND `object-id` != ?", $uri, $uri]);
266         }
267
268         /**
269          * Prepare the queue entry.
270          * This is a test function that is used solely for development.
271          *
272          * @param integer $id
273          * @return array
274          */
275         public static function reprepareActivityById(int $id): array
276         {
277                 $entry = DBA::selectFirst('inbox-entry', [], ['id' => $id]);
278                 if (empty($entry)) {
279                         return [];
280                 }
281
282                 $receiver = DBA::selectFirst('inbox-entry-receiver', ['uid'], ['queue-id' => $id]);
283                 if (!empty($receiver)) {
284                         $uid = $receiver['uid'];
285                 } else {
286                         $uid = 0;
287                 }
288
289                 $trust_source = $entry['trust'];
290
291                 $data     = json_decode($entry['activity'], true);
292                 $activity = json_decode($data['raw'], true);
293
294                 $ldactivity = JsonLD::compact($activity);
295                 return [
296                         'data'  => Receiver::prepareObjectData($ldactivity, $uid, $entry['push'], $trust_source),
297                         'trust' => $trust_source
298                 ];
299         }
300
301         /**
302          * Set the trust for all untrusted entries.
303          * This is a test function that is used solely for development.
304          *
305          * @return void
306          */
307         public static function reprepareAll()
308         {
309                 $entries = DBA::select('inbox-entry', ['id'], ["NOT `trust` AND `wid` IS NULL"], ['order' => ['id' => true]]);
310                 while ($entry = DBA::fetch($entries)) {
311                         $data = self::reprepareActivityById($entry['id'], false);
312                         if ($data['trust']) {
313                                 DBA::update('inbox-entry', ['trust' => true], ['id' => $entry['id']]);
314                         }
315                 }
316                 DBA::close($entries);
317
318         }
319 }