blob: dc8c6b64a6d5a1fed34d3583d932768f58586e73 (
plain)
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
|
# -*- coding: utf-8 -*-
import json
import requests
from requests.exceptions import RequestException
from .model import Feedback
class config:
url = 'tracker.ceph.com'
port = 443
class CephTrackerClient():
def list_issues(self):
'''
Fetch an issue from the Ceph Issue tracker
'''
headers = {
'Content-Type': 'application/json',
}
response = requests.get(
f'https://{config.url}/issues.json', headers=headers)
if not response.ok:
if response.status_code == 404:
raise FileNotFoundError
raise RequestException(response.status_code)
return {"message": response.json()}
def create_issue(self, feedback: Feedback, api_key: str):
'''
Create an issue in the Ceph Issue tracker
'''
try:
headers = {
'Content-Type': 'application/json',
'X-Redmine-API-Key': api_key,
}
except KeyError:
raise Exception("Ceph Tracker API Key not set")
data = json.dumps(feedback.as_dict())
response = requests.post(
f'https://{config.url}/projects/{feedback.project_id}/issues.json',
headers=headers, data=data)
if not response.ok:
if response.status_code == 401:
raise RequestException("Unauthorized. Invalid issue tracker API key")
raise RequestException(response.reason)
return {"message": response.json()}
|