2022-12-13 07:27:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\InboxPipeline;
|
|
|
|
|
|
|
|
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\Inbox;
|
|
|
|
|
|
|
|
class ActivityHandler implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
protected $username;
|
|
|
|
protected $headers;
|
|
|
|
protected $payload;
|
|
|
|
|
|
|
|
public $timeout = 300;
|
|
|
|
public $tries = 1;
|
|
|
|
public $maxExceptions = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($headers, $username, $payload)
|
|
|
|
{
|
|
|
|
$this->username = $username;
|
|
|
|
$this->headers = $headers;
|
|
|
|
$this->payload = $payload;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2022-12-13 07:31:10 +00:00
|
|
|
(new Inbox($this->headers, $this->username, $this->payload))->handle();
|
2022-12-13 07:27:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|