blob: 923acd053c73225ea579f0e502b503c701f1e914 (
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\Users\Services;
use Exception;
use Illuminate\Auth\AuthManager;
use Illuminate\Database\DatabaseManager;
use Illuminate\Events\Dispatcher;
use Api\Users\Exceptions\UserNotFoundException;
use Api\Users\Events\UserWasCreated;
use Api\Users\Events\UserWasDeleted;
use Api\Users\Events\UserWasUpdated;
use Api\Users\Repositories\UserRepository;
class UserService
{
private $auth;
private $database;
private $dispatcher;
private $userRepository;
public function __construct(
AuthManager $auth,
DatabaseManager $database,
Dispatcher $dispatcher,
UserRepository $userRepository
) {
$this->auth = $auth;
$this->database = $database;
$this->dispatcher = $dispatcher;
$this->userRepository = $userRepository;
}
public function getAll($options = [])
{
return $this->userRepository->get($options);
}
public function getById($userId, array $options = [])
{
$user = $this->getRequestedUser($userId);
return $user;
}
public function create($data)
{
$user = $this->userRepository->create($data);
$this->dispatcher->fire(new UserWasCreated($user));
return $user;
}
public function update($userId, array $data)
{
$user = $this->getRequestedUser($userId);
$this->userRepository->update($user, $data);
$this->dispatcher->fire(new UserWasUpdated($user));
return $user;
}
public function delete($userId)
{
$user = $this->getRequestedUser($userId);
$this->userRepository->delete($userId);
$this->dispatcher->fire(new UserWasDeleted($user));
}
private function getRequestedUser($userId)
{
$user = $this->userRepository->getById($userId);
if (is_null($user)) {
throw new UserNotFoundException();
}
return $user;
}
}
|