From e30618dd397dea1ca295feef537e01f97996e71c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 30 Aug 2018 17:40:19 +0200 Subject: Finished/optimized getting of posts --- api/Posts/Repositories/PostRepository.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'api/Posts/Repositories/PostRepository.php') diff --git a/api/Posts/Repositories/PostRepository.php b/api/Posts/Repositories/PostRepository.php index 9954af9..1f035b7 100644 --- a/api/Posts/Repositories/PostRepository.php +++ b/api/Posts/Repositories/PostRepository.php @@ -12,6 +12,33 @@ class PostRepository extends Repository return new Post(); } + public function getJoined($options) + { + $query = Post::query()->with('user')->with('post_type'); + $this->applyResourceOptions($query, $options); + $posts = $query->get(); + $joinedPosts = []; + + foreach ($posts as $post) { + $postType = 'Api\Posts\Models\\' . $post["post_type"]["type"] . 'Post'; + $postTypeClass = new $postType(); + $post["post"] = $postTypeClass::query()->where('id', $post->id)->first(); + array_push($joinedPosts, $post); + } + return $joinedPosts; + } + + public function getJoinedById($postId) + { + $query = Post::query()->with('user')->with('post_type')->where('id', $postId); + $post = $query->first(); + + $postType = 'Api\Posts\Models\\' . $post["post_type"]["type"] . 'Post'; + $postTypeClass = new $postType(); + $post["post"] = $postTypeClass::query()->where('id', $post["id"])->first(); + return $post; + } + public function create(array $data) { $post = $this->getModel(); -- cgit v1.2.3