48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
// Debug
|
|
const debug = require('debug')('client:httpRequests');
|
|
// Config
|
|
const config = require("../config/clientConfig");
|
|
// Modules
|
|
const http = require("http");
|
|
|
|
exports.requestOptions = class requestOptions {
|
|
constructor(path, method, hostname = undefined, headers = undefined, port = undefined) {
|
|
if (method === "POST"){
|
|
this.hostname = hostname ?? config.serverConfig.hostname
|
|
this.path = path
|
|
this.port = port ?? config.serverConfig.port
|
|
this.method = method
|
|
this.headers = headers ?? {
|
|
'Content-Type': 'application/json',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Send the HTTP request to the server
|
|
* @param requestOptions
|
|
* @param data
|
|
* @param callback
|
|
*/
|
|
exports.sendHttpRequest = function sendHttpRequest(requestOptions, data, callback){
|
|
debug("Sending a request to: ", requestOptions.hostname, requestOptions.port)
|
|
// Create the request
|
|
const req = http.request(requestOptions, res => {
|
|
res.on('data', (data) => {
|
|
const responseObject = {
|
|
"statusCode": res.statusCode,
|
|
"body": JSON.parse(data)
|
|
};
|
|
debug("Response Object: ", responseObject);
|
|
callback(responseObject);
|
|
})
|
|
}).on('error', err => {
|
|
debug('Error: ', err.message)
|
|
// TODO need to handle if the server is down
|
|
})
|
|
|
|
// Write the data to the request and send it
|
|
req.write(data)
|
|
req.end()
|
|
} |