瀏覽代碼

Update BookmarkController

Daniel Supernault 2 年之前
父節點
當前提交
ef56f92c3d
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11 0
      app/Http/Controllers/BookmarkController.php

+ 11 - 0
app/Http/Controllers/BookmarkController.php

@@ -7,6 +7,7 @@ use App\Status;
 use Auth;
 use Illuminate\Http\Request;
 use App\Services\BookmarkService;
+use App\Services\FollowerService;
 
 class BookmarkController extends Controller
 {
@@ -24,6 +25,16 @@ class BookmarkController extends Controller
         $profile = Auth::user()->profile;
         $status = Status::findOrFail($request->input('item'));
 
+        abort_if(!in_array($status->scope, ['public', 'unlisted', 'private']), 404);
+
+        if($status->scope == 'private') {
+            abort_if(
+                $profile->id !== $status->profile_id && !FollowerService::follows($profile->id, $status->profile_id),
+                404,
+                'Error: Cannot bookmark private posts from accounts you do not follow.'
+            );
+        }
+
         $bookmark = Bookmark::firstOrCreate(
             ['status_id' => $status->id], ['profile_id' => $profile->id]
         );