This commit was manufactured by cvs2svn to create branch
[plcapi.git] / PLC / Methods / DeleteKey.py
index bdd3397..313c2a4 100644 (file)
@@ -30,11 +30,17 @@ class DeleteKey(Method):
             raise PLCInvalidArgument, "No such key"
         key = keys[0]
 
+        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']:
                 raise PLCPermissionDenied, "Key must be associated with your account"
 
         key.delete()
+       
+       # Logging variables
        self.object_ids = [key['key_id']]
+       self.message = 'Key %d deleted' % key['key_id']
 
         return 1