2020-02-24 09:23:15 +00:00
|
|
|
const core = require("@actions/core");
|
2020-07-30 16:27:27 +00:00
|
|
|
const { request, METHOD_POST } = require('./httpClient');
|
|
|
|
const { GithubActions } = require('./githubActions');
|
2020-04-21 11:55:30 +00:00
|
|
|
|
2020-04-21 10:41:30 +00:00
|
|
|
let auth = undefined
|
2020-03-25 10:15:19 +00:00
|
|
|
let customHeaders = {}
|
|
|
|
|
|
|
|
if (!!core.getInput('customHeaders')) {
|
|
|
|
try {
|
|
|
|
customHeaders = JSON.parse(core.getInput('customHeaders'));
|
|
|
|
} catch(error) {
|
|
|
|
core.error('Could not parse customHeaders string value')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-24 09:23:15 +00:00
|
|
|
const headers = { 'Content-Type': core.getInput('contentType') || 'application/json' }
|
|
|
|
|
2020-04-21 10:41:30 +00:00
|
|
|
if (!!core.getInput('username') || !!core.getInput('password')) {
|
2020-04-21 11:24:39 +00:00
|
|
|
core.debug('Add BasicHTTP Auth config')
|
|
|
|
|
2020-04-21 10:41:30 +00:00
|
|
|
auth = {
|
|
|
|
username: core.getInput('username'),
|
|
|
|
password: core.getInput('password')
|
|
|
|
}
|
2020-02-24 09:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!!core.getInput('bearerToken')) {
|
2020-05-06 18:43:17 +00:00
|
|
|
headers['Authorization'] = `Bearer ${core.getInput('bearerToken')}`;
|
2020-02-24 09:23:15 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 11:24:39 +00:00
|
|
|
const instanceConfig = {
|
2020-02-24 09:23:15 +00:00
|
|
|
baseURL: core.getInput('url', { required: true }),
|
|
|
|
timeout: parseInt(core.getInput('timeout') || 5000, 10),
|
2020-03-25 10:15:19 +00:00
|
|
|
headers: { ...headers, ...customHeaders }
|
2020-04-21 11:24:39 +00:00
|
|
|
}
|
|
|
|
|
2020-07-30 16:27:27 +00:00
|
|
|
const data = core.getInput('data') || '{}';
|
2021-01-24 12:14:13 +00:00
|
|
|
const files = core.getInput('files') || '{}';
|
2020-07-30 16:27:27 +00:00
|
|
|
const method = core.getInput('method') || METHOD_POST;
|
|
|
|
const preventFailureOnNoResponse = core.getInput('preventFailureOnNoResponse') === 'true';
|
2020-10-07 16:29:38 +00:00
|
|
|
const escapeData = core.getInput('escapeData') === 'true';
|
2020-04-21 11:24:39 +00:00
|
|
|
|
2021-01-24 12:14:13 +00:00
|
|
|
request({ data, method, instanceConfig, auth, preventFailureOnNoResponse, escapeData, files, actions: new GithubActions() })
|