gpt4 book ai didi

google-cloud-datastore - 如何在 Django-nonrel 中为 Google App Engine 设置组权限

转载 作者:行者123 更新时间:2023-12-04 17:39:51 26 4
gpt4 key购买 nike

我正在尝试为 GAE 的 django-nonrel 获取基于角色的权限。

开箱即用,好像不行,可能是因为Users和Groups之间隐含了多对多的关系,所以我找到并安装了http://www.fhahn.com/writing/Django-s-Permission-System-with-Django-Nonrel .根据文档,我将 permission_backend_nonrel 添加到 INSTALLED_APPS(在 djangotoolbox 之后),并将 AUTHENTICATION_BACKENDS 定义为 settings.py 中的相应类。

这让我解决了之前的问题(“DatabaseError: This query is not supported by the database.”),但我仍然卡住了,因为当我运行一个非常简单的示例时,我认为我应该得到一组空权限得到一些东西。下面是我能做的最简单的例子。它由 python manage.py shell 在 django 框架中启动 - 这是一个简单的小马商店。我正在尝试将用户添加到组中,授予该组权限,然后查看这些权限作为用户拥有的一组权限的一部分反射(reflect):

>>> from django.contrib.auth.models import Group, Permission, User
>>> from django.contrib.contenttypes.models import ContentType
>>> from pony_shop.models import Pony

#Create the group:
>>> farmers = Group(name="Farmers")
>>> farmers.save()

>>> pony_ct = ContentType.objects.get(app_label='pony_shop', model='pony')

#Create the Permission
>>> can_twirl = Permission(name='Can Twirl', codename='can_twirl', content_type=pony_ct)
>>> can_twirl.save()

#Give the Permission to the Group
>>> farmers.permissions.add(can_twirl)
>>> farmers.save()

#Create the User
>>> francis = User(username='francis')
>>> francis.save()

#Put the user in the group
>>> francis.groups.add(farmers)
>>> francis.save()

#Get a pony object
>>> firefly = Pony(price=12, height=3, name='Firefly', color='fuscia')
>>> firefly.save()

>>> francis.get_all_permissions()
set([]) #<-- WHY?!?

#Just in case I needed to check the permissions against a pony object:
>>> francis.get_all_permissions(obj=firefly)
set([]) #<-- Still no joy

所以,问题是:为什么上述方法不起作用,我需要更改什么才能使其起作用?

在此先感谢您的帮助!

最佳答案

感谢一位同事,我得到了这个答案。显然,我不需要使用内置的组/权限添加。相反,使用 *permission_backend_nonrel* 附带的实用程序类

>>>from permission_backend_nonrel import utils
>>>utils.add_permission_to_group(can_twirl,farmers)
>>>utils.add_user_to_group(francis,farmers)

然后,它起作用了。

关于google-cloud-datastore - 如何在 Django-nonrel 中为 Google App Engine 设置组权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6669160/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com