mirror of https://github.com/pixelfed/pixelfed.git
43 lines
984 B
PHP
43 lines
984 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Jobs\DirectPipeline;
|
||
|
|
||
|
use Illuminate\Bus\Queueable;
|
||
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||
|
use Illuminate\Queue\InteractsWithQueue;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
use App\Util\ActivityPub\Helpers;
|
||
|
|
||
|
class DirectDeletePipeline implements ShouldQueue
|
||
|
{
|
||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||
|
|
||
|
public $timeout = 900;
|
||
|
public $tries = 3;
|
||
|
public $maxExceptions = 1;
|
||
|
|
||
|
protected $profile;
|
||
|
protected $url;
|
||
|
protected $payload;
|
||
|
|
||
|
/**
|
||
|
* Create a new job instance.
|
||
|
*/
|
||
|
public function __construct($profile, $url, $payload)
|
||
|
{
|
||
|
$this->profile = $profile;
|
||
|
$this->url = $url;
|
||
|
$this->payload = $payload;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Execute the job.
|
||
|
*/
|
||
|
public function handle(): void
|
||
|
{
|
||
|
Helpers::sendSignedObject($this->profile, $this->url, $this->payload);
|
||
|
}
|
||
|
}
|