-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscourseClient.js
76 lines (64 loc) · 2.11 KB
/
discourseClient.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
import authManager from './authManager';
import axios from 'axios';
import { cacheAdapterEnhancer, throttleAdapterEnhancer } from 'axios-extensions';
export default class DiscourseClient {
constructor(options) {
this.options = options;
this.instance = axios.create({
baseURL: options.apiBaseUrl,
headers: {
'X-Requested-With': 'XMLHttpRequest',
'Cache-Control': 'no-cache',
'Content-Type': 'application/json'
},
adapter: throttleAdapterEnhancer(
cacheAdapterEnhancer(axios.defaults.adapter),
{ threshold: 500 } // 120 reqs/min
)
});
}
async init() {
await this._setUserApiKey(authManager.getUserApiKey());
}
async _getCallResult(endpoint, prop, nocache = false) {
let response;
try {
response = (await this.instance.get(endpoint, { forceUpdate: nocache })).data;
} catch (error) {
throw new Error(error);
}
if (prop) {
response = prop.split('.').reduce((returnedResponse, currentProp) =>
returnedResponse[currentProp], response);
}
return response;
}
async _postCallResult(endpoint, payload) {
return (await this.instance.post(endpoint, payload)).data;
}
async _setUserApiKey(userApiKey) {
if (!userApiKey) {
return;
}
try {
this.instance.defaults.headers.common['User-Api-Key'] = userApiKey;
await this._setCsrfToken();
} catch (error) {
authManager.clearAuthData(this.options.appId);
delete this.instance.defaults.headers.common['User-Api-Key'];
}
}
async _setCsrfToken() {
this.instance.defaults.headers.common['X-CSRF-Token'] = await this._getCallResult('/session/csrf.json', 'csrf');
}
_checkUserApiKey() {
this.instance.defaults.headers.common['User-Api-Key'] || throw new Error('User API key not set');
}
async _doLogout(username) {
this._checkUserApiKey();
await this.instance.delete('/session/' + username);
await this.instance.post('/user-api-key/revoke');
delete this.instance.defaults.headers.common['User-Api-Key'];
delete this.instance.defaults.headers.common['X-CSRF-Token'];
}
}