httpsnippet-lite
Version:
HTTP Request snippet generator for *most* languages
49 lines (48 loc) • 2.18 kB
JavaScript
import { CodeBuilder } from "../../helpers/code-builder.mjs";
import { escapeString } from "../../helpers/escape.mjs";
import { getHeader } from "../../helpers/headers.mjs";
export const generatePowershellConvert = (command) => {
const convert = ({ method, headersObj, cookies, uriObj, fullUrl, postData, allHeaders, }) => {
const { push, join } = new CodeBuilder();
const methods = ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS'];
if (!methods.includes(method.toUpperCase())) {
return 'Method not supported';
}
const commandOptions = [];
// Add headers, including the cookies
const headers = Object.keys(headersObj);
// construct headers
if (headers.length) {
push('$headers=@{}');
headers.forEach(key => {
if (key !== 'connection') {
// Not allowed
push(`$headers.Add("${key}", "${escapeString(headersObj[key], { escapeChar: '`' })}")`);
}
});
commandOptions.push('-Headers $headers');
}
// construct cookies
if (cookies.length) {
push('$session = New-Object Microsoft.PowerShell.Commands.WebRequestSession');
cookies.forEach(cookie => {
push('$cookie = New-Object System.Net.Cookie');
push(`$cookie.Name = '${cookie.name}'`);
push(`$cookie.Value = '${cookie.value}'`);
push(`$cookie.Domain = '${uriObj.host}'`);
push('$session.Cookies.Add($cookie)');
});
commandOptions.push('-WebSession $session');
}
if (postData === null || postData === void 0 ? void 0 : postData.text) {
commandOptions.push(`-ContentType '${escapeString(getHeader(allHeaders, 'content-type'), {
delimiter: "'",
escapeChar: '`',
})}'`);
commandOptions.push(`-Body '${postData.text}'`);
}
push(`$response = ${command} -Uri '${fullUrl}' -Method ${method} ${commandOptions.join(' ')}`);
return join();
};
return convert;
};