2018-05-30 02:58:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\FollowPipeline;
|
|
|
|
|
2023-03-03 11:08:29 +00:00
|
|
|
use App\Follower;
|
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;
|
2023-03-03 11:08:29 +00:00
|
|
|
use App\Services\AccountService;
|
|
|
|
use App\Services\FollowerService;
|
2018-05-30 02:58:41 +00:00
|
|
|
|
|
|
|
class FollowPipeline implements ShouldQueue
|
|
|
|
{
|
2023-07-14 07:38:36 +00:00
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2018-05-30 02:58:41 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
protected $follower;
|
2018-05-30 02:58:41 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
/**
|
|
|
|
* Delete the job if its models no longer exist.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $deleteWhenMissingModels = true;
|
2018-05-30 02:58:41 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($follower)
|
|
|
|
{
|
|
|
|
$this->follower = $follower;
|
|
|
|
}
|
2018-05-30 02:58:41 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$follower = $this->follower;
|
|
|
|
$actor = $follower->actor;
|
|
|
|
$target = $follower->target;
|
2023-03-03 11:08:29 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
if(!$actor || !$target) {
|
|
|
|
return;
|
|
|
|
}
|
2019-04-04 19:42:12 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
if($target->domain || !$target->private_key) {
|
|
|
|
return;
|
|
|
|
}
|
2023-03-03 11:08:29 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
Cache::forget('profile:following:' . $actor->id);
|
|
|
|
Cache::forget('profile:following:' . $target->id);
|
2023-03-03 11:08:29 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
FollowerService::add($actor->id, $target->id);
|
2023-03-03 11:08:29 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
$count = Follower::whereProfileId($actor->id)->count();
|
|
|
|
$actor->following_count = $count;
|
|
|
|
$actor->save();
|
|
|
|
AccountService::del($actor->id);
|
2018-05-30 02:58:41 +00:00
|
|
|
|
2023-07-14 07:38:36 +00:00
|
|
|
$count = Follower::whereFollowingId($target->id)->count();
|
|
|
|
$target->followers_count = $count;
|
|
|
|
$target->save();
|
|
|
|
AccountService::del($target->id);
|
|
|
|
|
2024-02-04 14:18:05 +00:00
|
|
|
if($target->user_id && $target->domain === null) {
|
|
|
|
try {
|
|
|
|
$notification = new Notification();
|
|
|
|
$notification->profile_id = $target->id;
|
|
|
|
$notification->actor_id = $actor->id;
|
|
|
|
$notification->action = 'follow';
|
|
|
|
$notification->item_id = $target->id;
|
|
|
|
$notification->item_type = "App\Profile";
|
|
|
|
$notification->save();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
Log::error($e);
|
|
|
|
}
|
2023-07-14 07:38:36 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-30 02:58:41 +00:00
|
|
|
}
|