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

Add an admin widget to manage Roles #66

Open
kavdev opened this issue Mar 9, 2017 · 6 comments
Open

Add an admin widget to manage Roles #66

kavdev opened this issue Mar 9, 2017 · 6 comments

Comments

@kavdev
Copy link
Contributor

kavdev commented Mar 9, 2017

I'm not sure this is even possible, but it would be pretty cool to have some sort of admin UI for adding and removing roles and permissions

@filipeximenes
Copy link
Contributor

So something more customized than the default Django widget for groups and permissions, right?
Do you have some ideas on how this would look?

@kavdev
Copy link
Contributor Author

kavdev commented Mar 10, 2017

Exactly. The normal Django widget operates outside of the constraints (and get_or_create handiness) offered by django-role-permissions. I have no idea how to go about this yet or how it would look; it's something on my list to research.

Essentially, it would just need to have some way to call assign_role(), remove_role(), and clear_roles() with an input for the desired role.

@gehaxelt
Copy link

Hi,
I just discovered this module and would love to see some kind of widget for the django admin backend, too.

Especially, because the permission names do not seem to get translated and/or displayed in the default permissions form:
permissions

That makes assigning the right permissions a bit hard ;)

Best

@powderflask
Copy link
Contributor

I have some code to potentially contribute that makes django-role-permissions play more nicely with the admin. In the spirit of the module, it simply piggybacks on the existing django user admin group selector.
It has 3 components:

  1. a UserAdminMixin class (utilized by an optional custom UserAdmin class) that overrides save_related() to update the user's roles to match the groups selected in the admin. In this way, changes made to the user's Groups via the admin are immediately reflected in the Roles.
  2. a management command, sync_roles, that can be run after changing the project's roles.py to create a Group for any new Roles (so the group is available via the admin), and re-assign roles to all users so any changes to the roles definitions are immediately reflected in user groups / permissions.
  3. default names for each permission -- as requested in [Enhancement] Add name value to Permissions object creation in AbstractUserRole. #46 and [WIP] Prevent empty name attributes for Permission objects #71 -- so the permission name appears in the admin.

I'm interested in contributing this code, but hoping for some feedback on whether these features are a sensible way to approach the problem -- they work for my use-case™, but I may be missing a bigger picture.

@kavdev
Copy link
Contributor Author

kavdev commented Sep 26, 2017

@powderflask

  1. sounds good! I'd suggest naming it RoleManagementMixin or something

  2. here's our approach:

from django.contrib.auth import get_user_model
from django.core.management.base import BaseCommand
from rolepermissions.roles import get_user_roles, clear_roles, assign_role


class Command(BaseCommand):

    help = "Sychronizes user Roles with the current available_permissions set in code."
    version = "1.0.0"

    def get_version(self):
        return self.version

    def handle(self, *args, **options):
        """For each user, grab their assigned roles, clear their roles, and then reassign them."""
        for user in get_user_model().objects.all():
            roles = get_user_roles(user=user)
            clear_roles(user=user)

            for role in roles:
                assign_role(user=user, role=role)
  1. solid

@filipeximenes
Copy link
Contributor

Hey, let's focus discussion on the PR (https://github.com/vintasoftware/django-role-permissions/pull/72/files) to avoid confusion :)

@kavdev I just made some comments in the PR, would appreciate your contribuitions there as well!

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

No branches or pull requests

4 participants