- allow session key to be specified (for use on nodes)
[plcapi.git] / PLC / Methods / UpdateKey.py
index 14e521e..a1754ff 100644 (file)
@@ -37,7 +37,9 @@ class UpdateKey(Method):
         if not keys:
             raise PLCInvalidArgument, "No such key"
         key = keys[0]
-       PLCCheckLocalKey(key,"UpdateKey")
+
+        if key['peer_id'] is not None:
+            raise PLCInvalidArgument, "Not a local key"
 
         if 'admin' not in self.caller['roles']:
             if key['key_id'] not in self.caller['key_ids']:
@@ -45,6 +47,9 @@ class UpdateKey(Method):
 
         key.update(key_fields)
         key.sync()
+       
+       # Logging variables
        self.object_ids = [key['key_id']]
-
+       self.message = 'key %d updated: %s' % \
+               (key['key_id'], ", ".join(key_fields.keys()))
         return 1