-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandle_service.py
35 lines (29 loc) · 1.04 KB
/
handle_service.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
# System Import
import sys
import logging
# Splunk import
from splunklib.client import connect
from utils import parse
__author__ = 'Manoj Jangid'
__version__ = '0.0.1'
__description__ = 'This is class is responsible for service authorization'
class ServiceHandle(object):
def __init__(self, collection_name):
try:
'''
There is multiple way to authenticate this
'''
logging.debug('Service Handle Initialized')
opts = parse(sys.argv[1:], {}, '.splunkrc')
opts.kwargs["owner"] = 'nobody'
opts.kwargs["app"] = 'collection_api_example'
opts.kwargs["username"] = 'admin'
opts.kwargs["password"] = 'admin'
self.service = connect(**opts.kwargs)
self.collection = self.service.kvstore[collection_name]
except:
raise Exception('Initialization Error: %s' % (sys.exc_info()[0]))
def get_collection_handle(self):
return self.collection
def get_service_handle(self):
return self.service