mirror of https://github.com/pixelfed/pixelfed.git
Update Inbox, add delay to move handler to allow for remote cache invalidation
This commit is contained in:
parent
12a0d2e8bf
commit
8a362c12a9
|
@ -42,9 +42,11 @@ use App\Util\ActivityPub\Validator\MoveValidator;
|
||||||
use App\Util\ActivityPub\Validator\UpdatePersonValidator;
|
use App\Util\ActivityPub\Validator\UpdatePersonValidator;
|
||||||
use Cache;
|
use Cache;
|
||||||
use Illuminate\Support\Facades\Bus;
|
use Illuminate\Support\Facades\Bus;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Purify;
|
use Purify;
|
||||||
use Storage;
|
use Storage;
|
||||||
|
use Throwable;
|
||||||
|
|
||||||
class Inbox
|
class Inbox
|
||||||
{
|
{
|
||||||
|
@ -144,7 +146,8 @@ class Inbox
|
||||||
|
|
||||||
case 'Move':
|
case 'Move':
|
||||||
if (MoveValidator::validate($this->payload) == false) {
|
if (MoveValidator::validate($this->payload) == false) {
|
||||||
\Log::info('[AP][INBOX][MOVE] VALIDATE_FAILURE '.json_encode($this->payload));
|
Log::info('[AP][INBOX][MOVE] VALIDATE_FAILURE '.json_encode($this->payload));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$this->handleMoveActivity();
|
$this->handleMoveActivity();
|
||||||
|
@ -1366,7 +1369,8 @@ class Inbox
|
||||||
! Helpers::validateUrl($activity) ||
|
! Helpers::validateUrl($activity) ||
|
||||||
! Helpers::validateUrl($target)
|
! Helpers::validateUrl($target)
|
||||||
) {
|
) {
|
||||||
\Log::info('[AP][INBOX][MOVE] validateUrl fail');
|
Log::info('[AP][INBOX][MOVE] validateUrl fail');
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1375,6 +1379,12 @@ class Inbox
|
||||||
new MoveMigrateFollowersPipeline($target, $activity),
|
new MoveMigrateFollowersPipeline($target, $activity),
|
||||||
new UnfollowLegacyAccountMovePipeline($target, $activity),
|
new UnfollowLegacyAccountMovePipeline($target, $activity),
|
||||||
new CleanupLegacyAccountMovePipeline($target, $activity),
|
new CleanupLegacyAccountMovePipeline($target, $activity),
|
||||||
])->onQueue('move')->dispatch();
|
])
|
||||||
|
->catch(function (Throwable $e) {
|
||||||
|
Log::error($e);
|
||||||
|
})
|
||||||
|
->onQueue('move')
|
||||||
|
->dispatch()
|
||||||
|
->delay(now()->addMinutes(random_int(5, 9)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue