diff --git a/app/Http/Controllers/PublicApiController.php b/app/Http/Controllers/PublicApiController.php new file mode 100644 index 00000000..7c28fa3a --- /dev/null +++ b/app/Http/Controllers/PublicApiController.php @@ -0,0 +1,98 @@ +middleware('throttle:200, 15'); + $this->fractal = new Fractal\Manager(); + $this->fractal->setSerializer(new ArraySerializer()); + } + + protected function getUserData() + { + if(false == Auth::check()) { + return []; + } else { + $profile = Auth::user()->profile; + $user = new Fractal\Resource\Item($profile, new AccountTransformer()); + return $this->fractal->createData($user)->toArray(); + } + } + + public function status(Request $request, $username, int $postid) + { + $profile = Profile::whereUsername($username)->first(); + $status = Status::whereProfileId($profile->id)->find($postid); + $status = new Fractal\Resource\Item($status, new StatusTransformer()); + $res = [ + 'status' => $this->fractal->createData($status)->toArray(), + 'user' => $this->getUserData() + ]; + return response()->json($res, 200, [], JSON_PRETTY_PRINT); + } + + public function statusComments(Request $request, $username, int $postId) + { + $this->validate($request, [ + 'min_id' => 'nullable|integer|min:1', + 'max_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX, + 'limit' => 'nullable|integer|min:5|max:50' + ]); + $limit = $request->limit ?? 10; + $profile = Profile::whereUsername($username)->first(); + $status = Status::whereProfileId($profile->id)->find($postId); + if($request->filled('min_id') || $request->filled('max_id')) { + if($request->filled('min_id')) { + $replies = $status->comments() + ->select('id', 'caption', 'rendered', 'profile_id', 'in_reply_to_id', 'created_at') + ->where('id', '>=', $request->min_id) + ->orderBy('id', 'desc') + ->paginate($limit); + } + if($request->filled('max_id')) { + $replies = $status->comments() + ->select('id', 'caption', 'rendered', 'profile_id', 'in_reply_to_id', 'created_at') + ->where('id', '<=', $request->max_id) + ->orderBy('id', 'desc') + ->paginate($limit); + } + } else { + $replies = $status->comments() + ->select('id', 'caption', 'rendered', 'profile_id', 'in_reply_to_id', 'created_at') + ->orderBy('id', 'desc') + ->paginate($limit); + } + + $resource = new Fractal\Resource\Collection($replies, new StatusTransformer(), 'data'); + $resource->setPaginator(new IlluminatePaginatorAdapter($replies)); + $res = $this->fractal->createData($resource)->toArray(); + return response()->json($res, 200, [], JSON_PRETTY_PRINT); + } +}