X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FPersons.py;h=f4346ceca679c90157fd9851d3519920be4f7cf9;hb=3042666c8109c44d258fbcec85e19df2dc0edac8;hp=887f780dd455a63b030659a5b8c879e4c5064bcf;hpb=a7f0a8c621447d357b9f2b42cfa2513211aeb751;p=plcapi.git diff --git a/PLC/Persons.py b/PLC/Persons.py index 887f780..f4346ce 100644 --- a/PLC/Persons.py +++ b/PLC/Persons.py @@ -5,11 +5,14 @@ # Copyright (C) 2006 The Trustees of Princeton University # # $Id$ +# $URL$ # from types import StringTypes -from datetime import datetime -import md5 +try: + from hashlib import md5 +except ImportError: + from md5 import md5 import time from random import Random import re @@ -46,8 +49,8 @@ class Person(Row): 'enabled': Parameter(bool, "Has been enabled"), 'password': Parameter(str, "Account password in crypt() form", max = 254), 'verification_key': Parameter(str, "Reset password key", max = 254, nullok = True), - 'verification_expires': Parameter(int, "Date and time when verification_key expires", nullok = True), - 'last_updated': Parameter(int, "Date and time of last update", ro = True), + 'verification_expires': Parameter(int, "Date and time when verification_key expires", nullok = True), + 'last_updated': Parameter(int, "Date and time of last update", ro = True), 'date_created': Parameter(int, "Date and time when account was created", ro = True), 'role_ids': Parameter([int], "List of role identifiers"), 'roles': Parameter([str], "List of roles"), @@ -56,55 +59,46 @@ class Person(Row): 'slice_ids': Parameter([int], "List of slice identifiers"), 'peer_id': Parameter(int, "Peer to which this user belongs", nullok = True), 'peer_person_id': Parameter(int, "Foreign user identifier at peer", nullok = True), + 'person_tag_ids' : Parameter ([int], "List of tags attached to this person"), } related_fields = { - 'roles': [Mixed(Parameter(int, "Role identifier"), - Parameter(str, "Role name"))], - 'sites': [Mixed(Parameter(int, "Site identifier"), - Parameter(str, "Site name"))], - 'keys': [Mixed(Parameter(int, "Key identifier"), - Filter(Key.fields))], - 'slices': [Mixed(Parameter(int, "Slice identifier"), - Parameter(str, "Slice name"))] - } + 'roles': [Mixed(Parameter(int, "Role identifier"), + Parameter(str, "Role name"))], + 'sites': [Mixed(Parameter(int, "Site identifier"), + Parameter(str, "Site name"))], + 'keys': [Mixed(Parameter(int, "Key identifier"), + Filter(Key.fields))], + 'slices': [Mixed(Parameter(int, "Slice identifier"), + Parameter(str, "Slice name"))] + } + view_tags_name = "view_person_tags" + # tags are used by the Add/Get/Update methods to expose tags + # this is initialized here and updated by the accessors factory + tags = { } def validate_email(self, email): """ Validate email address. Stolen from Mailman. """ - + email = email.lower() invalid_email = PLCInvalidArgument("Invalid e-mail address") - email_badchars = r'[][()<>|;^,\200-\377]' - - # Pretty minimal, cheesy check. We could do better... - if not email or email.count(' ') > 0: - raise invalid_email - if re.search(email_badchars, email) or email[0] == '-': - raise invalid_email - email = email.lower() - at_sign = email.find('@') - if at_sign < 1: + if not email: raise invalid_email - user = email[:at_sign] - rest = email[at_sign+1:] - domain = rest.split('.') - # This means local, unqualified addresses, are not allowed - if not domain: - raise invalid_email - if len(domain) < 2: + email_re = re.compile('\A[a-zA-Z0-9._%+\-]+@[a-zA-Z0-9._\-]+\.[a-zA-Z]+\Z') + if not email_re.match(email): raise invalid_email - # check only against users on the same peer - if 'peer_id' in self: + # check only against users on the same peer + if 'peer_id' in self: namespace_peer_id = self['peer_id'] else: namespace_peer_id = None - - conflicts = Persons(self.api, {'email':email,'peer_id':namespace_peer_id}) - - for person in conflicts: + + conflicts = Persons(self.api, {'email':email,'peer_id':namespace_peer_id}) + + for person in conflicts: if 'person_id' not in self or self['person_id'] != person['person_id']: raise PLCInvalidArgument, "E-mail address already in use" @@ -124,7 +118,7 @@ class Person(Row): else: # Generate a somewhat unique 8 character salt string salt = str(time.time()) + str(Random().random()) - salt = md5.md5(salt).hexdigest()[:8] + salt = md5(salt).hexdigest()[:8] return crypt.crypt(password.encode(self.api.encoding), magic + salt + "$") validate_date_created = Row.validate_timestamp @@ -152,8 +146,8 @@ class Person(Row): if 'pi' in self['roles']: if set(self['site_ids']).intersection(person['site_ids']): - # Can update people with higher role IDs - return min(self['role_ids']) < min(person['role_ids']) + # Can update person is neither a PI or ADMIN + return (not (('pi' in person['roles']) or ('admin' in person['roles']))) return False @@ -175,7 +169,7 @@ class Person(Row): if 'pi' in self['roles']: if set(self['site_ids']).intersection(person['site_ids']): # Can view people with equal or higher role IDs - return min(self['role_ids']) <= min(person['role_ids']) + return 'admin' not in person['roles'] return False @@ -217,42 +211,42 @@ class Person(Row): """ Update last_updated field with current time """ - - assert 'person_id' in self - assert self.table_name - - self.api.db.do("UPDATE %s SET last_updated = CURRENT_TIMESTAMP " % (self.table_name) + \ + + assert 'person_id' in self + assert self.table_name + + self.api.db.do("UPDATE %s SET last_updated = CURRENT_TIMESTAMP " % (self.table_name) + \ " where person_id = %d" % (self['person_id']) ) self.sync(commit) def associate_roles(self, auth, field, value): - """ - Adds roles found in value list to this person (using AddRoleToPerson). - Deletes roles not found in value list from this person (using DeleteRoleFromPerson). - """ - - assert 'role_ids' in self - assert 'person_id' in self - assert isinstance(value, list) - - (role_ids, roles_names) = self.separate_types(value)[0:2] - - # Translate roles into role_ids - if roles_names: - roles = Roles(self.api, role_names, ['role_id']).dict('role_id') - role_ids += roles.keys() - - # Add new ids, remove stale ids - if self['role_ids'] != role_ids: - from PLC.Methods.AddRoleToPerson import AddRoleToPerson - from PLC.Methods.DeleteRoleFromPerson import DeleteRoleFromPerson - new_roles = set(role_ids).difference(self['role_ids']) - stale_roles = set(self['role_ids']).difference(role_ids) - - for new_role in new_roles: - AddRoleToPerson.__call__(AddRoleToPerson(self.api), auth, new_role, self['person_id']) - for stale_role in stale_roles: - DeleteRoleFromPerson.__call__(DeleteRoleFromPerson(self.api), auth, stale_role, self['person_id']) + """ + Adds roles found in value list to this person (using AddRoleToPerson). + Deletes roles not found in value list from this person (using DeleteRoleFromPerson). + """ + + assert 'role_ids' in self + assert 'person_id' in self + assert isinstance(value, list) + + (role_ids, role_names) = self.separate_types(value)[0:2] + + # Translate roles into role_ids + if role_names: + roles = Roles(self.api, role_names).dict('role_id') + role_ids += roles.keys() + + # Add new ids, remove stale ids + if self['role_ids'] != role_ids: + from PLC.Methods.AddRoleToPerson import AddRoleToPerson + from PLC.Methods.DeleteRoleFromPerson import DeleteRoleFromPerson + new_roles = set(role_ids).difference(self['role_ids']) + stale_roles = set(self['role_ids']).difference(role_ids) + + for new_role in new_roles: + AddRoleToPerson.__call__(AddRoleToPerson(self.api), auth, new_role, self['person_id']) + for stale_role in stale_roles: + DeleteRoleFromPerson.__call__(DeleteRoleFromPerson(self.api), auth, stale_role, self['person_id']) def associate_sites(self, auth, field, value): @@ -261,7 +255,7 @@ class Person(Row): Deletes person from site not found in value list (using DeletePersonFromSite). """ - from PLC.Sites import Sites + from PLC.Sites import Sites assert 'site_ids' in self assert 'person_id' in self @@ -288,44 +282,44 @@ class Person(Row): def associate_keys(self, auth, field, value): - """ + """ Deletes key_ids not found in value list (using DeleteKey). Adds key if key_fields w/o key_id is found (using AddPersonKey). Updates key if key_fields w/ key_id is found (using UpdateKey). """ - assert 'key_ids' in self - assert 'person_id' in self - assert isinstance(value, list) - - (key_ids, blank, keys) = self.separate_types(value) - - if self['key_ids'] != key_ids: - from PLC.Methods.DeleteKey import DeleteKey - stale_keys = set(self['key_ids']).difference(key_ids) - - for stale_key in stale_keys: - DeleteKey.__call__(DeleteKey(self.api), auth, stale_key) - - if keys: - from PLC.Methods.AddPersonKey import AddPersonKey - from PLC.Methods.UpdateKey import UpdateKey - updated_keys = filter(lambda key: 'key_id' in key, keys) - added_keys = filter(lambda key: 'key_id' not in key, keys) - - for key in added_keys: - AddPersonKey.__call__(AddPersonKey(self.api), auth, self['person_id'], key) - for key in updated_keys: - key_id = key.pop('key_id') - UpdateKey.__call__(UpdateKey(self.api), auth, key_id, key) - - + assert 'key_ids' in self + assert 'person_id' in self + assert isinstance(value, list) + + (key_ids, blank, keys) = self.separate_types(value) + + if self['key_ids'] != key_ids: + from PLC.Methods.DeleteKey import DeleteKey + stale_keys = set(self['key_ids']).difference(key_ids) + + for stale_key in stale_keys: + DeleteKey.__call__(DeleteKey(self.api), auth, stale_key) + + if keys: + from PLC.Methods.AddPersonKey import AddPersonKey + from PLC.Methods.UpdateKey import UpdateKey + updated_keys = filter(lambda key: 'key_id' in key, keys) + added_keys = filter(lambda key: 'key_id' not in key, keys) + + for key in added_keys: + AddPersonKey.__call__(AddPersonKey(self.api), auth, self['person_id'], key) + for key in updated_keys: + key_id = key.pop('key_id') + UpdateKey.__call__(UpdateKey(self.api), auth, key_id, key) + + def associate_slices(self, auth, field, value): """ Adds person to slices found in value list (using AddPersonToSlice). Deletes person from slices found in value list (using DeletePersonFromSlice). """ - from PLC.Slices import Slices + from PLC.Slices import Slices assert 'slice_ids' in self assert 'person_id' in self @@ -349,7 +343,7 @@ class Person(Row): AddPersonToSlice.__call__(AddPersonToSlice(self.api), auth, self['person_id'], new_slice) for stale_slice in stale_slices: DeletePersonFromSlice.__call__(DeletePersonFromSlice(self.api), auth, self['person_id'], stale_slice) - + def delete(self, commit = True): """ @@ -379,64 +373,14 @@ class Persons(Table): def __init__(self, api, person_filter = None, columns = None): Table.__init__(self, api, Person, columns) - foreign_fields = {'role_ids': ('role_id', 'person_role'), - 'roles': ('name', 'roles'), - 'site_ids': ('site_id', 'person_site'), - 'key_ids': ('key_id', 'person_key'), - 'slice_ids': ('slice_id', 'slice_person') - } - foreign_keys = {} - db_fields = filter(lambda field: field not in foreign_fields.keys(), Person.fields.keys()) - all_fields = db_fields + [value[0] for value in foreign_fields.values()] - fields = [] - _select = "SELECT " - _from = " FROM persons " - _join = " LEFT JOIN peer_person USING (person_id) " - _where = " WHERE deleted IS False " - - if not columns: - # include all columns - fields = all_fields - tables = [value[1] for value in foreign_fields.values()] - tables.sort() - for key in foreign_fields.keys(): - foreign_keys[foreign_fields[key][0]] = key - for table in tables: - if table in ['roles']: - _join += " LEFT JOIN roles USING(role_id) " - else: - _join += " LEFT JOIN %s USING (person_id) " % (table) - else: - tables = set() - columns = filter(lambda column: column in db_fields+foreign_fields.keys(), columns) - columns.sort() - for column in columns: - if column in foreign_fields.keys(): - (field, table) = foreign_fields[column] - foreign_keys[field] = column - fields += [field] - tables.add(table) - if column in ['roles']: - _join += " LEFT JOIN roles USING(role_id) " - else: - _join += " LEFT JOIN %s USING (person_id)" % \ - (foreign_fields[column][1]) - - else: - fields += [column] - - # postgres will return timestamps as datetime objects. - # XMLPRC cannot marshal datetime so convert to int - timestamps = ['date_created', 'last_updated', 'verification_expires'] - for field in fields: - if field in timestamps: - fields[fields.index(field)] = \ - "CAST(date_part('epoch', %s) AS bigint) AS %s" % (field, field) - - _select += ", ".join(fields) - sql = _select + _from + _join + _where - - # deal with filter + view = "view_persons" + for tagname in self.tag_columns: + view= "%s left join %s using (%s)"%(view,Person.tagvalue_view_name(tagname), + Person.primary_key) + + sql = "SELECT %s FROM %s WHERE deleted IS False" % \ + (", ".join(self.columns.keys()+self.tag_columns.keys()),view) + if person_filter is not None: if isinstance(person_filter, (list, tuple, set)): # Separate the list into integers and strings @@ -456,29 +400,4 @@ class Persons(Table): else: raise PLCInvalidArgument, "Wrong person filter %r"%person_filter - # aggregate data - all_persons = {} - for row in self.api.db.selectall(sql): - person_id = row['person_id'] - - if all_persons.has_key(person_id): - for (key, key_list) in foreign_keys.items(): - data = row.pop(key) - row[key_list] = [data] - if data and data not in all_persons[person_id][key_list]: - all_persons[person_id][key_list].append(data) - else: - for key in foreign_keys.keys(): - value = row.pop(key) - if value: - row[foreign_keys[key]] = [value] - else: - row[foreign_keys[key]] = [] - if row: - all_persons[person_id] = row - - # populate self - for row in all_persons.values(): - obj = self.classobj(self.api, row) - self.append(obj) - + self.selectall(sql)