From 605774cad4fcda94dcb315fb685e3dd804d05a0b Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 24 Dec 2018 23:52:42 -0700 Subject: [PATCH] Update Api --- app/Http/Controllers/PublicApiController.php | 5 +++++ app/Util/ActivityPub/Inbox.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/PublicApiController.php b/app/Http/Controllers/PublicApiController.php index 779716fe3..267d2600f 100644 --- a/app/Http/Controllers/PublicApiController.php +++ b/app/Http/Controllers/PublicApiController.php @@ -72,6 +72,9 @@ class PublicApiController extends Controller return []; } else { $profile = Auth::user()->profile; + if($profile->status) { + return []; + } $shares = $status->sharedBy()->orderBy('created_at','desc')->paginate(10); $collection = new Fractal\Resource\Collection($shares, new AccountTransformer()); return $this->fractal->createData($collection)->toArray(); @@ -112,6 +115,7 @@ class PublicApiController extends Controller if($request->filled('min_id') || $request->filled('max_id')) { if($request->filled('min_id')) { $replies = $status->comments() + ->whereNull('reblog_of_id') ->select('id', 'caption', 'rendered', 'profile_id', 'in_reply_to_id', 'created_at') ->where('id', '>=', $request->min_id) ->orderBy('id', 'desc') @@ -119,6 +123,7 @@ class PublicApiController extends Controller } if($request->filled('max_id')) { $replies = $status->comments() + ->whereNull('reblog_of_id') ->select('id', 'caption', 'rendered', 'profile_id', 'in_reply_to_id', 'created_at') ->where('id', '<=', $request->max_id) ->orderBy('id', 'desc') diff --git a/app/Util/ActivityPub/Inbox.php b/app/Util/ActivityPub/Inbox.php index 48a7e443f..db3ab9f75 100644 --- a/app/Util/ActivityPub/Inbox.php +++ b/app/Util/ActivityPub/Inbox.php @@ -328,7 +328,7 @@ class Inbox $parent = Helpers::statusFirstOrFetch($obj['object']); $status = Status::whereProfileId($profile->id) ->whereReblogOfId($parent->id) - ->first(); + ->firstOrFail(); Notification::whereProfileId($parent->profile->id) ->whereActorId($profile->id) ->whereAction('share')