Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
04739a08
Commit
04739a08
authored
Nov 23, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1304 from pmoust/revokeAll
implements #563 - revokeAll()
parents
02e1f8d5
ec37003a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
0 deletions
+48
-0
DbManager.php
framework/yii/rbac/DbManager.php
+12
-0
Manager.php
framework/yii/rbac/Manager.php
+6
-0
PhpManager.php
framework/yii/rbac/PhpManager.php
+16
-0
ManagerTestCase.php
tests/unit/framework/rbac/ManagerTestCase.php
+14
-0
No files found.
framework/yii/rbac/DbManager.php
View file @
04739a08
...
...
@@ -277,6 +277,18 @@ class DbManager extends Manager
}
/**
* Revokes all authorization assignments from a user.
* @param mixed $userId the user ID (see [[User::id]])
* @return boolean whether removal is successful
*/
public
function
revokeAll
(
$userId
)
{
return
$this
->
db
->
createCommand
()
->
delete
(
$this
->
assignmentTable
,
[
'user_id'
=>
$userId
])
->
execute
()
>
0
;
}
/**
* Returns a value indicating whether the item has been assigned to the user.
* @param mixed $userId the user ID (see [[User::id]])
* @param string $itemName the item name
...
...
framework/yii/rbac/Manager.php
View file @
04739a08
...
...
@@ -269,6 +269,12 @@ abstract class Manager extends Component
*/
abstract
public
function
revoke
(
$userId
,
$itemName
);
/**
* Revokes all authorization assignments from a user.
* @param mixed $userId the user ID (see [[User::id]])
* @return boolean whether removal is successful
*/
abstract
public
function
revokeAll
(
$userId
);
/**
* Returns a value indicating whether the item has been assigned to the user.
* @param mixed $userId the user ID (see [[User::id]])
* @param string $itemName the item name
...
...
framework/yii/rbac/PhpManager.php
View file @
04739a08
...
...
@@ -221,6 +221,22 @@ class PhpManager extends Manager
}
/**
* Revokes all authorization assignments from a user.
* @param mixed $userId the user ID (see [[User::id]])
* @return boolean whether removal is successful
*/
public
function
revokeAll
(
$userId
)
{
if
(
isset
(
$this
->
_assignments
[
$userId
])
&&
is_array
(
$this
->
_assignments
[
$userId
]))
{
foreach
(
$this
->
_assignments
[
$userId
]
as
$itemName
=>
$value
)
unset
(
$this
->
_assignments
[
$userId
][
$itemName
]);
return
true
;
}
else
{
return
false
;
}
}
/**
* Returns a value indicating whether the item has been assigned to the user.
* @param mixed $userId the user ID (see [[User::id]])
* @param string $itemName the item name
...
...
tests/unit/framework/rbac/ManagerTestCase.php
View file @
04739a08
...
...
@@ -119,6 +119,12 @@ abstract class ManagerTestCase extends TestCase
$this
->
assertFalse
(
$this
->
auth
->
revoke
(
'author B'
,
'author'
));
}
public
function
testRevokeAll
()
{
$this
->
assertTrue
(
$this
->
auth
->
revokeAll
(
'reader E'
));
$this
->
assertFalse
(
$this
->
auth
->
isAssigned
(
'reader E'
,
'reader'
));
}
public
function
testGetAssignments
()
{
$this
->
auth
->
assign
(
'author B'
,
'deletePost'
);
...
...
@@ -201,6 +207,13 @@ abstract class ManagerTestCase extends TestCase
'updateOwnPost'
=>
false
,
'deletePost'
=>
true
,
],
'reader E'
=>
[
'createPost'
=>
false
,
'readPost'
=>
false
,
'updatePost'
=>
false
,
'updateOwnPost'
=>
false
,
'deletePost'
=>
false
,
],
];
$params
=
[
'authorID'
=>
'author B'
];
...
...
@@ -245,5 +258,6 @@ abstract class ManagerTestCase extends TestCase
$this
->
auth
->
assign
(
'author B'
,
'author'
);
$this
->
auth
->
assign
(
'editor C'
,
'editor'
);
$this
->
auth
->
assign
(
'admin D'
,
'admin'
);
$this
->
auth
->
assign
(
'reader E'
,
'reader'
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment