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.
144 lines
4.2 KiB
PHP
144 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\CommentPipeline;
|
|
|
|
use App\Notification;
|
|
use App\Services\NotificationService;
|
|
use App\Services\StatusService;
|
|
use App\Status;
|
|
use App\UserFilter;
|
|
use Cache;
|
|
use DB;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Log;
|
|
|
|
class CommentPipeline implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $status;
|
|
|
|
protected $comment;
|
|
|
|
/**
|
|
* 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, Status $comment)
|
|
{
|
|
$this->status = $status;
|
|
$this->comment = $comment;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$status = $this->status;
|
|
$comment = $this->comment;
|
|
|
|
// Verify status and comment exists
|
|
if (! $status) {
|
|
Log::info('CommentPipeline: Status no longer exists, skipping job');
|
|
|
|
return;
|
|
}
|
|
if (! $comment) {
|
|
Log::info('CommentPipeline: Comment no longer exists, skipping job');
|
|
|
|
return;
|
|
}
|
|
|
|
$target = $status->profile;
|
|
$actor = $comment->profile;
|
|
|
|
// Verify target and actor profiles exist
|
|
if (! $target) {
|
|
Log::info("CommentPipeline: Target profile no longer exists for status {$status->id}, skipping job");
|
|
|
|
return;
|
|
}
|
|
if (! $actor) {
|
|
Log::info("CommentPipeline: Actor profile no longer exists for comment {$comment->id}, skipping job");
|
|
|
|
return;
|
|
}
|
|
|
|
if (config('database.default') === 'mysql') {
|
|
// todo: refactor
|
|
// $exp = DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)");
|
|
// $expQuery = $exp->getValue(DB::connection()->getQueryGrammar());
|
|
// $count = DB::select($expQuery, [ 'kid' => $status->id ]);
|
|
// $status->reply_count = count($count);
|
|
$status->reply_count = $status->reply_count + 1;
|
|
$status->save();
|
|
} else {
|
|
$status->reply_count = $status->reply_count + 1;
|
|
$status->save();
|
|
}
|
|
|
|
StatusService::del($comment->id);
|
|
StatusService::del($status->id);
|
|
Cache::forget('status:replies:all:'.$comment->id);
|
|
Cache::forget('status:replies:all:'.$status->id);
|
|
|
|
if ($actor->id === $target->id || $status->comments_disabled == true) {
|
|
return true;
|
|
}
|
|
|
|
$filtered = UserFilter::whereUserId($target->id)
|
|
->whereFilterableType('App\Profile')
|
|
->whereIn('filter_type', ['mute', 'block'])
|
|
->whereFilterableId($actor->id)
|
|
->exists();
|
|
|
|
if ($filtered == true) {
|
|
return;
|
|
}
|
|
|
|
if ($target->user_id && $target->domain === null) {
|
|
DB::transaction(function () use ($target, $actor, $comment) {
|
|
$notification = new Notification;
|
|
$notification->profile_id = $target->id;
|
|
$notification->actor_id = $actor->id;
|
|
$notification->action = 'comment';
|
|
$notification->item_id = $comment->id;
|
|
$notification->item_type = "App\Status";
|
|
$notification->save();
|
|
|
|
NotificationService::setNotification($notification);
|
|
NotificationService::set($notification->profile_id, $notification->id);
|
|
StatusService::del($comment->id);
|
|
});
|
|
}
|
|
|
|
if ($exists = Cache::get('status:replies:all:'.$status->id)) {
|
|
if ($exists && $exists->count() == 3) {
|
|
} else {
|
|
Cache::forget('status:replies:all:'.$status->id);
|
|
}
|
|
} else {
|
|
Cache::forget('status:replies:all:'.$status->id);
|
|
}
|
|
}
|
|
}
|