-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Created UnityPerms Class #92
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
<?php | ||
|
||
namespace UnityWebPortal\lib; | ||
|
||
class UnityPerms | ||
{ | ||
private $SQL; | ||
private $USER; | ||
|
||
public function __construct($SQL, $USER) | ||
{ | ||
$this->SQL = $SQL; | ||
$this->USER = $USER; | ||
} | ||
|
||
public function checkApproveUser($uid, $operated_on, $group) | ||
{ | ||
if (!$this->USER->isInGroup($uid, $group)) { | ||
return false; | ||
} | ||
|
||
$role = $this->SQL->getRole($uid, $group); | ||
|
||
if ($this->SQL->hasPerm($role, 'unity.admin') || $this->SQL->hasPerm($role, 'unity.admin_no_grant')) { | ||
return true; | ||
} | ||
|
||
if (!$this->SQL->hasPerm($role, 'unity.approve_user')) { | ||
return false; | ||
} | ||
|
||
$operated_on_role = $this->SQL->getRole($operated_on, $group); | ||
|
||
if ($this->SQL->getPriority($operated_on_role) >= $this->SQL->getPriority($role)) { | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
public function checkDenyUser($uid, $operated_on, $group) | ||
{ | ||
if (!$this->USER->isInGroup($uid, $group)) { | ||
return false; | ||
} | ||
|
||
$role = $this->SQL->getRole($uid, $group); | ||
|
||
if ($this->SQL->hasPerm($role, 'unity.admin') || $this->SQL->hasPerm($role, 'unity.admin_no_grant')) { | ||
return true; | ||
} | ||
|
||
if (!$this->SQL->hasPerm($role, 'unity.deny_user')) { | ||
return false; | ||
} | ||
|
||
$operated_on_role = $this->SQL->getRole($operated_on, $group); | ||
|
||
if ($this->SQL->getPriority($operated_on_role) >= $this->SQL->getPriority($role)) { | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
public function checkGrantRole($uid, $group, $role) | ||
{ | ||
if (!$this->USER->isInGroup($uid, $group)) { | ||
return false; | ||
} | ||
|
||
if (!$this->SQL->roleAvailableInGroup($uid, $group, $role)) { | ||
return false; | ||
} | ||
|
||
$user_role = $this->SQL->getRole($uid, $group); | ||
|
||
if ($this->SQL->hasPerm($user_role, 'unity.admin_no_grant') && $role == 'unity.admin') { | ||
return false; | ||
} | ||
|
||
if ($this->SQL->hasPerm($user_role, 'unity.admin') || $this->SQL->hasPerm($user_role, 'unity.admin_no_grant')) { | ||
return true; | ||
} | ||
|
||
if (!$this->SQL->hasPerm($user_role, 'unity.grant_role')) { | ||
return false; | ||
} | ||
|
||
$role_to_grant = $this->SQL->getRole($role, $group); | ||
|
||
if ($this->SQL->getPriority($role_to_grant) >= $this->SQL->getPriority($user_role)) { | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
public function checkRevokeRole($uid, $group, $role) | ||
{ | ||
if (!$this->USER->isInGroup($uid, $group)) { | ||
return false; | ||
} | ||
|
||
if (!$this->SQL->roleAvailableInGroup($uid, $group, $role)) { | ||
return false; | ||
} | ||
|
||
$user_role = $this->SQL->getRole($uid, $group); | ||
|
||
if ($this->SQL->hasPerm($user_role, 'unity.admin_no_grant') && $role == 'unity.admin') { | ||
return false; | ||
} | ||
|
||
if ($this->SQL->hasPerm($user_role, 'unity.admin') || $this->SQL->hasPerm($user_role, 'unity.admin_no_grant')) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added |
||
return true; | ||
} | ||
|
||
if (!$this->SQL->hasPerm($user_role, 'unity.revoke_role')) { | ||
return false; | ||
} | ||
|
||
$role_to_revoke = $this->SQL->getRole($role, $group); | ||
|
||
if ($this->SQL->getPriority($role_to_revoke) >= $this->SQL->getPriority($user_role)) { | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -671,4 +671,29 @@ public function hasRequestedAccountDeletion() | |
{ | ||
return $this->SQL->accDeletionRequestExists($this->getUID()); | ||
} | ||
|
||
/** | ||
* Checks whether a user is in a group or not | ||
* @param string $uid uid of the user | ||
* @param string or object $group group to check | ||
* @return boolean true if user is in group, false if not | ||
*/ | ||
|
||
public function isInGroup($uid, $group) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would prefer if this method accepted both a string for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
{ | ||
if (gettype($group) == "string") { | ||
$group_checked = new UnityGroup( | ||
$group, | ||
$this->LDAP, | ||
$this->SQL, | ||
$this->MAILER, | ||
$this->REDIS, | ||
$this->WEBHOOK | ||
); | ||
} else { | ||
$group_checked = $group; | ||
} | ||
|
||
return in_array($uid, $group_checked->getGroupMemberUIDs()); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unity.admin_no_grant
should not be able to grant theadmin
role, so you need a check here that doesn't return true ifadmin
is the role trying to be granted.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added check