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

v6 compat update #5

Merged
merged 6 commits into from
Feb 18, 2022
Merged

v6 compat update #5

merged 6 commits into from
Feb 18, 2022

Conversation

robinsowell
Copy link
Member

First draft, needs a good test, especially on permissions.

Had nothing to do with upgrade, but they should be able to see the link to the files, just not upload.
Language tweaks for roles.
update version number
@robinsowell
Copy link
Member Author

@intoeetive can you take a look at this one? I tested until I got a headache, and I think the permissions are good, even with multiple roles. But it could definitely use a a really good look over. Thanks!

Copy link

@intoeetive intoeetive left a comment

Choose a reason for hiding this comment

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

@robinsowell I did not test, just looked through the code. I think all is good mostly, however I posted few questions.

Comment on lines +266 to 268
if ($this->has_role(array(2, 3, 4), TRUE)) {
$this->can_upload = 'n';
}

Choose a reason for hiding this comment

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

I'm not sure we need to force no access here with the new permissions system. Unless we need this special restriction (e.g. to keep current behaviour)

Copy link
Member Author

Choose a reason for hiding this comment

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

I wasn't sure either, I just kept it because it was existing and I was making minimal changes.

// update for v6 return primary member roles

$this->member_groups = ee('Model')->get('Role')
->filter('role_id', 'NOT IN', array('2', '3', '4'))

Choose a reason for hiding this comment

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

Is role 1 removed here intentionally?

Copy link
Member Author

Choose a reason for hiding this comment

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

It really should exclude superadmin (this is for populating the selects)- but see #6

So I left superadmin in there- they probably shouldn't be and if you don't select them it's moot. But this way, you can still unselect all of the non-super.

I left it for now, but when that's fixed, they should be dropped. Not elegant, but functional, and I wasn't going to redo that display right now.

@@ -611,6 +605,42 @@ function __construct($return = FALSE)
$this->return_data = $this->_deny_if('redirect_page', $this->return_data);

}


public function has_role($roles, $strict = FALSE)

Choose a reason for hiding this comment

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

Is there specific reason to have this function written instead of reusing ee('Permission')->hasRole($role_id)?

Copy link
Member Author

Choose a reason for hiding this comment

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

because I did not realize there was a hasRole, lol! Yea, let me rewrite that, because it's annoying.

and a php 7 tweak.
@robinsowell robinsowell merged commit 7bb23ff into master Feb 18, 2022
@robinsowell robinsowell deleted the v6 branch February 18, 2022 16:49
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