-
Notifications
You must be signed in to change notification settings - Fork 32
/
Acl.js
125 lines (114 loc) · 3.94 KB
/
Acl.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
class Acl {
constructor(httpRequest, jwt, aclBaseUrl) {
if (httpRequest === undefined || jwt === undefined || aclBaseUrl === undefined) {
throw new Error('Acl constructor: Missing arguments');
}
this._httpRequest = httpRequest;
this._JWT = jwt;
this._aclBaseUrl = aclBaseUrl;
}
_checkErrorResponse(expectedStatusCode, actualStatusCode, respBody, actualStatusMessage) {
if (actualStatusCode !== expectedStatusCode) {
let statusMsg = (actualStatusMessage === '' || actualStatusMessage === undefined) ? '' : '(' + actualStatusMessage + ')';
let errorObject = { statusCode: `${actualStatusCode}${statusMsg}`, errorBody: respBody };
throw new Error(JSON.stringify(errorObject));
}
}
_tryParseJSON(stringToParse) {
try {
return JSON.parse(stringToParse);
} catch (e) {
return stringToParse;
}
}
list(calendarId, query) {
return this._httpRequest.get(`${this._aclBaseUrl}${calendarId}/acl`, query, this._JWT)
.then(resp => {
this._checkErrorResponse(200, resp.statusCode, resp.body, resp.statusMessage);
let body = (typeof resp.body === 'string') ? JSON.parse(resp.body) : resp.body;
return body;
})
.catch(err => {
let error = {
origin: 'Acl.list',
error: this._tryParseJSON(err.message) // return as object if JSON, string if not parsable
};
throw new Error(JSON.stringify(error));
});
}
get(calendarId, ruleId) {
return this._httpRequest.get(`${this._aclBaseUrl}${calendarId}/acl/${ruleId}`, '', this._JWT)
.then(resp => {
this._checkErrorResponse(200, resp.statusCode, resp.body, resp.statusMessage);
let body = (typeof resp.body === 'string') ? JSON.parse(resp.body) : resp.body;
return body;
})
.catch(err => {
let error = {
origin: 'Acl.get',
error: this._tryParseJSON(err.message)
};
throw new Error(JSON.stringify(error));
});
}
insert(calendarId, params, query) {
return this._httpRequest.post(`${this._aclBaseUrl}${calendarId}/acl`, params, this._JWT, query)
.then(resp => {
this._checkErrorResponse(200, resp.statusCode, resp.body, resp.statusMessage);
let body = (typeof resp.body === 'string') ? JSON.parse(resp.body) : resp.body;
return body;
})
.catch(err => {
let error = {
origin: 'Acl.insert',
error: this._tryParseJSON(err.message)
};
throw new Error(JSON.stringify(error));
});
}
update(calendarId, ruleId, params, query) {
return this._httpRequest.put(`${this._aclBaseUrl}${calendarId}/acl/${ruleId}`, params, this._JWT, query)
.then(resp => {
this._checkErrorResponse(200, resp.statusCode, resp.body, resp.statusMessage);
let body = (typeof resp.body === 'string') ? JSON.parse(resp.body) : resp.body;
return body;
})
.catch(err => {
let error = {
origin: 'Acl.update',
error: this._tryParseJSON(err.message)
};
throw new Error(JSON.stringify(error));
});
}
delete(calendarId, ruleId) {
return this._httpRequest.delete(`${this._aclBaseUrl}${calendarId}/acl/${ruleId}`, '', this._JWT)
.then(resp => {
this._checkErrorResponse(204, resp.statusCode, resp.body, resp.statusMessage);
return { ruleId: ruleId, calendarId: calendarId, statusCode: resp.statusCode, statusMessage: resp.statusMessage, message: 'Acl rule deleted successfully' };
})
.catch(err => {
let error = {
origin: 'Acl.delete',
error: this._tryParseJSON(err.message)
};
throw new Error(JSON.stringify(error));
});
}
watch(calendarId, params, query) {
return this._httpRequest.post(`${this._aclBaseUrl}${calendarId}/acl/watch`, params, this._JWT, query)
.then(resp => {
this._checkErrorResponse(200, resp.statusCode, resp.body, resp.statusMessage);
let body = (typeof resp.body === 'string') ? JSON.parse(resp.body) : resp.body;
return body;
})
.catch(err => {
let error = {
origin: 'Acl.watch',
error: this._tryParseJSON(err.message)
};
throw new Error(JSON.stringify(error));
});
}
}
module.exports = Acl;