mirror of
https://github.com/joelwmale/webhook-action.git
synced 2026-09-04 01:44:43 +08:00
wip
This commit is contained in:
Vendored
-32
@@ -1,32 +0,0 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.http = void 0;
|
||||
var fetch = require('node-fetch');
|
||||
var https = require('https');
|
||||
var Http = (function () {
|
||||
function Http() {
|
||||
}
|
||||
Http.prototype.make = function (url, headers, body, ignoreCertificate) {
|
||||
var _this = this;
|
||||
return new Promise(function (resolve, reject) {
|
||||
fetch(url, _this.getOptions('post', headers, body, ignoreCertificate)).then(function (res) { return resolve(res); });
|
||||
});
|
||||
};
|
||||
Http.prototype.getOptions = function (method, headers, body, ignoreCertificate) {
|
||||
var options = {
|
||||
headers: headers ? JSON.parse(headers) : {},
|
||||
method: method
|
||||
};
|
||||
if (body) {
|
||||
options.body = body;
|
||||
}
|
||||
if (ignoreCertificate) {
|
||||
options.agent = new https.Agent({ rejectUnauthorized: false });
|
||||
}
|
||||
options.headers['content-type'] = 'application/json';
|
||||
return options;
|
||||
};
|
||||
return Http;
|
||||
}());
|
||||
exports.http = new Http();
|
||||
//# sourceMappingURL=http.js.map
|
||||
Reference in New Issue
Block a user