friendica/src/Worker/FetchMissingActivity.php

60 lines
1.9 KiB
PHP
Raw Normal View History

2022-07-21 05:16:14 +00:00
<?php
/**
2023-01-01 14:36:24 +00:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2022-07-21 05:16:14 +00: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 06:23:55 +00:00
use Friendica\Core\Worker;
2022-07-24 09:26:52 +00:00
use Friendica\DI;
2022-07-21 05:16:14 +00:00
use Friendica\Protocol\ActivityPub;
2022-07-21 07:08:17 +00:00
use Friendica\Protocol\ActivityPub\Queue;
2022-07-21 05:16:14 +00:00
use Friendica\Protocol\ActivityPub\Receiver;
class FetchMissingActivity
{
const WORKER_DEFER_LIMIT = 5;
2022-07-21 05:16:14 +00:00
/**
* Fetch missing activities
* @param string $url Contact URL
2022-07-24 13:11:52 +00:00
*
2022-07-24 09:26:52 +00:00
* @return void
2022-07-21 05:16:14 +00: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 06:23:55 +00:00
if ($result) {
Logger::info('Successfully fetched missing activity', ['url' => $url]);
} elseif (!Worker::defer(self::WORKER_DEFER_LIMIT)) {
2022-07-21 06:23:55 +00:00
Logger::info('Activity could not be fetched', ['url' => $url]);
2022-07-24 09:26:52 +00: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 06:23:55 +00:00
} else {
Logger::info('Fetching deferred', ['url' => $url]);
}
2022-07-21 05:16:14 +00:00
}
}