- allow login_base to be updated
[plcapi.git] / PLC / Methods / UpdateSite.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.Sites import Site, Sites
5 from PLC.Auth import Auth
6
7 can_update = lambda (field, value): field in \
8              ['name', 'abbreviated_name', 'login_base',
9               'is_public', 'latitude', 'longitude', 'url',
10               'max_slices', 'max_slivers']
11
12 class UpdateSite(Method):
13     """
14     Updates a site. Only the fields specified in update_fields are
15     updated, all other fields are left untouched.
16
17     PIs can only update sites they are a member of. Only admins can 
18     update max_slices, max_slivers, and login_base.
19
20     Returns 1 if successful, faults otherwise.
21     """
22
23     roles = ['admin', 'pi']
24
25     site_fields = dict(filter(can_update, Site.fields.items()))
26
27     accepts = [
28         Auth(),
29         Mixed(Site.fields['site_id'],
30               Site.fields['login_base']),
31         site_fields
32         ]
33
34     returns = Parameter(int, '1 if successful')
35
36     def call(self, auth, site_id_or_login_base, site_fields):
37         site_fields = dict(filter(can_update, site_fields.items()))
38
39         # Get site information
40         sites = Sites(self.api, [site_id_or_login_base])
41         if not sites:
42             raise PLCInvalidArgument, "No such site"
43
44         site = sites[0]
45
46         # Authenticated function
47         assert self.caller is not None
48
49         # If we are not an admin, make sure that the caller is a
50         # member of the site.
51         if 'admin' not in self.caller['roles']:
52             if site['site_id'] not in self.caller['site_ids']:
53                 raise PLCPermissionDenied, "Not allowed to modify specified site"
54
55             # Remove admin only fields
56             for key in 'max_slices', 'max_slivers', 'login_base':
57                 del site_fields[key]
58
59         site.update(site_fields)
60         site.sync()
61         
62         return 1