本文整理汇总了Python中ZODB.PersistentMapping.PersistentMapping.has_key方法的典型用法代码示例。如果您正苦于以下问题:Python PersistentMapping.has_key方法的具体用法?Python PersistentMapping.has_key怎么用?Python PersistentMapping.has_key使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ZODB.PersistentMapping.PersistentMapping
的用法示例。
在下文中一共展示了PersistentMapping.has_key方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: nisAuthSource
# 需要导入模块: from ZODB.PersistentMapping import PersistentMapping [as 别名]
# 或者: from ZODB.PersistentMapping.PersistentMapping import has_key [as 别名]
class nisAuthSource(Folder):
""" Authenticate Users against NIS
This folder has 2 modes:
1. Authenticates only those users for which you add a local role
2. Authenticates without local roles.
Since #1 uses local roles, it should play nice with Prop sources and memberships,
where #2 will not. """
meta_type='Authentication Source'
title='NIS Authentication'
icon ='misc_/exUserFolder/exUserFolderPlugin.gif'
manage_editForm=manage_editnisAuthSourceForm
def __init__(self,default_role,NoLocalRoles):
self.id='nisAuthSource'
self.default_role=default_role
self.NoLocalRoles=NoLocalRoles
self.data=PersistentMapping()
self.manage_addUserForm=DTMLFile('manage_addNISUserForm',globals())
self.manage_editUserForm=DTMLFile('manage_editNISUserForm',globals()) #not used. No way to plug it into exUserFolder.py
def manage_editAuthSource(self,REQUEST):
""" """
self.default_role=REQUEST['nisauth_default_role']
self.NoLocalRoles=REQUEST.has_key('nisauth_NoLocalRoles')
# Create a User to store local roles
def createUser(self, username, password, roles):
import pdb
pdb.set_trace()
""" Add A Username """
if self.NoLocalRoles:
return self.MessageDialog(self,REQUEST=REQUEST,
title ='Create Error',
message='Cannot create user. No local roles allowed',
action ='manage_main')
else:
if self._listOneNISUser(username) and (not self.data.has_key(username)):
if type(roles) != type([]):
if roles:
roles=list(roles)
else:
roles=[self.default_role]
self.data[username]=PersistentMapping()
self.data[username].update({'username': username,
'roles': roles})
else:
return self.MessageDialog(self,REQUEST=REQUEST,
title ='Create Error',
message='Cannot create user. Username not in NIS',
action ='manage_main')
# Update a user's roles
# Passwords are managed via the users NIS unix accounts, not here
def updateUser(self, username, password, roles):
if self.NoLocalRoles:
return self.MessageDialog(self,REQUEST=REQUEST,
title ='Create Error',
message='Cannot create user. No local roles allowed',
action ='manage_main')
else:
self.data[username].update({'roles':roles})
# Encrypt a password
def cryptPassword_old(self, username, password):
NISuser=self._listOneNISUser(username)
if self.NoLocalRoles:
user=NISuser
else:
user=self.listOneUser(username)
salt = NISuser['password'][:2]
secret = crypt(password, salt)
return secret
# Delete a set of local users
def deleteUsers(self, userids):
if self.NoLocalRoles:
return self.MessageDialog(self,REQUEST=REQUEST,
title ='Create Error',
message='Cannot create user. No local roles allowed',
action ='manage_main')
for name in userids:
del self.data[name]
# Return a list of usernames
def listUserNames(self,listNIS=None):
if self.NoLocalRoles or listNIS:
usernames=self._listNISUserNames()
else:
usernames=self.data.keys()
usernames.sort()
return usernames
# Return one user matching the username
# Should be a dictionary;
# {'username':username, 'password':cryptedPassword, 'roles':list_of_roles}
def listOneUser(self, username):
users = []
#.........这里部分代码省略.........