|
1
|
|
|
<?php |
|
2
|
|
|
|
|
|
|
|
|
|
3
|
|
|
namespace BristolSU\ControlDB\Observers\NotifyObservers; |
|
4
|
|
|
|
|
5
|
|
|
use BristolSU\ControlDB\Contracts\Repositories\DataGroup as DataGroupRepository; |
|
6
|
|
|
use BristolSU\ControlDB\Observers\NotifyObservers\Framework\Notifier; |
|
7
|
|
|
use BristolSU\ControlDB\Observers\NotifyObservers\Framework\ObserverStore; |
|
8
|
|
|
use Illuminate\Support\Collection; |
|
9
|
|
|
|
|
10
|
|
|
class DataGroupNotifier extends Notifier implements DataGroupRepository |
|
|
|
|
|
|
11
|
|
|
{ |
|
12
|
|
|
|
|
13
|
|
|
/** |
|
|
|
|
|
|
14
|
|
|
* @var DataGroupRepository |
|
15
|
|
|
*/ |
|
16
|
|
|
private $dataGroupRepository; |
|
|
|
|
|
|
17
|
|
|
|
|
18
|
15 |
|
public function __construct(DataGroupRepository $dataGroupRepository, ObserverStore $observerStore) |
|
|
|
|
|
|
19
|
|
|
{ |
|
20
|
15 |
|
parent::__construct($observerStore, DataGroupRepository::class); |
|
21
|
15 |
|
$this->dataGroupRepository = $dataGroupRepository; |
|
22
|
15 |
|
} |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Get a data group by ID |
|
26
|
|
|
* |
|
27
|
|
|
* @param int $id |
|
|
|
|
|
|
28
|
|
|
* @return \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
|
|
|
|
|
29
|
|
|
*/ |
|
30
|
15 |
|
public function getById(int $id): \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
31
|
|
|
{ |
|
32
|
15 |
|
return $this->dataGroupRepository->getById($id); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* Get a data group where the given attributes match, including additional attributes. |
|
37
|
|
|
* |
|
38
|
|
|
* @param array $attributes |
|
|
|
|
|
|
39
|
|
|
* @return \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
|
|
|
|
|
40
|
|
|
*/ |
|
41
|
|
|
public function getWhere($attributes = []): \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
42
|
|
|
{ |
|
43
|
|
|
return $this->dataGroupRepository->getWhere($attributes); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* Get all data groups where the given attributes match, including additional attributes. |
|
48
|
|
|
* |
|
49
|
|
|
* @param array $attributes |
|
|
|
|
|
|
50
|
|
|
* @return Collection|\BristolSU\ControlDB\Contracts\Models\DataGroup[] |
|
|
|
|
|
|
51
|
|
|
*/ |
|
52
|
|
|
public function getAllWhere($attributes = []): Collection |
|
53
|
|
|
{ |
|
54
|
|
|
return $this->dataGroupRepository->getAllWhere($attributes); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* Create a group with the given attributes |
|
59
|
|
|
* |
|
60
|
|
|
* @param string|null $name Name of the group |
|
|
|
|
|
|
61
|
|
|
* @param string|null $email Email of the group |
|
62
|
|
|
* @return \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
|
|
|
|
|
63
|
|
|
*/ |
|
64
|
2 |
|
public function create(?string $name = null, ?string $email = null): \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
65
|
|
|
{ |
|
66
|
2 |
|
$dataGroup = $this->dataGroupRepository->create($name, $email); |
|
67
|
2 |
|
$this->notify('create', $dataGroup); |
|
68
|
2 |
|
return $dataGroup; |
|
69
|
|
|
} |
|
70
|
|
|
|
|
71
|
|
|
/** |
|
72
|
|
|
* Update a group with the given attributes |
|
73
|
|
|
* |
|
74
|
|
|
* @param int $id |
|
|
|
|
|
|
75
|
|
|
* @param string|null $name Name of the group |
|
|
|
|
|
|
76
|
|
|
* @param string|null $email Email of the group |
|
77
|
|
|
* @return \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
|
|
|
|
|
78
|
|
|
*/ |
|
79
|
4 |
|
public function update(int $id, ?string $name = null, ?string $email = null): \BristolSU\ControlDB\Contracts\Models\DataGroup |
|
80
|
|
|
{ |
|
81
|
4 |
|
$oldDataGroup = $this->getById($id); |
|
82
|
4 |
|
$newDataGroup = $this->dataGroupRepository->update($id, $name, $email); |
|
83
|
4 |
|
$this->notify('update', $oldDataGroup, $newDataGroup); |
|
84
|
4 |
|
return $newDataGroup; |
|
85
|
|
|
} |
|
86
|
|
|
} |