1
0
Fork 0
pixelfed/app/Jobs/FollowPipeline/FollowPipeline.php

76 lines
1.6 KiB
PHP
Raw Normal View History

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;
2019-12-11 06:04:03 +00:00
use Illuminate\Support\Facades\Redis;
2018-05-30 02:58:41 +00:00
class FollowPipeline implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2018-05-30 02:58:41 +00:00
protected $follower;
2018-05-30 02:58:41 +00:00
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($follower)
{
$this->follower = $follower;
}
2018-05-30 02:58:41 +00:00
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$follower = $this->follower;
$actor = $follower->actor;
$target = $follower->target;
2018-05-30 02:58:41 +00:00
Cache::forget('profile:following:' . $actor->id);
Cache::forget('profile:following:' . $target->id);
2019-04-04 19:42:12 +00:00
if($target->domain || !$target->private_key) {
return;
}
2018-05-30 02:58:41 +00:00
try {
$notification = new Notification();
$notification->profile_id = $target->id;
$notification->actor_id = $actor->id;
$notification->action = 'follow';
$notification->message = $follower->toText();
$notification->rendered = $follower->toHtml();
$notification->item_id = $target->id;
$notification->item_type = "App\Profile";
$notification->save();
2018-05-30 02:58:41 +00:00
$redis = Redis::connection();
$nkey = config('cache.prefix').':user.'.$target->id.'.notifications';
$redis->lpush($nkey, $notification->id);
} catch (Exception $e) {
Log::error($e);
}
}
2018-05-30 02:58:41 +00:00
}