1
|
|
|
<?php |
2
|
|
|
|
|
|
|
|
3
|
|
|
namespace BristolSU\ControlDB\Cache; |
4
|
|
|
|
5
|
|
|
use BristolSU\ControlDB\Contracts\Models\Role as RoleModel; |
6
|
|
|
use BristolSU\ControlDB\Contracts\Repositories\Role as RoleRepositoryContract; |
7
|
|
|
use Illuminate\Contracts\Cache\Repository; |
8
|
|
|
use Illuminate\Support\Collection; |
9
|
|
|
|
10
|
|
|
class Role implements RoleRepositoryContract |
|
|
|
|
11
|
|
|
{ |
12
|
|
|
|
13
|
|
|
/** |
|
|
|
|
14
|
|
|
* @var RoleRepositoryContract |
15
|
|
|
*/ |
16
|
|
|
private $roleRepository; |
|
|
|
|
17
|
|
|
/** |
|
|
|
|
18
|
|
|
* @var Repository |
19
|
|
|
*/ |
20
|
|
|
private $cache; |
|
|
|
|
21
|
|
|
|
22
|
33 |
|
public function __construct(RoleRepositoryContract $roleRepository, Repository $cache) |
|
|
|
|
23
|
|
|
{ |
24
|
33 |
|
$this->roleRepository = $roleRepository; |
25
|
33 |
|
$this->cache = $cache; |
26
|
33 |
|
} |
27
|
|
|
|
28
|
|
|
/** |
|
|
|
|
29
|
|
|
* @inheritDoc |
30
|
|
|
*/ |
|
|
|
|
31
|
22 |
|
public function getById(int $id): RoleModel |
32
|
|
|
{ |
33
|
|
|
return $this->cache->remember(static::class . '@getById:' . $id, 5000, function() use ($id) { |
|
|
|
|
34
|
22 |
|
return $this->roleRepository->getById($id); |
35
|
22 |
|
}); |
|
|
|
|
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
/** |
|
|
|
|
39
|
|
|
* @inheritDoc |
40
|
|
|
*/ |
|
|
|
|
41
|
1 |
|
public function all(): Collection |
42
|
|
|
{ |
43
|
1 |
|
return $this->roleRepository->all(); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
|
|
|
|
47
|
|
|
* @inheritDoc |
48
|
|
|
*/ |
|
|
|
|
49
|
2 |
|
public function getByDataProviderId(int $dataProviderId): RoleModel |
50
|
|
|
{ |
51
|
|
|
return $this->cache->remember(static::class . '@getByDataProviderId:' . $dataProviderId, 5000, function() use ($dataProviderId) { |
|
|
|
|
52
|
2 |
|
return $this->roleRepository->getByDataProviderId($dataProviderId); |
53
|
2 |
|
}); |
|
|
|
|
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
/** |
|
|
|
|
57
|
|
|
* @inheritDoc |
58
|
|
|
*/ |
|
|
|
|
59
|
2 |
|
public function create(int $positionId, int $groupId, int $dataProviderId): RoleModel |
60
|
|
|
{ |
61
|
2 |
|
return $this->roleRepository->create($positionId, $groupId, $dataProviderId); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
|
|
|
|
65
|
|
|
* @inheritDoc |
66
|
|
|
*/ |
|
|
|
|
67
|
1 |
|
public function delete(int $id): void |
68
|
|
|
{ |
69
|
1 |
|
$this->roleRepository->delete($id); |
70
|
1 |
|
} |
71
|
|
|
|
72
|
|
|
/** |
|
|
|
|
73
|
|
|
* @inheritDoc |
74
|
|
|
*/ |
|
|
|
|
75
|
3 |
|
public function allThroughGroup(\BristolSU\ControlDB\Contracts\Models\Group $group): Collection |
76
|
|
|
{ |
77
|
3 |
|
return $this->roleRepository->allThroughGroup($group); |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
|
|
|
|
81
|
|
|
* @inheritDoc |
82
|
|
|
*/ |
|
|
|
|
83
|
3 |
|
public function allThroughPosition(\BristolSU\ControlDB\Contracts\Models\Position $position): Collection |
84
|
|
|
{ |
85
|
3 |
|
return $this->roleRepository->allThroughPosition($position); |
86
|
|
|
} |
87
|
|
|
} |