pixelfed/app/Jobs/FollowPipeline/FollowPipeline.php

64 wiersze
1.6 KiB
PHP
Czysty Zwykły widok Historia

2018-05-30 02:58:41 +00:00
<?php
namespace App\Jobs\FollowPipeline;
2018-08-28 03:07:36 +00:00
use App\Notification;
use Cache;
2018-05-30 02:58:41 +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 Log;
use Redis;
2018-05-30 02:58:41 +00:00
class FollowPipeline implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $follower;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($follower)
{
$this->follower = $follower;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$follower = $this->follower;
$actor = $follower->actor;
$target = $follower->target;
try {
2018-08-28 03:07:36 +00:00
$notification = new Notification();
2018-05-30 02:58:41 +00:00
$notification->profile_id = $target->id;
$notification->actor_id = $actor->id;
$notification->action = 'follow';
$notification->message = $follower->toText();
$notification->rendered = $follower->toHtml();
2018-06-04 08:16:33 +00:00
$notification->item_id = $target->id;
$notification->item_type = "App\Profile";
2018-05-30 02:58:41 +00:00
$notification->save();
2018-08-28 03:07:36 +00:00
Cache::forever('notification.'.$notification->id, $notification);
2018-05-30 02:58:41 +00:00
$redis = Redis::connection();
2018-08-28 03:07:36 +00:00
$nkey = config('cache.prefix').':user.'.$target->id.'.notifications';
2018-05-30 02:58:41 +00:00
$redis->lpush($nkey, $notification->id);
} catch (Exception $e) {
Log::error($e);
}
}
}