svn keywords
[plcapi.git] / PLC / Methods / AddSite.py
index 10d6585..b506faa 100644 (file)
@@ -1,12 +1,15 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Sites import Site, Sites
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
 
 can_update = lambda (field, value): field in \
              ['name', 'abbreviated_name', 'login_base',
-              'is_public', 'latitude', 'longitude', 'url']
+              'is_public', 'latitude', 'longitude', 'url',
+              'max_slices', 'max_slivers', 'enabled']
 
 class AddSite(Method):
     """
@@ -22,21 +25,19 @@ class AddSite(Method):
     site_fields = dict(filter(can_update, Site.fields.items()))
 
     accepts = [
-        PasswordAuth(),
+        Auth(),
         site_fields
         ]
 
     returns = Parameter(int, 'New site_id (> 0) if successful')
 
-    event_type = 'Add'
-    object_type = 'Site'
-    object_ids = []
-
     def call(self, auth, site_fields):
         site_fields = dict(filter(can_update, site_fields.items()))
         site = Site(self.api, site_fields)
         site.sync()
-
-       self.object_ids = [site['site_id']]
-        
+       
+       # Logging variables 
+       self.event_objects = {'Site': [site['site_id']]}
+        self.message = 'Site %d created' % site['site_id']
+       
        return site['site_id']