get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / DeleteKey.py
index c137f7c..51c40d4 100644 (file)
@@ -22,8 +22,6 @@ class DeleteKey(Method):
 
     returns = Parameter(int, '1 if successful')
 
-    event_type = 'Delete'
-    object_type = 'Key'
 
     def call(self, auth, key_id):
         # Get associated key details
@@ -32,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()
-       self.object_ids = [key['key_id']]
+
+        # Logging variables
+        self.event_objects = {'Key': [key['key_id']]}
+        self.message = 'Key %d deleted' % key['key_id']
 
         return 1