1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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()
- {
- (new Inbox($this->headers, $this->username, $this->payload))->handle();
- return;
- }
- }
|