forked from CMSCompOps/WmAgentScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JIRAClient.py
executable file
·161 lines (139 loc) · 5.16 KB
/
JIRAClient.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import sys,pprint,os,json
import os
import httplib
import urllib
import pprint
import pycurl
import cStringIO
import traceback
class JIRAClient:
def __init__(self,id='sso',debug=False,cookie=None):
self.server='its.cern.ch/jira'
## once secured
self.headers={}
self.id=id
self.debug=debug
self.connect(cookie)
def connect(self,cookie=None):
if self.id=='sso':
if cookie:
self.cookieFilename = cookie
else:
self.cookieFilename = '%s/private/jira-cookie.txt'%(os.getenv('HOME'))
if not os.path.isfile(self.cookieFilename):
print "The required sso cookie file is absent. Trying to make one for you"
com = 'cern-get-sso-cookie -u https://%s -o %s --krb'%( self.server, self.cookieFilename)
print "Making the cookie with"
print com
os.system( com )
if not os.path.isfile(self.cookieFilename):
print "The required sso cookie file cannot be made."
sys.exit(1)
self.curl = pycurl.Curl()
print "Using sso-cookie file",self.cookieFilename
self.curl.setopt(pycurl.COOKIEFILE,self.cookieFilename)
self.output = cStringIO.StringIO()
self.curl.setopt(pycurl.SSL_VERIFYPEER, 1)
self.curl.setopt(pycurl.SSL_VERIFYHOST, 2)
self.curl.setopt(pycurl.CAPATH, '/etc/pki/tls/certs')
self.curl.setopt(pycurl.WRITEFUNCTION, self.output.write)
else:
self.__http = httplib.HTTPConnection(self.server)
def search(self, **args):
url = 'issues/?jql=text~%s AND project = CMSCOMPPR'% args.get('text')
fullurl='https://'+self.server+url
if self.id=='sso':
self.curl.setopt(pycurl.HTTPGET, 1)
self.curl.setopt(pycurl.URL, str(fullurl))
self.curl.perform()
try:
#################
### generic methods for GET,PUT,DELETE
def get(self,url):
fullurl='https://'+self.server+url
if self.debug:
print 'url=|'+fullurl+'|'
if self.id=='sso':
self.curl.setopt(pycurl.HTTPGET, 1)
self.curl.setopt(pycurl.URL, str(fullurl))
self.curl.perform()
else:
self.__http.request("GET", url, headers=self.headers)
try:
d=json.loads(self.response())
return d
except:
print "ERROR"
print traceback.format_exc()
print self._response
return None
def put(self,url,data):
fullurl='https://'+self.server+url
if self.debug:
print 'url=|'+fullurl+'|'
if self.id=='sso':
self.curl.setopt(pycurl.URL, str(fullurl))
p_data=cStringIO.StringIO(json.dumps(data))
self.curl.setopt(pycurl.UPLOAD, 1)
self.curl.setopt(pycurl.READFUNCTION, cStringIO.StringIO(json.dumps(data)).read)
if self.debug:
print 'message=|'+p_data.read()+'|'
self.curl.perform()
else:
self.__http.request("PUT", url, json.dumps(data), headers=self.headers)
try:
d=json.loads(self.response())
return d
except:
#print "ERROR",self._response
print "ERROR"
return None
def delete(self,url):
fullurl='https://'+self.server+url
if self.debug:
print 'url=|'+fullurl+'|'
if self.id=='sso':
self.curl.setopt(pycurl.CUSTOMREQUEST,'DELETE')
self.curl.setopt(pycurl.URL, str(fullurl))
self.curl.perform()
else:
print "Not implemented Yet ?"
self.__http.request("DELETE", url, headers=self.headers)
try:
d=json.loads(self.response())
return d
except:
print "ERROR"
return None
#####################
#### generic methods for i/o
def clear(self):
if self.id=='sso':
self.output = cStringIO.StringIO()
self.curl.setopt(pycurl.WRITEFUNCTION, self.output.write)
def response(self):
if self.id=='sso':
self._response= self.output.getvalue()
self.clear()
return self._response
else:
return self.__http.getresponse().read()
#####################
def getA(self,something,someone=None,query='',method='get', page=-1):
if someone:
url='restapi/%s/%s/%s'%(something,method,someone.strip())
else:
url='search/?db_name=%s&page=%d&%s'%(something,page,query)
d = self.get(url)
if d:
return d['results']
else:
return None
def manageA(self,something,what):
return self.putA(something,what,update='manage')
def updateA(self,something,what):
return self.putA(something,what,update='update')
def putA(self,something,what,update='save'):
url='restapi/%s/%s'%(something,update)
d = self.put(url,what)
return d