pixelfed/app/Jobs/StatusPipeline/NewStatusPipeline.php

48 wiersze
1.0 KiB
PHP
Czysty Zwykły widok Historia

2018-06-01 03:14:46 +00:00
<?php
namespace App\Jobs\StatusPipeline;
2018-08-28 03:07:36 +00:00
use App\Status;
use Cache;
2018-06-01 03:14:46 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
2018-08-28 03:07:36 +00:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Redis;
2018-06-01 03:14:46 +00:00
class NewStatusPipeline implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $status;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Status $status)
2018-06-01 03:14:46 +00:00
{
$this->status = $status;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$status = $this->status;
StatusEntityLexer::dispatch($status);
//StatusActivityPubDeliver::dispatch($status);
2018-08-28 03:07:36 +00:00
Cache::forever('post.'.$status->id, $status);
2018-06-01 03:14:46 +00:00
$redis = Redis::connection();
2018-08-28 03:07:36 +00:00
$redis->lpush(config('cache.prefix').':user.'.$status->profile_id.'.posts', $status->id);
2018-06-01 03:14:46 +00:00
}
}