-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathAssignment.php
124 lines (105 loc) · 2.67 KB
/
Assignment.php
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/*
* This file is part of the Dektrium project.
*
* (c) Dektrium project <http://github.com/dektrium>
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace dektrium\rbac\models;
use dektrium\rbac\components\DbManager;
use dektrium\rbac\validators\RbacValidator;
use Yii;
use yii\base\InvalidConfigException;
use yii\base\Model;
use yii\helpers\ArrayHelper;
/**
* @author Dmitry Erofeev <[email protected]>
*/
class Assignment extends Model
{
/**
* @var array
*/
public $items = [];
/**
* @var integer
*/
public $user_id;
/**
* @var boolean
*/
public $updated = false;
/**
* @var DbManager
*/
protected $manager;
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$this->manager = Yii::$app->authManager;
if ($this->user_id === null) {
throw new InvalidConfigException('user_id must be set');
}
$this->items = array_keys($this->manager->getItemsByUser($this->user_id));
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'items' => \Yii::t('rbac', 'Items'),
];
}
/**
* @inheritdoc
*/
public function rules()
{
return [
['user_id', 'required'],
['items', RbacValidator::className()],
['user_id', 'integer']
];
}
/**
* Updates auth assignments for user.
* @return boolean
*/
public function updateAssignments()
{
if (!$this->validate()) {
return false;
}
if (!is_array($this->items)) {
$this->items = [];
}
$assignedItems = $this->manager->getItemsByUser($this->user_id);
$assignedItemsNames = array_keys($assignedItems);
foreach (array_diff($assignedItemsNames, $this->items) as $item) {
$this->manager->revoke($assignedItems[$item], $this->user_id);
}
foreach (array_diff($this->items, $assignedItemsNames) as $item) {
$this->manager->assign($this->manager->getItem($item), $this->user_id);
}
$this->updated = true;
return true;
}
/**
* Returns all available auth items to be attached to user.
* @return array
*/
public function getAvailableItems()
{
return ArrayHelper::map($this->manager->getItems(), 'name', function ($item) {
return empty($item->description)
? $item->name
: $item->name . ' (' . $item->description . ')';
});
}
}