Skip to content

Commit

Permalink
Update PublicApiController, add state endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed Dec 14, 2020
1 parent cc515c1 commit 9fc5a80
Showing 1 changed file with 33 additions and 18 deletions.
51 changes: 33 additions & 18 deletions app/Http/Controllers/PublicApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,32 +92,47 @@ public function status(Request $request, $username, int $postid)
$item = new Fractal\Resource\Item($status, new StatusStatelessTransformer());
$res = [
'status' => $this->fractal->createData($item)->toArray(),
'user' => [],
'likes' => [],
'shares' => [],
'reactions' => [
'liked' => false,
'shared' => false,
'bookmarked' => false,
],
];
return response()->json($res, 200, [], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
return $res;
});
return $res;
return response()->json($res);
}
$item = new Fractal\Resource\Item($status, new StatusTransformer());
$item = new Fractal\Resource\Item($status, new StatusStatelessTransformer());
$res = [
'status' => $this->fractal->createData($item)->toArray(),
'user' => $this->getUserData($request->user()),
'likes' => $this->getLikes($status),
'shares' => $this->getShares($status),
];
return response()->json($res);
}

public function statusState(Request $request, $username, int $postid)
{
$profile = Profile::whereUsername($username)->whereNull('status')->firstOrFail();
$status = Status::whereProfileId($profile->id)->findOrFail($postid);
$this->scopeCheck($profile, $status);
if(!Auth::check()) {
$res = [
'user' => [],
'likes' => [],
'shares' => [],
'reactions' => [
'liked' => false,
'shared' => false,
'bookmarked' => false,
],
];
return response()->json($res);
}
$res = [
'user' => $this->getUserData($request->user()),
'likes' => [],
'shares' => [],
'reactions' => [
'liked' => $status->liked(),
'shared' => $status->shared(),
'bookmarked' => $status->bookmarked(),
'liked' => (bool) $status->liked(),
'shared' => (bool) $status->shared(),
'bookmarked' => (bool) $status->bookmarked(),
],
];
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
return response()->json($res);
}

public function statusComments(Request $request, $username, int $postId)
Expand Down

0 comments on commit 9fc5a80

Please sign in to comment.