551480548644ef9a3c8f260bdedd9321ff6d6bb2
[plcapi.git] / PLC / Methods / AddSiteAddress.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.Addresses import Address, Addresses
5 from PLC.Auth import Auth
6 from PLC.Sites import Site, Sites
7
8 can_update = lambda (field, value): field in \
9              ['line1', 'line2', 'line3',
10               'city', 'state', 'postalcode', 'country']
11
12 class AddSiteAddress(Method):
13     """
14     Adds a new address to a site. Fields specified in
15     address_fields are used; some are not optional.
16
17     PIs may only add addresses to their own sites.
18
19     Returns the new address_id (> 0) if successful, faults otherwise.
20     """
21
22     roles = ['admin', 'pi']
23
24     address_fields = dict(filter(can_update, Address.fields.items()))
25
26     accepts = [
27         Auth(),
28         Mixed(Site.fields['site_id'],
29               Site.fields['login_base']),
30         address_fields
31         ]
32
33     returns = Parameter(int, 'New address_id (> 0) if successful')
34
35     def call(self, auth, site_id_or_login_base, address_fields):
36         address_fields = dict(filter(can_update, address_fields.items()))
37
38         # Get associated site details
39         sites = Sites(self.api, [site_id_or_login_base])
40         if not sites:
41             raise PLCInvalidArgument, "No such site"
42         site = sites[0]
43
44         if 'admin' not in self.caller['roles']:
45             if site['site_id'] not in self.caller['site_ids']:
46                 raise PLCPermissionDenied, "Address must be associated with one of your sites"
47
48         address = Address(self.api, address_fields)
49         address.sync(commit = False)
50         site.add_address(address, commit = True)
51
52         # Logging variables
53         self.event_objects = {'Site': [site['site_id']],
54                               'Address': [address['address_id']]}
55         self.message = 'Address %d assigned to Site %d' % \
56                 (address['address_id'], site['site_id'])
57
58         return address['address_id']