a209b879077aae2053dc5c8c1331e9b16d8eafb2
[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.Sites import Site, Sites
7 from PLC.Auth import Auth
8
9 hidden_fields = ['password', 'verification_key', 'verification_expires']
10
11 class GetPersons(Method):
12     """
13     Returns an array of structs containing details about users. If
14     person_filter is specified and is an array of user identifiers or
15     usernames, or a struct of user attributes, only users matching the
16     filter will be returned. If return_fields is specified, only the
17     specified details will be returned.
18
19     Users and techs may only retrieve details about themselves. PIs
20     may retrieve details about themselves and others at their
21     sites. Admins and nodes may retrieve details about all accounts.
22     """
23
24     roles = ['admin', 'pi', 'user', 'tech', 'node']
25
26     accepts = [
27         Auth(),
28         Mixed([Mixed(Person.fields['person_id'],
29                      Person.fields['email'])],
30               Parameter(str,"email"),
31               Parameter(int,"person_id"),
32               Filter(Person.fields)),
33         Parameter([str], "List of fields to return", nullok = True)
34         ]
35
36     # Filter out password field
37     return_fields = dict(filter(lambda (field, value): field not in hidden_fields,
38                                 Person.fields.items()))
39     returns = [return_fields]
40
41     def call(self, auth, person_filter = None, return_fields = None):
42         # If we are not admin, make sure to only return viewable accounts
43         if isinstance(self.caller, Person) and \
44            'admin' not in self.caller['roles']:
45             # Get accounts that we are able to view
46             valid_person_ids = [self.caller['person_id']]
47             if 'pi' in self.caller['roles'] and self.caller['site_ids']:
48                 sites = Sites(self.api, self.caller['site_ids'])
49                 for site in sites:
50                     valid_person_ids += site['person_ids']
51
52             if not valid_person_ids:
53                 return []
54
55             # xxx this looks suspicious
56             # we need to add this restriction even if person_filter is defined
57             if person_filter is None:
58                 person_filter = valid_person_ids
59
60         # Filter out password field
61         if return_fields:
62             return_fields = filter(lambda field: field not in hidden_fields,
63                                    return_fields)
64         else:
65             return_fields = self.return_fields.keys()
66
67         # Must query at least person_id, site_ids, and role_ids (see
68         # Person.can_view() and below).
69         if return_fields is not None:
70             added_fields = set(['person_id', 'site_ids', 'role_ids','roles']).difference(return_fields)
71             return_fields += added_fields
72         else:
73             added_fields = []
74
75         persons = Persons(self.api, person_filter, return_fields)
76
77         # Filter out accounts that are not viewable
78         if isinstance(self.caller, Person) and \
79            'admin' not in self.caller['roles']:
80             persons = filter(self.caller.can_view, persons)
81
82         # Remove added fields if not specified
83         if added_fields:
84             for person in persons:
85                 for field in added_fields:
86                     if field in person:
87                         del person[field]
88
89         return persons