-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (51 loc) · 1.9 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
const axios = require('axios');
module.exports = class MatrixUtils {
constructor(params) {
this.identifier = params.identity;
this.baseUrl = params.baseUrl;
this.debug = params.debug || false;
if(this.debug){
console.log('[Matrix Utils] initiate with parameters: ', params);
}
const lastChar = this.baseUrl[this.baseUrl.length - 1];
if (lastChar === '/') {
this.baseUrl = this.baseUrl.slice(0, -1);
if(this.debug) console.log('[Matrix Utils] base url contains slash, remove it: ', this.baseUrl);
}
this.config = {
headers: {
identity: this.identifier
}
};
}
async signInUser(params) {
if(this.debug) console.log('[Matrix Utils] # user: ', params.id);
try {
let data = {
userId: params.id,
password: params.password,
email: params.email,
};
const {data: response} = await axios.post(`${this.baseUrl}/users/token`, data, this.config);
if(this.debug) console.log('[Matrix Utils] # success: ', params.id);
return response;
} catch (e) {
if(this.debug) console.log('[Matrix Utils] # failed: ', e);
throw e;
}
};
async logForgotPass(params) {
if(this.debug) console.log('[Matrix Utils] user: ', params.id);
try {
let data = {
userId: params.id,
};
const {data: response} = await axios.post(`${this.baseUrl}/users/forgot-pass`, data, this.config);
if(this.debug) console.log('[Matrix Utils] forgot pass log success: ', params.id);
return response;
} catch (e) {
if(this.debug) console.log('[Matrix Utils] forgot pass log failed: ', e);
throw e;
}
};
};