aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/Posts/Repositories/PostRepository.php
diff options
context:
space:
mode:
authorMarvin Borner2018-08-30 17:40:19 +0200
committerMarvin Borner2018-08-30 17:40:19 +0200
commite30618dd397dea1ca295feef537e01f97996e71c (patch)
tree64e912fcf2b21c9723b28d7f00c6d43eeccf552e /api/Posts/Repositories/PostRepository.php
parent4df4ae5b8eb97d5557bbd4f839416abded27495d (diff)
Finished/optimized getting of posts
Diffstat (limited to 'api/Posts/Repositories/PostRepository.php')
-rw-r--r--api/Posts/Repositories/PostRepository.php27
1 files changed, 27 insertions, 0 deletions
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();