-
Notifications
You must be signed in to change notification settings - Fork 0
/
Starrys.js
244 lines (201 loc) · 7.52 KB
/
Starrys.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
(function () {
'use strict';
function starrysDate2js(stDate) {
if (!stDate || !stDate.Date) {
return new Date(0);
}
const d = stDate.Date, t = stDate.Time || {};
return new Date(2000 + d.Year, d.Month, d.Day, t.Hour, t.Minute, t.Second);
}
function validateStarrysAnswer(data) {
if (!data || Object.keys(data).length <= 0) {
throw new Error('wrong `httpInstance` response: ' + JSON.stringify(data));
}
if (data.Response && data.Response.Error > 0) {
const e = new Error(data.Response.ErrorMessages || data.Response.Error || 'Starrys api error');
e.data = data;
console.log(data);
throw e;
}
return true;
}
function formatStarrysUrl(url, operation) {
return `${url}/fr/api/v2/${operation}`;
}
const Tax = {
VAT18: 1,
VAT10: 2,
VAT0: 3,
WITHOUT: 4,
RATE_18_118: 5,
RATE_10_110: 6,
};
const DocumentType = {
INCOME: 0,
EXPENDITURE: 1,
RETURN_INCOME: 2,
RETURN_EXPENDITURE: 3,
};
const TaxMode = {
REGULAR: 0,
SIMPLIFIED: 0,
SIMPLIFIED_MINUS_EXPENDITURE: 0,
AGRICULTURAL: 0,
PATENT: 0,
};
const ALLOWED_KEYS = {
'Group': "string",
'Device': "string",
'RequestId': "string",
'Password': "number",
'ClientId': "string",
'DocumentType': "number",
'Lines': "object", // Array
'Cash': "number",
'NonCash': "object",
'AdvancePayment': "number",
'Credit': "number",
'Consideration': "number",
'TaxMode': "number",
'PhoneOrEmail': "string",
'Place': "string",
'MaxDocumentsInTurn': "number",
'FullResponse': "boolean",
};
const ALLOWED_LINE_KEYS = {
'Qty': "number",
'Price': "number",
'PayAttribute': "number",
'TaxId': "number",
'Description': "string",
};
const rejectRequest = () => Promise.reject(new Error('call proceed for client-less request'));
class StarrysComplexRequest {
constructor(evalFunc = rejectRequest) {
this.evalFunc = evalFunc;
this.data = {};
}
addLine(position) {
const errored = Object.keys(position).filter((key) => {
return typeof position[key] !== ALLOWED_LINE_KEYS[key];
});
if (errored.length > 0) {
throw new TypeError(`Wrong position keys/values: ${errored}`);
}
if (!this.data.Lines) {
this.data.Lines = [];
}
this.data.Lines.push(position);
return this;
}
set(name, value) {
name = name.substring(0, 1).toUpperCase() + name.substring(1);
if (ALLOWED_KEYS[name] === undefined) {
throw new Error(`Unexpected value: ${name}`);
}
if (typeof value !== ALLOWED_KEYS[name]) {
throw new TypeError(`Wrong value type: ${name}, type ${typeof value}`);
}
this.data[name] = value;
return this;
}
proceed() {
return this.evalFunc(this);
}
toJson() {
return JSON.stringify(this);
}
static fromJson(income, evalFunc = rejectRequest) {
if (typeof income === 'string') {
income = JSON.parse(income);
}
const scr = new StarrysComplexRequest(evalFunc);
scr.data = income.data;
return scr;
}
}
class StarrysClient {
/**
* @constructor
* @param {string} url адрес формата `https://addr:port`, который вы можете получить в личном кабинете
* @param {object} [defaults={}] значения по-умолчанию для каждого запроса. Полный список значений смотрите в http://check.starrys.ru/docs/cloudapi_complex.pdf, глава 3
* @param {object} httpInstance
* @param {function(url)} httpInstance.get функция, которая принимает url и возвращает Promise
* @param {function(url, data)} httpInstance.post функция, которая принимает два значения (url и данные) и возвращает Promise
*/
constructor(url, defaults, httpInstance) {
if (!url || !url.length) {
throw new URIError('Empty url');
}
this.url = url;
this.defaults = {
Device: 'auto',
ClientId: null,
Password: 1,
TaxMode: 1,
FullResponse: false
};
this.httpInstance = httpInstance;
this.setDefaults(defaults);
}
/**
* Обновляет значения по-умолчанию для запроса
* @param {object} newValues
* @return {object} новые значения по-умолчанию
* @see Object.assign
*/
setDefaults(newValues) {
return Object.assign(this.defaults, newValues);
}
/**
* Создает, привязывает к текущему клиенту и возвращает запрос для дальнейшего конфигурирования
* @return {StarrysComplexRequest} новый запрос
*/
create() {
return new StarrysComplexRequest(this.proceed.bind(this));
}
/**
* Создает, привязывает к текущему клиенту запрос на основании json-строки или объекта
* @param {string | { data:{} }} json
* @return {StarrysComplexRequest}
*/
createFromJson(json) {
return StarrysComplexRequest.fromJson(json, this.proceed.bind(this));
}
/**
* Отправляет запрос на удаленный сервер, используя `StarrysClient.httpInstance`
* Обычно использовать этот метод не требуется, т.к. все запросы уже привязаны к клиенту
* @param request запрос для выполнения
* @return {Promise.<Object>}
*/
proceed(request) {
const data = JSON.parse(JSON.stringify(this.defaults));
Object.assign(data, request.data);
return this.httpInstance.post(formatStarrysUrl(this.url, 'Complex'), data)
.then((resp) => {
const data = resp.data || resp;
validateStarrysAnswer(data);
if (data.Date) {
data.__Date__ = data.Date;
data.Date = starrysDate2js(data.Date);
}
return data;
});
}
}
const exportObj = {
Request: StarrysComplexRequest,
Client: StarrysClient,
DocumentType,
Tax,
TaxMode,
thousandth: function thousandth(number) {
return number * 1000;
}
};
if (typeof module !== 'undefined' && module && module.exports) {
module.exports = exportObj;
} else {
(typeof window !== 'undefined' ? window : global).Starrys = exportObj;
}
})();