- remove object_ids as class variable declaration
[plcapi.git] / PLC / Methods / AddSite.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 AddSite(Method):
13     """
14     Adds a new site, and creates a node group for that site. Any
15     fields specified in site_fields are used, otherwise defaults are
16     used.
17
18     Returns the new site_id (> 0) if successful, faults otherwise.
19     """
20
21     roles = ['admin']
22
23     site_fields = dict(filter(can_update, Site.fields.items()))
24
25     accepts = [
26         Auth(),
27         site_fields
28         ]
29
30     returns = Parameter(int, 'New site_id (> 0) if successful')
31
32     event_type = 'Add'
33     object_type = 'Site'
34
35     def call(self, auth, site_fields):
36         site_fields = dict(filter(can_update, site_fields.items()))
37         site = Site(self.api, site_fields)
38         site.sync()
39
40         self.object_ids = [site['site_id']]
41         
42         return site['site_id']