feat: add iwre transformer
All checks were successful
/ deploy_site (push) Successful in 22s

This commit is contained in:
Minhyeok Park 2025-03-31 19:14:51 +09:00
parent 2edc5171d9
commit 70414baac0
Signed by: pmh_only
SSH Key Fingerprint: SHA256:g/OyGvi2pcd8ub9mqge/ohmDP0fZX/xOPWPIcM+9XpI
2 changed files with 61 additions and 1 deletions

View File

@ -0,0 +1,58 @@
import { Transform } from './Transform'
export const IWRETransform: Transform = {
name: 'iwre',
fn: async (v: string) => {
// Split the input into sections using blank lines as delimiters.
const sections = v
.split(/\n\s*\n/)
.map((s) => s.trim())
.filter(Boolean)
if (sections.length === 0) return ''
// Process the first section (request line and headers)
const headerLines = sections[0]
.split('\n')
.map((line) => line.trim())
.filter(Boolean)
if (headerLines.length === 0) return ''
// The first line should be something like "POST https://test.example.com"
const [method, url] = headerLines[0].split(' ')
const psParts: string[] = [
`Invoke-WebRequest -Uri "${url}" -Method ${method.toUpperCase()}`
]
// Build a headers object
const headers: { [key: string]: string } = {}
for (let i = 1; i < headerLines.length; i++) {
const line = headerLines[i]
const colonIndex = line.indexOf(':')
if (colonIndex === -1) continue // Skip lines that aren't valid headers
const headerName = line.substring(0, colonIndex).trim()
const headerValue = line.substring(colonIndex + 1).trim()
headers[headerName] = headerValue
}
if (Object.keys(headers).length > 0) {
// Build the header hashtable string for PowerShell using actual newlines.
const headerStr = Object.entries(headers)
.map(([key, value]) => ` "${key}" = "${value}"`)
.join('\n')
psParts.push(`-Headers @{\n${headerStr}\n}`)
}
// Process the body (if any)
if (sections.length > 1) {
const body = sections.slice(1).join('\n\n').trim()
if (body) {
// Escape single quotes by doubling them.
const escapedBody = body.replace(/'/g, "''")
psParts.push(`-Body '${escapedBody}'`)
}
}
// Join parts with PowerShell's line continuation character (backtick) and an actual newline.
return psParts.join(' `\n')
}
}

View File

@ -18,6 +18,7 @@ import {
JSONToPythonDictTransform JSONToPythonDictTransform
} from './PythonTransforms' } from './PythonTransforms'
import { CurlTransform } from './CurlTransform' import { CurlTransform } from './CurlTransform'
import { IWRETransform } from './IWRTransform'
export interface TransformCheckboxOption { export interface TransformCheckboxOption {
type: 'CHECKBOX' type: 'CHECKBOX'
@ -111,5 +112,6 @@ export const transforms: Transform[] = [
JSONToPythonDictTransform, JSONToPythonDictTransform,
GzipCompressTransform, GzipCompressTransform,
GzipDecompressTransform, GzipDecompressTransform,
CurlTransform CurlTransform,
IWRETransform
] ]