mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.9 KiB
PHP
68 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\StatusPipeline;
|
|
|
|
use App\Media;
|
|
use App\Status;
|
|
use Cache;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Redis;
|
|
|
|
class NewStatusPipeline implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $status;
|
|
|
|
/**
|
|
* Delete the job if its models no longer exist.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
public $timeout = 5;
|
|
public $tries = 1;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Status $status)
|
|
{
|
|
$this->status = $status;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
if (!Status::where('id', $this->status->id)->exists()) {
|
|
// The status has already been deleted by the time the job is running
|
|
// Don't publish the status, and just no-op
|
|
return;
|
|
}
|
|
if (config_cache('pixelfed.cloud_storage') && !config('pixelfed.media_fast_process')) {
|
|
$still_processing = Media::whereStatusId($this->status->id)
|
|
->whereNull('cdn_url')
|
|
->exists();
|
|
if ($still_processing) {
|
|
// The media items in the status are still being processed.
|
|
// We can't publish the status to ActivityPub because the final remote URL is not
|
|
// yet known. Instead, do nothing here. The media pipeline will re-call the NewStatusPipeline
|
|
// once all media items are finished processing
|
|
return;
|
|
}
|
|
}
|
|
StatusEntityLexer::dispatch($this->status);
|
|
}
|
|
}
|