2020-02-18 23:55:06 -05:00
|
|
|
const logger = require('./logger');
|
|
|
|
const restler = require('@jc21/restler');
|
|
|
|
|
|
|
|
const BackendApi = function(config, token) {
|
|
|
|
this.config = config;
|
|
|
|
this.token = token;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} token
|
|
|
|
*/
|
|
|
|
BackendApi.prototype.setToken = function(token) {
|
|
|
|
this.token = token;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} path
|
|
|
|
* @param {bool} [returnOnError]
|
|
|
|
* @returns {Promise<object>}
|
|
|
|
*/
|
|
|
|
BackendApi.prototype.get = function(path, returnOnError) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('GET Request:', this.config.baseUrl + path);
|
2020-02-18 23:55:06 -05:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
restler
|
|
|
|
.get(this.config.baseUrl + path, {
|
2022-05-11 18:47:31 -04:00
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
Authorization: 'Bearer ' + this.token,
|
|
|
|
},
|
2020-02-18 23:55:06 -05:00
|
|
|
})
|
|
|
|
.on('complete', function(data, response) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('Response data:', JSON.stringify(data, null, 2));
|
2020-02-18 23:55:06 -05:00
|
|
|
if (!returnOnError && data instanceof Error) {
|
|
|
|
reject(data);
|
|
|
|
} else if (!returnOnError && response.statusCode != 200) {
|
|
|
|
if (typeof data === 'object' && typeof data.error === 'object' && typeof data.error.message !== 'undefined') {
|
|
|
|
reject(new Error(data.error.code + ': ' + data.error.message));
|
|
|
|
} else {
|
|
|
|
reject(new Error('Error ' + response.statusCode));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
resolve(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} path
|
|
|
|
* @param {bool} [returnOnError]
|
|
|
|
* @returns {Promise<object>}
|
|
|
|
*/
|
|
|
|
BackendApi.prototype.delete = function(path, returnOnError) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('DELETE Request:', this.config.baseUrl + path);
|
2020-02-18 23:55:06 -05:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
restler
|
|
|
|
.del(this.config.baseUrl + path, {
|
2022-05-11 18:47:31 -04:00
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
Authorization: 'Bearer ' + this.token,
|
|
|
|
},
|
2020-02-18 23:55:06 -05:00
|
|
|
})
|
|
|
|
.on('complete', function(data, response) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('Response data:', JSON.stringify(data, null, 2));
|
2020-02-18 23:55:06 -05:00
|
|
|
if (!returnOnError && data instanceof Error) {
|
|
|
|
reject(data);
|
|
|
|
} else if (!returnOnError && response.statusCode != 200) {
|
|
|
|
if (typeof data === 'object' && typeof data.error === 'object' && typeof data.error.message !== 'undefined') {
|
|
|
|
reject(new Error(data.error.code + ': ' + data.error.message));
|
|
|
|
} else {
|
|
|
|
reject(new Error('Error ' + response.statusCode));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
resolve(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} path
|
|
|
|
* @param {object} data
|
|
|
|
* @param {bool} [returnOnError]
|
|
|
|
* @returns {Promise<object>}
|
|
|
|
*/
|
|
|
|
BackendApi.prototype.postJson = function(path, data, returnOnError) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('POST Request:', this.config.baseUrl + path, JSON.stringify(data, null, 2));
|
2020-02-18 23:55:06 -05:00
|
|
|
return this._putPostJson('postJson', path, data, returnOnError);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} path
|
|
|
|
* @param {object} data
|
|
|
|
* @param {bool} [returnOnError]
|
|
|
|
* @returns {Promise<object>}
|
|
|
|
*/
|
|
|
|
BackendApi.prototype.putJson = function(path, data, returnOnError) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('PUT Request:', this.config.baseUrl + path, JSON.stringify(data, null, 2));
|
2020-02-18 23:55:06 -05:00
|
|
|
return this._putPostJson('putJson', path, data, returnOnError);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} path
|
|
|
|
* @param {object} data
|
|
|
|
* @param {bool} [returnOnError]
|
|
|
|
* @returns {Promise<object>}
|
|
|
|
*/
|
|
|
|
BackendApi.prototype._putPostJson = function(fn, path, data, returnOnError) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
restler[fn](this.config.baseUrl + path, data, {
|
|
|
|
headers: {
|
|
|
|
Accept: 'application/json',
|
|
|
|
Authorization: 'Bearer ' + this.token,
|
|
|
|
},
|
|
|
|
}).on('complete', function(data, response) {
|
2022-05-11 18:47:31 -04:00
|
|
|
logger('Response data:', JSON.stringify(data, null, 2));
|
2020-02-18 23:55:06 -05:00
|
|
|
if (!returnOnError && data instanceof Error) {
|
|
|
|
reject(data);
|
|
|
|
} else if (!returnOnError && response.statusCode != 200) {
|
|
|
|
if (typeof data === 'object' && typeof data.error === 'object' && typeof data.error.message !== 'undefined') {
|
|
|
|
reject(new Error(data.error.code + ': ' + data.error.message));
|
|
|
|
} else {
|
|
|
|
reject(new Error('Error ' + response.statusCode));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
resolve(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = BackendApi;
|