-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
221 lines (170 loc) · 4.52 KB
/
index.js
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
const axios = require('axios');
const DEFAULT_API_HOST = 'api.usedesk.ru';
const valueOrNull = (val) => val ? val : null;
class TicketsMethods {
constructor (api) {
this.api = api;
}
async get(ticket_id, accessible_for_agent_id=null) {
const properties = {
ticket_id,
};
if (accessible_for_agent_id) {
properties.accessible_for_agent_id = accessible_for_agent_id;
}
return this.api.request('POST', `/ticket`, properties);
}
async create(properties) {
return this.api.request('POST', '/create/ticket', properties);
}
async createAsync(properties) {
return this.api.request('POST', '/create/ticket/async', properties);
}
async update(properties) {
return this.api.request('POST', '/update/ticket', properties);
}
async list(properties) {
return this.api.request('POST', '/tickets', properties);
}
async createComment(properties) {
return this.api.request('POST', '/create/comment', properties);
}
async tags(query='', offset= 0) {
const properties = {
offset,
};
if (query) {
properties.query = query;
}
return this.api.request('POST', '/tags', properties);
}
async fields() {
return this.api.request('POST', '/ticket/fields');
}
}
class ClientsMethods {
constructor (api) {
this.api = api;
}
async get(client_id) {
return this.api.request('GET', `/client`, { client_id });
}
async create(properties) {
return this.api.request('POST', `/create/client`, properties);
}
async update(properties) {
return this.api.request('POST', `/update/client`, properties);
}
async list(properties) {
return this.api.request('POST', `/clients`, properties);
}
}
class ChatMethods {
constructor (api) {
this.api = api;
}
async addMessage(properties) {
return this.api.request('POST', '/chat/addMessage', properties);
}
async sendMessage(properties) {
return this.api.request('POST', '/chat/sendMessage'. properties);
}
async changeAssignee(properties) {
return this.api.request('POST', '/chat/changeAssignee'. properties);
}
}
class UsersMethods {
constructor (api) {
this.api = api;
}
async get(user_id) {
return this.api.request('GET', '/user', { user_id });
}
async create(properties) {
return this.api.request('POST', '/create/user', properties);
}
async delete(user_id) {
return this.api.request('POST', '/delete/user', { user_id });
}
async update(properties) {
return this.api.request('POST', '/update/user', properties);
}
async list(properties) {
return this.api.request('POST', '/users', properties);
}
async groups() {
return this.api.request('POST', '/groups');
}
}
class ChannelsMethods {
constructor (api) {
this.api = api;
}
async list(properties) {
return this.api.request('GET', '/channels', properties);
}
}
class SipuniUsedeskApi {
options = {};
cachedMethodsObjects = {};
constructor(options) {
this.options = options;
// validation
if (!options.token) {
throw new Error('A required "token" parameter is not set.');
}
if (!options.host) {
this.options.host = DEFAULT_API_HOST;
}
}
// API methods grouped by entity
get clients() {
return this._getMethodsObject(ClientsMethods);
}
get tickets() {
return this._getMethodsObject(TicketsMethods);
}
get chat() {
return this._getMethodsObject(ChatMethods);
}
get users() {
return this._getMethodsObject(UsersMethods);
}
get channels() {
return this._getMethodsObject(ChannelsMethods);
}
//Universal request
async request(method, path, paramsOrData = {}) {
const isGet = method === 'GET';
const paramsOrDataWithToken = {
...paramsOrData,
api_token: this.options.token,
};
const params = isGet ? paramsOrDataWithToken : {};
const data = !isGet ? paramsOrDataWithToken : {};
const headers = {
'Content-Type': 'application/json'
};
try {
const response = await axios.request({
url: `https://${this.options.host}${path}`,
method,
data,
params,
headers,
});
return valueOrNull(response.data);
} catch (error) {
console.log(error.response.data);
throw error;
}
}
// Utility methods
_getMethodsObject(className, options = {}) {
if (!this.cachedMethodsObjects[className]) {
this.cachedMethodsObjects[className] = new className(this, options);
}
return this.cachedMethodsObjects[className];
}
}
module.exports = SipuniUsedeskApi;