smartrequest/ts/smartrequest.binaryrest.ts

34 lines
946 B
TypeScript
Raw Normal View History

2018-06-18 05:39:42 +00:00
// this file implements methods to get and post binary data.
2022-07-28 23:19:50 +00:00
import * as interfaces from './smartrequest.interfaces.js';
import { request } from './smartrequest.request.js';
2018-06-18 05:39:42 +00:00
2022-07-28 23:19:50 +00:00
import * as plugins from './smartrequest.plugins.js';
2018-06-18 05:39:42 +00:00
export const getBinary = async (
domainArg: string,
optionsArg: interfaces.ISmartRequestOptions = {}
) => {
2020-01-13 08:00:39 +00:00
optionsArg = {
...optionsArg,
2020-08-24 12:01:38 +00:00
autoJsonParse: false,
2020-01-13 08:00:39 +00:00
};
const done = plugins.smartpromise.defer();
2018-06-18 05:39:42 +00:00
const response = await request(domainArg, optionsArg, true);
2022-02-15 17:53:02 +00:00
const data: Array<Buffer> = [];
2018-06-18 05:39:42 +00:00
response
2022-02-15 17:53:02 +00:00
.on('data', function (chunk: Buffer) {
2018-06-18 05:39:42 +00:00
data.push(chunk);
})
2020-08-24 12:01:38 +00:00
.on('end', function () {
2018-06-18 05:39:42 +00:00
//at this point data is an array of Buffers
//so Buffer.concat() can make us a new Buffer
//of all of them together
const buffer = Buffer.concat(data);
2020-01-13 07:58:54 +00:00
response.body = buffer;
2018-06-18 05:39:42 +00:00
done.resolve();
});
2018-06-18 05:39:42 +00:00
await done.promise;
return response;
};