- import Sites
[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 may retrieve details about all accounts.
22     """
23
24     roles = ['admin', 'pi', 'user', 'tech']
25
26     accepts = [
27         Auth(),
28         Mixed([Mixed(Person.fields['person_id'],
29                      Person.fields['email'])],
30               Filter(Person.fields)),
31         Parameter([str], "List of fields to return", nullok = True)
32         ]
33
34     # Filter out password field
35     return_fields = dict(filter(lambda (field, value): field not in hidden_fields,
36                                 Person.fields.items()))
37     returns = [return_fields]
38     
39     def call(self, auth, person_filter = None, return_fields = None):
40         # If we are not admin, make sure to only return viewable accounts
41         if 'admin' not in self.caller['roles']:
42             # Get accounts that we are able to view
43             valid_person_ids = [self.caller['person_id']]
44             if 'pi' in self.caller['roles'] and self.caller['site_ids']:
45                 sites = Sites(self.api, self.caller['site_ids'])
46                 for site in sites:
47                     valid_person_ids += site['person_ids']
48
49             if not valid_person_ids:
50                 return []
51
52             if person_filter is None:
53                 person_filter = valid_person_ids
54
55         # Filter out password field
56         if return_fields:
57             return_fields = filter(lambda field: field not in hidden_fields,
58                                    return_fields)
59         else:
60             return_fields = self.return_fields.keys()
61
62         persons = Persons(self.api, person_filter, return_fields)
63
64         # Filter out accounts that are not viewable
65         if 'admin' not in self.caller['roles']:
66             persons = filter(self.caller.can_view, persons)
67
68         return persons