-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandle_delete.py
44 lines (32 loc) · 1.11 KB
/
handle_delete.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# System Import
import json
import logging
# Splunk import
from splunklib.binding import ResponseReader as RR
# Application import
from handle_error import HandleError
__author__ = 'Manoj Jangid'
__version__ = '0.0.1'
__description__ = 'This is class is responsible for all delete operation'
class HandleDelete(object):
def __init__(self, collection, request):
logging.debug(
'Initialize HandleDelete class with request=%s' % (request))
self.request = request
self.collection = collection
def delete(self):
value = self.request.get('path_info')
if value:
logging.debug('path_info=%s' % self.request.get('path_info'))
else:
logging.debug('path_info key is missing')
data = {}
data['_key'] = value
try:
response = self.collection.data.delete(json.dumps(data))
except:
error = HandleError(self.collection, self.request)
return error.execute()
return {'payload': self.request, 'status': response['status']}
def execute(self):
return self.delete()