|
1
|
|
|
<?php namespace Arcanedev\LaravelAuth\Providers; |
|
2
|
|
|
|
|
3
|
|
|
use Arcanedev\LaravelAuth\Observers; |
|
4
|
|
|
use Arcanedev\Support\Providers\EventServiceProvider as ServiceProvider; |
|
5
|
|
|
use Arcanesoft\Contracts\Auth\Models; |
|
6
|
|
|
use Illuminate\Contracts\Events\Dispatcher; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* Class EventServiceProvider |
|
10
|
|
|
* |
|
11
|
|
|
* @package Arcanedev\LaravelAuth\Providers |
|
12
|
|
|
* @author ARCANEDEV <[email protected]> |
|
13
|
|
|
*/ |
|
14
|
|
|
class EventServiceProvider extends ServiceProvider |
|
15
|
|
|
{ |
|
16
|
|
|
/* ------------------------------------------------------------------------------------------------ |
|
17
|
|
|
| Main Functions |
|
18
|
|
|
| ------------------------------------------------------------------------------------------------ |
|
19
|
|
|
*/ |
|
20
|
|
|
/** |
|
21
|
|
|
* Register the application's event listeners. |
|
22
|
|
|
* |
|
23
|
|
|
* @param \Illuminate\Contracts\Events\Dispatcher $events |
|
24
|
|
|
*/ |
|
25
|
260 |
|
public function boot(Dispatcher $events) |
|
26
|
|
|
{ |
|
27
|
260 |
|
parent::boot($events); |
|
28
|
|
|
|
|
29
|
260 |
|
$this->observeUserModel(); |
|
30
|
260 |
|
$this->observeRoleModel(); |
|
31
|
260 |
|
$this->observePermissionsGroupModel(); |
|
32
|
260 |
|
$this->observePermissionModel(); |
|
33
|
260 |
|
} |
|
34
|
|
|
|
|
35
|
260 |
|
private function observeUserModel() |
|
36
|
|
|
{ |
|
37
|
260 |
|
$observer = $this->getObserver('users'); |
|
38
|
|
|
|
|
39
|
260 |
|
$this->getModel(Models\User::class)->observe($observer); |
|
40
|
260 |
|
} |
|
41
|
|
|
|
|
42
|
260 |
|
private function observeRoleModel() |
|
43
|
|
|
{ |
|
44
|
260 |
|
$observer = $this->getObserver('roles'); |
|
45
|
|
|
|
|
46
|
260 |
|
$this->getModel(Models\Role::class)->observe($observer); |
|
47
|
260 |
|
} |
|
48
|
|
|
|
|
49
|
260 |
|
private function observePermissionsGroupModel() |
|
50
|
|
|
{ |
|
51
|
260 |
|
$observer = $this->getObserver('permissions-groups'); |
|
52
|
|
|
|
|
53
|
260 |
|
$this->getModel(Models\PermissionsGroup::class)->observe($observer); |
|
54
|
260 |
|
} |
|
55
|
|
|
|
|
56
|
260 |
|
private function observePermissionModel() |
|
57
|
|
|
{ |
|
58
|
260 |
|
$observer = $this->getObserver('permissions'); |
|
59
|
|
|
|
|
60
|
260 |
|
$this->getModel(Models\Permission::class)->observe($observer); |
|
61
|
260 |
|
} |
|
62
|
|
|
|
|
63
|
|
|
/* ------------------------------------------------------------------------------------------------ |
|
64
|
|
|
| Other Functions |
|
65
|
|
|
| ------------------------------------------------------------------------------------------------ |
|
66
|
|
|
*/ |
|
67
|
|
|
/** |
|
68
|
|
|
* Get the concrete model. |
|
69
|
|
|
* |
|
70
|
|
|
* @param string $abstract |
|
71
|
|
|
* |
|
72
|
|
|
* @return \Illuminate\Database\Eloquent\Model |
|
73
|
|
|
*/ |
|
74
|
260 |
|
private function getModel($abstract) |
|
75
|
|
|
{ |
|
76
|
260 |
|
return $this->app->make($abstract); |
|
77
|
|
|
} |
|
78
|
|
|
|
|
79
|
|
|
/** |
|
80
|
|
|
* Get the observer class. |
|
81
|
|
|
* |
|
82
|
|
|
* @param string $key |
|
83
|
|
|
* |
|
84
|
|
|
* @return string |
|
85
|
|
|
*/ |
|
86
|
260 |
|
private function getObserver($key) |
|
87
|
|
|
{ |
|
88
|
|
|
/** @var \Illuminate\Contracts\Config\Repository $config */ |
|
89
|
260 |
|
$config = $this->app['config']; |
|
90
|
|
|
|
|
91
|
260 |
|
return $config->get("laravel-auth.{$key}.observer"); |
|
92
|
|
|
} |
|
93
|
|
|
} |
|
94
|
|
|
|