- fix hidden fields removal
[plcapi.git] / PLC / Methods / GetPersons.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.Filter import Filter
5 from PLC.Persons import Person, Persons
6 from PLC.Auth import Auth
7
8 hidden_fields = ['password', 'verification_key', 'verification_expires']
9
10 class GetPersons(Method):
11     """
12     Returns an array of structs containing details about users. If
13     person_filter is specified and is an array of user identifiers or
14     usernames, or a struct of user attributes, only users matching the
15     filter will be returned. If return_fields is specified, only the
16     specified details will be returned.
17
18     Users and techs may only retrieve details about themselves. PIs
19     may retrieve details about themselves and others at their
20     sites. Admins may retrieve details about all accounts.
21     """
22
23     roles = ['admin', 'pi', 'user', 'tech']
24
25     accepts = [
26         Auth(),
27         Mixed([Mixed(Person.fields['person_id'],
28                      Person.fields['email'])],
29               Filter(Person.fields)),
30         Parameter([str], "List of fields to return", nullok = True)
31         ]
32
33     # Filter out password field
34     return_fields = dict(filter(lambda (field, value): field not in hidden_fields,
35                                 Person.fields.items()))
36     returns = [return_fields]
37     
38     def call(self, auth, person_filter = None, return_fields = None):
39         # If we are not admin, make sure to only return viewable accounts
40         if 'admin' not in self.caller['roles']:
41             # Get accounts that we are able to view
42             valid_person_ids = [self.caller['person_id']]
43             if 'pi' in self.caller['roles'] and self.caller['site_ids']:
44                 sites = Sites(self.api, self.caller['site_ids'])
45                 for site in sites:
46                     valid_person_ids += site['person_ids']
47
48             if not valid_person_ids:
49                 return []
50
51             if person_filter is None:
52                 person_filter = valid_person_ids
53
54         # Filter out password field
55         if return_fields:
56             return_fields = filter(lambda field: field not in hidden_fields,
57                                    return_fields)
58         else:
59             return_fields = self.return_fields.keys()
60
61         persons = Persons(self.api, person_filter, return_fields)
62
63         # Filter out accounts that are not viewable
64         if 'admin' not in self.caller['roles']:
65             persons = filter(self.caller.can_view, persons)
66
67         return persons