2022-07-21 07:16:14 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2024-01-02 21:57:26 +01:00
|
|
|
* @copyright Copyright (C) 2010-2024, the Friendica project
|
2022-07-21 07:16:14 +02:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Logger;
|
2022-07-21 08:23:55 +02:00
|
|
|
use Friendica\Core\Worker;
|
2022-07-24 11:26:52 +02:00
|
|
|
use Friendica\DI;
|
2022-07-21 07:16:14 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2022-07-21 09:08:17 +02:00
|
|
|
use Friendica\Protocol\ActivityPub\Queue;
|
2022-07-21 07:16:14 +02:00
|
|
|
use Friendica\Protocol\ActivityPub\Receiver;
|
|
|
|
|
|
|
|
class FetchMissingActivity
|
|
|
|
{
|
2023-10-29 13:51:26 +01:00
|
|
|
const WORKER_DEFER_LIMIT = 5;
|
|
|
|
|
2022-07-21 07:16:14 +02:00
|
|
|
/**
|
|
|
|
* Fetch missing activities
|
|
|
|
* @param string $url Contact URL
|
2022-07-24 15:11:52 +02:00
|
|
|
*
|
2022-07-24 11:26:52 +02:00
|
|
|
* @return void
|
2022-07-21 07:16:14 +02:00
|
|
|
*/
|
|
|
|
public static function execute(string $url, array $child = [], string $relay_actor = '', int $completion = Receiver::COMPLETION_MANUAL)
|
|
|
|
{
|
|
|
|
Logger::info('Start fetching missing activity', ['url' => $url]);
|
|
|
|
$result = ActivityPub\Processor::fetchMissingActivity($url, $child, $relay_actor, $completion);
|
2022-07-21 08:23:55 +02:00
|
|
|
if ($result) {
|
|
|
|
Logger::info('Successfully fetched missing activity', ['url' => $url]);
|
2023-11-09 07:43:03 +01:00
|
|
|
} elseif (is_null($result)) {
|
|
|
|
Logger::info('Permament error, activity could not be fetched', ['url' => $url]);
|
2023-10-29 13:51:26 +01:00
|
|
|
} elseif (!Worker::defer(self::WORKER_DEFER_LIMIT)) {
|
2023-11-09 07:43:03 +01:00
|
|
|
Logger::info('Defer limit reached, activity could not be fetched', ['url' => $url]);
|
2022-07-24 11:26:52 +02:00
|
|
|
|
|
|
|
// recursively delete all entries that belong to this worker task
|
|
|
|
$queue = DI::app()->getQueue();
|
|
|
|
if (!empty($queue['id'])) {
|
|
|
|
Queue::deleteByWorkerId($queue['id']);
|
|
|
|
}
|
2022-07-21 08:23:55 +02:00
|
|
|
} else {
|
|
|
|
Logger::info('Fetching deferred', ['url' => $url]);
|
|
|
|
}
|
2022-07-21 07:16:14 +02:00
|
|
|
}
|
|
|
|
}
|