smartrequest/ts/smartrequest.request.ts

153 lines
4.0 KiB
TypeScript
Raw Normal View History

2018-08-13 23:47:54 +00:00
import * as plugins from './smartrequest.plugins';
import * as interfaces from './smartrequest.interfaces';
2017-01-28 23:51:47 +00:00
2018-08-13 23:47:54 +00:00
import { IncomingMessage } from 'http';
2018-06-13 20:34:49 +00:00
2018-07-16 21:39:25 +00:00
export interface IExtendedIncomingMessage extends IncomingMessage {
body: any;
}
2018-06-13 20:34:49 +00:00
2018-07-16 21:39:25 +00:00
const buildUtf8Response = (
2019-06-12 13:16:27 +00:00
incomingMessageArg: IncomingMessage,
autoJsonParse = true
2018-07-16 21:39:25 +00:00
): Promise<IExtendedIncomingMessage> => {
2019-08-22 10:38:11 +00:00
const done = plugins.smartpromise.defer<IExtendedIncomingMessage>();
2017-06-05 17:09:40 +00:00
// Continuously update stream with data
2018-08-13 23:47:54 +00:00
let body = '';
incomingMessageArg.on('data', function(chunkArg) {
2018-06-13 20:34:49 +00:00
body += chunkArg;
});
2018-08-13 23:47:54 +00:00
incomingMessageArg.on('end', function() {
2019-06-12 13:16:27 +00:00
if (autoJsonParse) {
try {
(incomingMessageArg as IExtendedIncomingMessage).body = JSON.parse(body);
} catch (err) {
(incomingMessageArg as IExtendedIncomingMessage).body = body;
}
} else {
2018-07-16 21:39:25 +00:00
(incomingMessageArg as IExtendedIncomingMessage).body = body;
2017-06-05 17:09:40 +00:00
}
2018-07-16 21:39:25 +00:00
done.resolve(incomingMessageArg as IExtendedIncomingMessage);
2018-06-13 20:34:49 +00:00
});
return done.promise;
};
2017-01-28 23:51:47 +00:00
2018-07-16 21:39:25 +00:00
/**
* determine wether a url is a unix sock
* @param urlArg
*/
const testForUnixSock = (urlArg: string): boolean => {
const unixRegex = /^(http:\/\/|https:\/\/|)unix:/;
return unixRegex.test(urlArg);
};
/**
* determine socketPath and path for unixsock
*/
const parseSocketPathAndRoute = (stringToParseArg: string) => {
const parseRegex = /(.*):(.*)/;
const result = parseRegex.exec(stringToParseArg);
return {
socketPath: result[1],
path: result[2]
2018-08-13 23:47:54 +00:00
};
};
2018-07-16 21:39:25 +00:00
2019-08-21 10:55:19 +00:00
const httpAgent = new plugins.http.Agent({
keepAlive: true,
keepAliveMsecs: 600000
});
const httpsAgent = new plugins.https.Agent({
keepAlive: true,
keepAliveMsecs: 600000
});
2018-06-13 20:34:49 +00:00
export let request = async (
domainArg: string,
optionsArg: interfaces.ISmartRequestOptions = {},
streamArg: boolean = false
2018-07-16 21:39:25 +00:00
): Promise<IExtendedIncomingMessage> => {
2019-08-22 10:38:11 +00:00
const done = plugins.smartpromise.defer<any>();
2018-07-16 21:39:25 +00:00
2019-06-12 13:16:27 +00:00
// merge options
const defaultOptions: interfaces.ISmartRequestOptions = {
2019-08-21 10:55:19 +00:00
// agent: agent,
2019-06-12 13:16:27 +00:00
autoJsonParse: true
2019-08-16 19:38:50 +00:00
};
2019-06-12 13:16:27 +00:00
optionsArg = {
...defaultOptions,
...optionsArg
2019-08-16 19:38:50 +00:00
};
2019-06-12 13:16:27 +00:00
2018-07-16 21:39:25 +00:00
// parse url
2019-08-22 10:38:11 +00:00
const parsedUrl = plugins.url.parse(domainArg);
2018-07-16 21:39:25 +00:00
optionsArg.hostname = parsedUrl.hostname;
if (parsedUrl.port) {
2019-08-22 10:38:11 +00:00
optionsArg.port = parseInt(parsedUrl.port, 10);
2018-07-16 21:39:25 +00:00
}
optionsArg.path = parsedUrl.path;
// determine if unixsock
2018-08-13 23:47:54 +00:00
if (testForUnixSock(domainArg)) {
const detailedUnixPath = parseSocketPathAndRoute(optionsArg.path);
2018-07-16 21:39:25 +00:00
optionsArg.socketPath = detailedUnixPath.socketPath;
optionsArg.path = detailedUnixPath.path;
2017-06-05 17:09:40 +00:00
}
2018-08-13 23:47:54 +00:00
2019-08-16 20:00:01 +00:00
// TODO: support tcp sockets
2018-07-16 21:39:25 +00:00
// lets determine the request module to use
const requestModule = (() => {
2018-08-13 23:47:54 +00:00
if (parsedUrl.protocol === 'https:') {
2019-08-21 10:55:19 +00:00
optionsArg.agent = httpsAgent;
2018-07-16 21:39:25 +00:00
return plugins.https;
2018-08-13 23:47:54 +00:00
} else if (parsedUrl.protocol === 'http:') {
2019-08-21 10:55:19 +00:00
optionsArg.agent = httpAgent;
2018-07-16 21:39:25 +00:00
return plugins.http;
} else {
throw new Error(`unsupported protocol: ${parsedUrl.protocol}`);
2017-01-28 23:51:47 +00:00
}
2018-07-16 21:39:25 +00:00
})() as typeof plugins.https;
// lets perform the actual request
2019-08-22 10:38:11 +00:00
const requestToFire = requestModule.request(optionsArg);
2018-07-16 21:39:25 +00:00
// lets write the requestBody
if (optionsArg.requestBody) {
if (!(optionsArg.requestBody instanceof plugins.formData)) {
2018-08-13 23:47:54 +00:00
if (typeof optionsArg.requestBody !== 'string') {
optionsArg.requestBody = JSON.stringify(optionsArg.requestBody);
}
2019-08-22 10:38:11 +00:00
requestToFire.write(optionsArg.requestBody);
requestToFire.end();
2018-07-19 14:16:02 +00:00
} else if (optionsArg.requestBody instanceof plugins.formData) {
2019-08-22 10:38:11 +00:00
optionsArg.requestBody.pipe(requestToFire).on('finish', event => {
requestToFire.end();
2018-07-19 22:50:36 +00:00
});
2017-01-28 23:51:47 +00:00
}
2018-07-19 21:22:11 +00:00
} else {
2019-08-22 10:38:11 +00:00
requestToFire.end();
2017-06-05 17:09:40 +00:00
}
2018-07-19 14:16:02 +00:00
// lets handle an error
2019-08-22 10:38:11 +00:00
requestToFire.on('error', e => {
2018-07-16 21:39:25 +00:00
console.error(e);
});
2018-07-19 14:16:02 +00:00
// lets handle the response
2019-08-22 10:38:11 +00:00
requestToFire.on('response', async response => {
2018-07-19 14:16:02 +00:00
if (streamArg) {
done.resolve(response);
} else {
2019-06-12 13:16:27 +00:00
const builtResponse = await buildUtf8Response(response, optionsArg.autoJsonParse);
2018-07-19 14:16:02 +00:00
done.resolve(builtResponse);
}
});
2018-07-16 21:39:25 +00:00
const result = await done.promise;
return result;
2018-06-13 20:34:49 +00:00
};