django - set user permissions when user is automatically created

人盡茶涼 提交于 2019-11-28 20:02:06

问题


Django 1.5, python 2.6

The model automatically creates a user under certain conditions:

User.objects.get_or_create(username=new_user_name, is_staff=True) 
u = User.objects.get(username=new_user_name)
u.set_password('temporary')

In addition to setting the username, password, and is_staff status, I would like to set the user's permissions - something like:

u.user_permissions('Can view poll')

or

u.set_permissions('Can change poll')

Is this possible? Thank you!


回答1:


Use add and remove methods:

 from django.contrib.auth.models import Permission
 permission = Permission.objects.get(name='Can view poll')
 u.user_permissions.add(permission)



回答2:


Andrew M. Farrell's answer is correct. I only add the use of get_user_model() and a full example.

from django.contrib.auth import get_user_model
from django.contrib.auth.models import Permission
u = get_user_model().get(username=new_user_name)

To get the permission you can use

permission = Permission.objects.get(name='Can view poll')

or

permission = Permission.objects.get(codename='can_view_poll')

then add it to the user permissions set

u.user_permissions.add(permission)


来源:https://stackoverflow.com/questions/20361235/django-set-user-permissions-when-user-is-automatically-created

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!