Compare commits
28 Commits
Author | SHA1 | Date | |
---|---|---|---|
376225888c | |||
63e8660f6c | |||
2358b1d48f | |||
9db29bacc2 | |||
5f27b6834c | |||
6717ecf80c | |||
7784f99878 | |||
54a0521f9e | |||
ef25315d59 | |||
74b6bf230f | |||
fe693e6383 | |||
6014e94ee0 | |||
88927fa6f8 | |||
e8133247f7 | |||
4e51ed315e | |||
0ffc44b3ef | |||
a8291febec | |||
c0704eb2d8 | |||
9eeb9c16b6 | |||
52bf520eb9 | |||
c9f6198114 | |||
0a17591eae | |||
3417f09cdb | |||
20dc3c9230 | |||
6f865a356f | |||
71a6ffef96 | |||
189916e62b | |||
33e36b5d44 |
20
.gitignore
vendored
20
.gitignore
vendored
@ -1,4 +1,22 @@
|
|||||||
node_modules/
|
.nogit/
|
||||||
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
public/
|
public/
|
||||||
pages/
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# caches
|
||||||
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_web/
|
||||||
|
dist_serve/
|
||||||
|
dist_ts_web/
|
||||||
|
|
||||||
|
# custom
|
@ -1,5 +1,5 @@
|
|||||||
# gitzone standard
|
# gitzone ci_default
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
@ -26,6 +26,7 @@ mirror:
|
|||||||
snyk:
|
snyk:
|
||||||
stage: security
|
stage: security
|
||||||
script:
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
- npmci command npm install -g snyk
|
- npmci command npm install -g snyk
|
||||||
- npmci command npm install --ignore-scripts
|
- npmci command npm install --ignore-scripts
|
||||||
- npmci command snyk test
|
- npmci command snyk test
|
||||||
@ -36,35 +37,26 @@ snyk:
|
|||||||
# ====================
|
# ====================
|
||||||
# test stage
|
# test stage
|
||||||
# ====================
|
# ====================
|
||||||
testLEGACY:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci node install legacy
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
testLTS:
|
testLTS:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
|
- npmci npm prepare
|
||||||
- npmci node install lts
|
- npmci node install lts
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci npm test
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- priv
|
||||||
|
|
||||||
testSTABLE:
|
testBuild:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci node install stable
|
- npmci npm prepare
|
||||||
|
- npmci node install lts
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci npm test
|
- npmci command npm run build
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
@ -73,7 +65,7 @@ testSTABLE:
|
|||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
script:
|
script:
|
||||||
- npmci node install stable
|
- npmci node install lts
|
||||||
- npmci npm publish
|
- npmci npm publish
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
@ -86,19 +78,11 @@ release:
|
|||||||
# ====================
|
# ====================
|
||||||
codequality:
|
codequality:
|
||||||
stage: metadata
|
stage: metadata
|
||||||
image: docker:stable
|
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
services:
|
|
||||||
- docker:stable-dind
|
|
||||||
script:
|
script:
|
||||||
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
- npmci command npm install -g tslint typescript
|
||||||
- docker run
|
- npmci npm install
|
||||||
--env SOURCE_CODE="$PWD"
|
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||||
--volume "$PWD":/code
|
|
||||||
--volume /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
|
|
||||||
artifacts:
|
|
||||||
paths: [codeclimate.json]
|
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- priv
|
- priv
|
||||||
@ -114,12 +98,15 @@ trigger:
|
|||||||
- notpriv
|
- notpriv
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: hosttoday/ht-docker-node:npmci
|
image: hosttoday/ht-docker-dbase:npmci
|
||||||
|
services:
|
||||||
|
- docker:18-dind
|
||||||
stage: metadata
|
stage: metadata
|
||||||
script:
|
script:
|
||||||
- npmci command npm install -g typedoc typescript
|
- npmci command npm install -g @gitzone/tsdoc
|
||||||
|
- npmci npm prepare
|
||||||
- npmci npm install
|
- npmci npm install
|
||||||
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
- npmci command tsdoc
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
- notpriv
|
- notpriv
|
||||||
@ -130,13 +117,3 @@ pages:
|
|||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
||||||
windowsCompatibility:
|
|
||||||
image: stefanscherer/node-windows:10-build-tools
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npm install & npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- windows
|
|
||||||
allow_failure: true
|
|
||||||
|
38
README.md
38
README.md
@ -1,25 +1,20 @@
|
|||||||
# smartrequest
|
# @pushrocks/smartrequest
|
||||||
|
|
||||||
dropin replacement for request
|
dropin replacement for request
|
||||||
|
|
||||||
## Availabililty
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartrequest)
|
||||||
[](https://www.npmjs.com/package/smartrequest)
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartrequest)
|
||||||
[](https://GitLab.com/pushrocks/smartrequest)
|
* [github.com (source mirror)](https://github.com/pushrocks/smartrequest)
|
||||||
[](https://github.com/pushrocks/smartrequest)
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartrequest/)
|
||||||
[](https://pushrocks.gitlab.io/smartrequest/)
|
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
|
[](https://gitlab.com/pushrocks/smartrequest/commits/master)
|
||||||
[](https://GitLab.com/pushrocks/smartrequest/commits/master)
|
[](https://gitlab.com/pushrocks/smartrequest/commits/master)
|
||||||
[](https://GitLab.com/pushrocks/smartrequest/commits/master)
|
[](https://www.npmjs.com/package/@pushrocks/smartrequest)
|
||||||
[](https://www.npmjs.com/package/smartrequest)
|
[](https://snyk.io/test/npm/@pushrocks/smartrequest)
|
||||||
[](https://david-dm.org/pushrocks/smartrequest)
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
[](https://www.bithound.io/github/pushrocks/smartrequest/master/dependencies/npm)
|
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
[](https://www.bithound.io/github/pushrocks/smartrequest)
|
[](https://prettier.io/)
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@ -66,4 +61,9 @@ smartrequest.get('https://example.com/bigfile.mp4', optionsArg, true).then(res =
|
|||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
[](https://push.rocks)
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
|
[](https://maintainedby.lossless.com)
|
||||||
|
@ -3,9 +3,17 @@
|
|||||||
"coverageTreshold": 50
|
"coverageTreshold": 50
|
||||||
},
|
},
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [
|
"npmGlobalTools": [],
|
||||||
"npmts"
|
|
||||||
],
|
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "pushrocks",
|
||||||
|
"gitrepo": "smartrequest",
|
||||||
|
"shortDescription": "dropin replacement for request",
|
||||||
|
"npmPackagename": "@pushrocks/smartrequest",
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
1204
package-lock.json
generated
1204
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
31
package.json
31
package.json
@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartrequest",
|
"name": "@pushrocks/smartrequest",
|
||||||
"version": "1.1.6",
|
"version": "1.1.20",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "dropin replacement for request",
|
"description": "dropin replacement for request",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tsrun test/test.ts",
|
"test": "(tstest test/)",
|
||||||
"build": "(npmts)"
|
"build": "(tsbuild)"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -23,13 +23,26 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/smartrequest#README",
|
"homepage": "https://gitlab.com/pushrocks/smartrequest#README",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pushrocks/smartpromise": "^2.0.5",
|
"@pushrocks/smartpromise": "^3.0.2",
|
||||||
"@types/form-data": "^2.2.1",
|
"@types/form-data": "^2.2.1",
|
||||||
"form-data": "^2.3.2"
|
"form-data": "^2.3.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsrun": "^1.1.9",
|
"@gitzone/tsbuild": "^2.1.8",
|
||||||
"@pushrocks/tapbundle": "^3.0.1",
|
"@gitzone/tsrun": "^1.2.5",
|
||||||
"@types/node": "^10.5.2"
|
"@gitzone/tstest": "^1.0.20",
|
||||||
}
|
"@pushrocks/tapbundle": "^3.0.9",
|
||||||
|
"@types/node": "^11.13.6"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/*",
|
||||||
|
"ts_web/*",
|
||||||
|
"dist/*",
|
||||||
|
"dist_web/*",
|
||||||
|
"dist_ts_web/*",
|
||||||
|
"assets/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
17
test/test.ts
17
test/test.ts
@ -23,17 +23,18 @@ tap.test('should post a JSON document over http', async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
tap.skip.test('should deal with unix socks', async () => {
|
tap.skip.test('should deal with unix socks', async () => {
|
||||||
const socketResponse = await smartrequest.request('http://unix:/var/run/docker.sock:/containers/json', {
|
const socketResponse = await smartrequest.request(
|
||||||
headers: {
|
'http://unix:/var/run/docker.sock:/containers/json',
|
||||||
"Content-Type": "application/json",
|
{
|
||||||
"Host": "docker.sock"
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
Host: 'docker.sock'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
);
|
||||||
console.log(socketResponse.body);
|
console.log(socketResponse.body);
|
||||||
});
|
});
|
||||||
|
|
||||||
tap.skip.test('should correctly upload a file using formData', async () => {
|
tap.skip.test('should correctly upload a file using formData', async () => {});
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
tap.start();
|
tap.start();
|
||||||
|
@ -1,45 +1,23 @@
|
|||||||
import * as plugins from "./smartrequest.plugins";
|
import * as plugins from './smartrequest.plugins';
|
||||||
import * as interfaces from "./smartrequest.interfaces";
|
import * as interfaces from './smartrequest.interfaces';
|
||||||
import { request } from "./smartrequest.request";
|
import { request } from './smartrequest.request';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the interfae for FormFieldData
|
* the interfae for FormFieldData
|
||||||
*/
|
*/
|
||||||
export interface IFormField {
|
export interface IFormField {
|
||||||
name: string;
|
name: string;
|
||||||
type: "string" | "filePath" | "Buffer";
|
type: 'string' | 'filePath' | 'Buffer';
|
||||||
payload: string;
|
payload: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
const appendFormField = async (formDataArg: plugins.formData, formDataField: IFormField) => {
|
||||||
* retrieve the FormData headers in reliable way
|
if (formDataField.type === 'filePath') {
|
||||||
* @param formDataArg
|
let fileData = plugins.fs.readFileSync(plugins.path.join(process.cwd(), formDataField.payload));
|
||||||
*/
|
formDataArg.append('file', fileData, {
|
||||||
const getFormDataHeaders = (formDataArg: plugins.formData) => {
|
filename: 'upload.pdf',
|
||||||
const done = plugins.smartpromise.defer();
|
contentType: 'application/pdf'
|
||||||
formDataArg.getLength((err, length) => {
|
});
|
||||||
if (err) {
|
|
||||||
done.reject(err);
|
|
||||||
}
|
|
||||||
const headers = Object.assign(
|
|
||||||
{ "Content-Length": length },
|
|
||||||
formDataArg.getHeaders()
|
|
||||||
);
|
|
||||||
done.resolve(headers);
|
|
||||||
});
|
|
||||||
return done.promise;
|
|
||||||
};
|
|
||||||
|
|
||||||
const appendFormField = async (
|
|
||||||
formDataArg: plugins.formData,
|
|
||||||
formDataField: IFormField
|
|
||||||
) => {
|
|
||||||
if (formDataField.type === "filePath") {
|
|
||||||
formDataArg.append("type", "image");
|
|
||||||
let fileData = plugins.fs.createReadStream(
|
|
||||||
plugins.path.join(process.cwd(), formDataField.payload)
|
|
||||||
);
|
|
||||||
formDataArg.append("media", fileData, "upload.pdf");
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -52,11 +30,16 @@ export const postFormData = async (
|
|||||||
for (const formField of payloadArg) {
|
for (const formField of payloadArg) {
|
||||||
await appendFormField(form, formField);
|
await appendFormField(form, formField);
|
||||||
}
|
}
|
||||||
const pipeLog: any = async (...args) => {
|
const requestOptions = Object.assign({}, optionsArg, {
|
||||||
console.log(args);
|
method: 'POST',
|
||||||
};
|
headers: {
|
||||||
const requestOptions = Object.assign({}, optionsArg, { requestBody: form });
|
...optionsArg.headers,
|
||||||
|
...form.getHeaders()
|
||||||
|
},
|
||||||
|
requestBody: form
|
||||||
|
});
|
||||||
|
|
||||||
// lets fire the actual request for sending the formdata
|
// lets fire the actual request for sending the formdata
|
||||||
request(urlArg, requestOptions);
|
const response = await request(urlArg, requestOptions);
|
||||||
|
return response;
|
||||||
};
|
};
|
||||||
|
@ -3,4 +3,5 @@ import * as https from 'https';
|
|||||||
|
|
||||||
export interface ISmartRequestOptions extends https.RequestOptions {
|
export interface ISmartRequestOptions extends https.RequestOptions {
|
||||||
requestBody?: any;
|
requestBody?: any;
|
||||||
|
autoJsonParse?: boolean;
|
||||||
}
|
}
|
||||||
|
@ -7,4 +7,4 @@ import * as url from 'url';
|
|||||||
|
|
||||||
import * as smartpromise from '@pushrocks/smartpromise';
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
|
||||||
export {formData, http, https, fs, path, url, smartpromise };
|
export { formData, http, https, fs, path, url, smartpromise };
|
||||||
|
@ -1,27 +1,32 @@
|
|||||||
import * as https from "https";
|
import * as https from 'https';
|
||||||
import * as plugins from "./smartrequest.plugins";
|
import * as plugins from './smartrequest.plugins';
|
||||||
import * as interfaces from "./smartrequest.interfaces";
|
import * as interfaces from './smartrequest.interfaces';
|
||||||
|
|
||||||
import { IncomingMessage } from "http";
|
import { IncomingMessage } from 'http';
|
||||||
|
|
||||||
export interface IExtendedIncomingMessage extends IncomingMessage {
|
export interface IExtendedIncomingMessage extends IncomingMessage {
|
||||||
body: any;
|
body: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
const buildUtf8Response = (
|
const buildUtf8Response = (
|
||||||
incomingMessageArg: IncomingMessage
|
incomingMessageArg: IncomingMessage,
|
||||||
|
autoJsonParse = true
|
||||||
): Promise<IExtendedIncomingMessage> => {
|
): Promise<IExtendedIncomingMessage> => {
|
||||||
let done = plugins.smartpromise.defer<IExtendedIncomingMessage>();
|
let done = plugins.smartpromise.defer<IExtendedIncomingMessage>();
|
||||||
// Continuously update stream with data
|
// Continuously update stream with data
|
||||||
let body = "";
|
let body = '';
|
||||||
incomingMessageArg.on("data", function(chunkArg) {
|
incomingMessageArg.on('data', function(chunkArg) {
|
||||||
body += chunkArg;
|
body += chunkArg;
|
||||||
});
|
});
|
||||||
|
|
||||||
incomingMessageArg.on("end", function() {
|
incomingMessageArg.on('end', function() {
|
||||||
try {
|
if (autoJsonParse) {
|
||||||
(incomingMessageArg as IExtendedIncomingMessage).body = JSON.parse(body);
|
try {
|
||||||
} catch (err) {
|
(incomingMessageArg as IExtendedIncomingMessage).body = JSON.parse(body);
|
||||||
|
} catch (err) {
|
||||||
|
(incomingMessageArg as IExtendedIncomingMessage).body = body;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
(incomingMessageArg as IExtendedIncomingMessage).body = body;
|
(incomingMessageArg as IExtendedIncomingMessage).body = body;
|
||||||
}
|
}
|
||||||
done.resolve(incomingMessageArg as IExtendedIncomingMessage);
|
done.resolve(incomingMessageArg as IExtendedIncomingMessage);
|
||||||
@ -47,8 +52,18 @@ const parseSocketPathAndRoute = (stringToParseArg: string) => {
|
|||||||
return {
|
return {
|
||||||
socketPath: result[1],
|
socketPath: result[1],
|
||||||
path: result[2]
|
path: result[2]
|
||||||
}
|
};
|
||||||
}
|
};
|
||||||
|
|
||||||
|
const httpAgent = new plugins.http.Agent({
|
||||||
|
keepAlive: true,
|
||||||
|
keepAliveMsecs: 600000
|
||||||
|
});
|
||||||
|
|
||||||
|
const httpsAgent = new plugins.https.Agent({
|
||||||
|
keepAlive: true,
|
||||||
|
keepAliveMsecs: 600000
|
||||||
|
});
|
||||||
|
|
||||||
export let request = async (
|
export let request = async (
|
||||||
domainArg: string,
|
domainArg: string,
|
||||||
@ -57,6 +72,17 @@ export let request = async (
|
|||||||
): Promise<IExtendedIncomingMessage> => {
|
): Promise<IExtendedIncomingMessage> => {
|
||||||
let done = plugins.smartpromise.defer<any>();
|
let done = plugins.smartpromise.defer<any>();
|
||||||
|
|
||||||
|
// merge options
|
||||||
|
const defaultOptions: interfaces.ISmartRequestOptions = {
|
||||||
|
// agent: agent,
|
||||||
|
autoJsonParse: true
|
||||||
|
};
|
||||||
|
|
||||||
|
optionsArg = {
|
||||||
|
...defaultOptions,
|
||||||
|
...optionsArg
|
||||||
|
};
|
||||||
|
|
||||||
// parse url
|
// parse url
|
||||||
let parsedUrl: plugins.url.Url;
|
let parsedUrl: plugins.url.Url;
|
||||||
parsedUrl = plugins.url.parse(domainArg);
|
parsedUrl = plugins.url.parse(domainArg);
|
||||||
@ -67,54 +93,58 @@ export let request = async (
|
|||||||
optionsArg.path = parsedUrl.path;
|
optionsArg.path = parsedUrl.path;
|
||||||
|
|
||||||
// determine if unixsock
|
// determine if unixsock
|
||||||
if(testForUnixSock(domainArg)) {
|
if (testForUnixSock(domainArg)) {
|
||||||
const detailedUnixPath = parseSocketPathAndRoute(optionsArg.path)
|
const detailedUnixPath = parseSocketPathAndRoute(optionsArg.path);
|
||||||
optionsArg.socketPath = detailedUnixPath.socketPath;
|
optionsArg.socketPath = detailedUnixPath.socketPath;
|
||||||
optionsArg.path = detailedUnixPath.path;
|
optionsArg.path = detailedUnixPath.path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: support tcp sockets
|
||||||
|
|
||||||
// lets determine the request module to use
|
// lets determine the request module to use
|
||||||
const requestModule = (() => {
|
const requestModule = (() => {
|
||||||
if (parsedUrl.protocol === "https:") {
|
if (parsedUrl.protocol === 'https:') {
|
||||||
|
optionsArg.agent = httpsAgent;
|
||||||
return plugins.https;
|
return plugins.https;
|
||||||
} else if (parsedUrl.protocol === "http:") {
|
} else if (parsedUrl.protocol === 'http:') {
|
||||||
|
optionsArg.agent = httpAgent;
|
||||||
return plugins.http;
|
return plugins.http;
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`unsupported protocol: ${parsedUrl.protocol}`);
|
throw new Error(`unsupported protocol: ${parsedUrl.protocol}`);
|
||||||
}
|
}
|
||||||
})() as typeof plugins.https;
|
})() as typeof plugins.https;
|
||||||
|
|
||||||
|
|
||||||
// lets perform the actual request
|
// lets perform the actual request
|
||||||
let request = requestModule.request(optionsArg);
|
let request = requestModule.request(optionsArg);
|
||||||
|
|
||||||
// lets write the requestBody
|
// lets write the requestBody
|
||||||
if (optionsArg.requestBody) {
|
if (optionsArg.requestBody) {
|
||||||
if (
|
if (!(optionsArg.requestBody instanceof plugins.formData)) {
|
||||||
typeof optionsArg.requestBody !== "string"
|
if (typeof optionsArg.requestBody !== 'string') {
|
||||||
&& !(optionsArg.requestBody instanceof plugins.formData)
|
optionsArg.requestBody = JSON.stringify(optionsArg.requestBody);
|
||||||
) {
|
}
|
||||||
optionsArg.requestBody = JSON.stringify(optionsArg.requestBody);
|
|
||||||
request.write(optionsArg.requestBody);
|
request.write(optionsArg.requestBody);
|
||||||
request.end();
|
request.end();
|
||||||
} else if (optionsArg.requestBody instanceof plugins.formData) {
|
} else if (optionsArg.requestBody instanceof plugins.formData) {
|
||||||
optionsArg.requestBody.pipe(request);
|
optionsArg.requestBody.pipe(request).on('finish', event => {
|
||||||
|
request.end();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
request.end();
|
request.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
// lets handle an error
|
// lets handle an error
|
||||||
request.on("error", e => {
|
request.on('error', e => {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
});
|
});
|
||||||
|
|
||||||
// lets handle the response
|
// lets handle the response
|
||||||
request.on("response", async response => {
|
request.on('response', async response => {
|
||||||
if (streamArg) {
|
if (streamArg) {
|
||||||
done.resolve(response);
|
done.resolve(response);
|
||||||
} else {
|
} else {
|
||||||
const builtResponse = await buildUtf8Response(response)
|
const builtResponse = await buildUtf8Response(response, optionsArg.autoJsonParse);
|
||||||
done.resolve(builtResponse);
|
done.resolve(builtResponse);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
16
tslint.json
16
tslint.json
@ -1,3 +1,17 @@
|
|||||||
{
|
{
|
||||||
"extends": "tslint-config-standard"
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||||
|
"rules": {
|
||||||
|
"semicolon": [true, "always"],
|
||||||
|
"no-console": false,
|
||||||
|
"ordered-imports": false,
|
||||||
|
"object-literal-sort-keys": false,
|
||||||
|
"member-ordering": {
|
||||||
|
"options":{
|
||||||
|
"order": [
|
||||||
|
"static-method"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultSeverity": "warning"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user