Skip to content
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

Merged
merged 5 commits into from
Jul 17, 2023
Merged

Created UnityPerms Class #92

merged 5 commits into from
Jul 17, 2023

Conversation

sheldor1510
Copy link
Collaborator

@sheldor1510 sheldor1510 requested a review from hakasapl July 13, 2023 22:54
Copy link
Collaborator

@hakasapl hakasapl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent work, I have 2 small change requests. I suspect we may revisit some methods here as we add more components of the group system and get a clearer idea.


$user_role = $this->SQL->getRole($uid, $group);

if ($this->SQL->hasPerm($user_role, 'unity.admin') || $this->SQL->hasPerm($user_role, 'unity.admin_no_grant')) {
Copy link
Collaborator

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 the admin role, so you need a check here that doesn't return true if admin is the role trying to be granted.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added check


$user_role = $this->SQL->getRole($uid, $group);

if ($this->SQL->hasPerm($user_role, 'unity.admin') || $this->SQL->hasPerm($user_role, 'unity.admin_no_grant')) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, admin_no_grant should not be able to revoke admin roles.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added

* Checks whether a user is in a group or not
*/

public function isInGroup($uid, $group)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer if this method accepted both a string for $group, and the object itself. You can check the type of the variable and act accordingly using gettype() in php.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@sheldor1510 sheldor1510 requested a review from hakasapl July 17, 2023 16:36
Copy link
Collaborator

@hakasapl hakasapl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work!

@hakasapl hakasapl merged commit a716b8a into UnityHPC:main Jul 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants