@onehat/data 1.21.12 → 1.21.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -340,7 +340,9 @@ class LocalFromRemoteRepository extends EventEmitter {
|
|
|
340
340
|
let command = this.commands[localItem.command];
|
|
341
341
|
|
|
342
342
|
if (!command) {
|
|
343
|
-
|
|
343
|
+
if (localItem.command) {
|
|
344
|
+
this.throwError('Command ' + localItem.command + ' not registered');
|
|
345
|
+
}
|
|
344
346
|
return;
|
|
345
347
|
}
|
|
346
348
|
if (!command.hasHandlers()) {
|
|
@@ -238,17 +238,26 @@ class OneBuildRepository extends AjaxRepository {
|
|
|
238
238
|
*/
|
|
239
239
|
_processServerResponse(result) {
|
|
240
240
|
|
|
241
|
+
const retNull = {
|
|
242
|
+
root: null,
|
|
243
|
+
success: false,
|
|
244
|
+
total: 0,
|
|
245
|
+
message: null,
|
|
246
|
+
};
|
|
247
|
+
|
|
241
248
|
if (result === false) { // e.g. 401 error
|
|
242
|
-
return
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
249
|
+
return retNull;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
// use try/catch in case the response is not JSON
|
|
253
|
+
let response;
|
|
254
|
+
try {
|
|
255
|
+
response = _.isPlainObject(result.data) ? result.data : this.reader.read(result.data);
|
|
256
|
+
} catch(e) {
|
|
257
|
+
return retNull;
|
|
248
258
|
}
|
|
249
259
|
|
|
250
260
|
const
|
|
251
|
-
response = _.isPlainObject(result.data) ? result.data : this.reader.read(result.data),
|
|
252
261
|
root = response[this.rootProperty],
|
|
253
262
|
success = response[this.successProperty],
|
|
254
263
|
total = response[this.totalProperty],
|
|
@@ -543,22 +552,22 @@ class OneBuildRepository extends AjaxRepository {
|
|
|
543
552
|
return;
|
|
544
553
|
}
|
|
545
554
|
|
|
555
|
+
const data = {
|
|
556
|
+
url: 'Users/apiLogout',
|
|
557
|
+
method: 'POST',
|
|
558
|
+
baseURL: this.api.baseURL,
|
|
559
|
+
headers: _.merge({
|
|
560
|
+
'Content-Type': 'application/json',
|
|
561
|
+
Accept: 'application/json',
|
|
562
|
+
}, this.headers),
|
|
563
|
+
timeout: this.timeout,
|
|
564
|
+
};
|
|
565
|
+
|
|
546
566
|
if (this.debugMode) {
|
|
547
|
-
console.log('logout');
|
|
567
|
+
console.log('logout', data);
|
|
548
568
|
}
|
|
549
569
|
|
|
550
|
-
|
|
551
|
-
'Content-Type': 'application/json',
|
|
552
|
-
Accept: 'application/json',
|
|
553
|
-
}, this.headers);
|
|
554
|
-
|
|
555
|
-
return this.axios({
|
|
556
|
-
url: 'Users/apiLogout',
|
|
557
|
-
method: 'POST',
|
|
558
|
-
baseURL: this.api.baseURL,
|
|
559
|
-
headers,
|
|
560
|
-
timeout: this.timeout,
|
|
561
|
-
})
|
|
570
|
+
return this.axios(data)
|
|
562
571
|
.then((result) => {
|
|
563
572
|
if (this.debugMode) {
|
|
564
573
|
console.log('logout response', result);
|