瀏覽代碼

Add SharePipeline job

Daniel Supernault 6 年之前
父節點
當前提交
243c62e73f
共有 1 個文件被更改,包括 79 次插入0 次删除
  1. 79 0
      app/Jobs/SharePipeline/SharePipeline.php

+ 79 - 0
app/Jobs/SharePipeline/SharePipeline.php

@@ -0,0 +1,79 @@
+<?php
+
+namespace App\Jobs\SharePipeline;
+
+use App\Status;
+use App\Notification;
+use Cache;
+use Illuminate\Bus\Queueable;
+use Illuminate\Contracts\Queue\ShouldQueue;
+use Illuminate\Foundation\Bus\Dispatchable;
+use Illuminate\Queue\InteractsWithQueue;
+use Illuminate\Queue\SerializesModels;
+use Log;
+use Redis;
+
+class SharePipeline implements ShouldQueue
+{
+    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
+
+    protected $like;
+
+    /**
+     * 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 = $this->status->profile;
+        $target = $this->status->parent()->profile;
+
+        if ($status->url !== null) {
+            // Ignore notifications to remote statuses
+            return;
+        }
+
+        $exists = Notification::whereProfileId($status->profile_id)
+                  ->whereActorId($actor->id)
+                  ->whereAction('like')
+                  ->whereItemId($status->id)
+                  ->whereItemType('App\Status')
+                  ->count();
+
+        if ($actor->id === $status->profile_id || $exists !== 0) {
+            return true;
+        }
+
+        try {
+            $notification = new Notification();
+            $notification->profile_id = $status->profile_id;
+            $notification->actor_id = $actor->id;
+            $notification->action = 'like';
+            $notification->message = $like->toText();
+            $notification->rendered = $like->toHtml();
+            $notification->item_id = $status->id;
+            $notification->item_type = "App\Status";
+            $notification->save();
+
+            Cache::forever('notification.'.$notification->id, $notification);
+
+            $redis = Redis::connection();
+            $key = config('cache.prefix').':user.'.$status->profile_id.'.notifications';
+            $redis->lpush($key, $notification->id);
+        } catch (Exception $e) {
+            Log::error($e);
+        }
+    }
+}