blob: 812f638d68151dd5337ab6027f1f8e82b14c58cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
<?php
namespace Api\Posts\Services;
use Api\Posts\Events\PostWasCreated;
use Api\Posts\Events\PostWasDeleted;
use Api\Posts\Events\PostWasUpdated;
use Api\Posts\Exceptions\PostNotFoundException;
use Api\Posts\Models\Post;
use Api\Posts\Repositories\PostRepository;
use Illuminate\Auth\AuthManager;
use Illuminate\Database\DatabaseManager;
use Illuminate\Events\Dispatcher;
class PostService
{
private $auth;
private $database;
private $dispatcher;
private $postRepository;
public function __construct(
AuthManager $auth,
DatabaseManager $database,
Dispatcher $dispatcher,
PostRepository $postRepository
) {
$this->auth = $auth;
$this->database = $database;
$this->dispatcher = $dispatcher;
$this->postRepository = $postRepository;
}
public function getAll($options = [])
{
return $this->postRepository->get($options);
}
public function getById($postId, array $options = [])
{
$post = $this->getRequestedPost($postId);
return $post;
}
public function create($data)
{
$post = $this->postRepository->create($data);
$this->dispatcher->fire(new PostWasCreated($post));
return $post;
}
public function update($postId, array $data)
{
$post = $this->getRequestedPost($postId);
$this->postRepository->update($post, $data);
$this->dispatcher->fire(new PostWasUpdated($post));
return $post;
}
public function delete($postId)
{
$post = $this->getRequestedPost($postId);
$this->postRepository->delete($postId);
$this->dispatcher->fire(new PostWasDeleted($post));
}
private function getRequestedPost($postId)
{
$post = Post::with('post_type')->with('user')->where('id', $postId)->get();
if (is_null($post)) {
throw new PostNotFoundException();
}
return $post;
}
}
|