1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace App\Jobs\StatusPipeline;
- use App\Notification;
- use App\Status;
- 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 Illuminate\Support\Facades\Redis;
- use App\Services\NotificationService;
- class StatusReplyPipeline implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- protected $status;
- /**
- * 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)
- {
- $this->status = $status;
- }
- /**
- * Execute the job.
- *
- * @return void
- */
- public function handle()
- {
- $status = $this->status;
- $actor = $status->profile;
- $reply = Status::find($status->in_reply_to_id);
- if(!$actor || !$reply) {
- return 1;
- }
- $target = $reply->profile;
- $exists = Notification::whereProfileId($target->id)
- ->whereActorId($actor->id)
- ->whereIn('action', ['mention', 'comment'])
- ->whereItemId($status->id)
- ->whereItemType('App\Status')
- ->count();
- if ($actor->id === $target || $exists !== 0) {
- return 1;
- }
- DB::transaction(function() use($target, $actor, $status) {
- $notification = new Notification();
- $notification->profile_id = $target->id;
- $notification->actor_id = $actor->id;
- $notification->action = 'comment';
- $notification->message = $status->replyToText();
- $notification->rendered = $status->replyToHtml();
- $notification->item_id = $status->id;
- $notification->item_type = "App\Status";
- $notification->save();
- NotificationService::setNotification($notification);
- NotificationService::set($notification->profile_id, $notification->id);
- });
- return 1;
- }
- }
|