-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathissue-client.ts
100 lines (90 loc) · 3.12 KB
/
issue-client.ts
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
import { Issue } from '../generated/issue/v1/issue_object_gen';
import { BackendSrvRequest, getBackendSrv, FetchResponse } from '@grafana/runtime';
import { lastValueFrom } from 'rxjs';
export interface ListResponse<T> {
items: T[];
}
export class IssueClient {
apiEndpoint: string
constructor() {
this.apiEndpoint = '/apis/issuetrackerproject.ext.grafana.com/v1/namespaces/default/issues';
}
async create(title: string, description: string): Promise<FetchResponse<Issue>> {
let issue = {
kind: 'Issue',
apiVersion: 'issuetrackerproject.ext.grafana.com/v1',
spec: {
title: title,
description: description,
status: 'open',
},
metadata: {
name: 'issue-' + makeid(10),
namespace: 'default',
}
}
const options: BackendSrvRequest = {
headers: {
'content-type':'application/json',
},
method: 'POST',
url: this.apiEndpoint,
data: JSON.stringify(issue),
showErrorAlert: false,
};
return lastValueFrom(getBackendSrv().fetch<Issue>(options));
}
async get(name: string): Promise<FetchResponse<Issue>> {
const options: BackendSrvRequest = {
headers: {},
url: this.apiEndpoint + '/' + name,
showErrorAlert: false,
};
return lastValueFrom(getBackendSrv().fetch<Issue>(options));
}
async list(filters?: string[]): Promise<FetchResponse<ListResponse<Issue>>> {
const options: BackendSrvRequest = {
headers: {},
url: this.apiEndpoint,
showErrorAlert: false,
};
if (filters !== undefined && filters !== null && filters.length > 0) {
options.params = {
'filters': filters.join(','),
};
}
return lastValueFrom(getBackendSrv().fetch<ListResponse<Issue>>(options));
}
async delete(name: string): Promise<FetchResponse<void>> {
const options: BackendSrvRequest = {
headers: {},
method: 'DELETE',
url: this.apiEndpoint + '/' + name,
showErrorAlert: false,
};
return lastValueFrom(getBackendSrv().fetch<void>(options));
}
async update(name: string, updated: Issue): Promise<FetchResponse<Issue>> {
const options: BackendSrvRequest = {
headers: {
'content-type':'application/json',
},
method: 'PUT',
url: this.apiEndpoint + '/' + name,
data: JSON.stringify(updated),
showErrorAlert: false,
};
return lastValueFrom(getBackendSrv().fetch<Issue>(options));
}
}
function makeid(length: number) {
let result = '';
const characters = 'abcdefghijklmnopqrstuvwxyz0123456789';
const charactersLength = characters.length;
let counter = 0;
while (counter < length) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
counter += 1;
}
return result;
}