public commit

This commit is contained in:
dswbx
2024-11-16 12:01:47 +01:00
commit 90f80c4280
582 changed files with 49291 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
import { StringEnum, Type } from "core/utils";
import type { InputsMap } from "../../flows/Execution";
import { Task, dynamic } from "../Task";
const FetchMethods = ["GET", "POST", "PUT", "PATCH", "DELETE"];
export class FetchTask<Output extends Record<string, any>> extends Task<
typeof FetchTask.schema,
Output
> {
type = "fetch";
static override schema = Type.Object({
url: Type.String({
pattern: "^(http|https)://"
}),
//method: Type.Optional(Type.Enum(FetchMethodsEnum)),
//method: Type.Optional(dynamic(Type.String({ enum: FetchMethods, default: "GET" }))),
method: Type.Optional(dynamic(StringEnum(FetchMethods, { default: "GET" }))),
headers: Type.Optional(
dynamic(
Type.Array(
Type.Object({
key: Type.String(),
value: Type.String()
})
),
JSON.parse
)
),
body: Type.Optional(dynamic(Type.String())),
normal: Type.Optional(dynamic(Type.Number(), Number.parseInt))
});
protected getBody(): string | undefined {
const body = this.params.body;
if (!body) return;
if (typeof body === "string") return body;
if (typeof body === "object") return JSON.stringify(body);
throw new Error(`Invalid body type: ${typeof body}`);
}
async execute() {
//console.log(`method: (${this.params.method})`);
if (!FetchMethods.includes(this.params.method ?? "GET")) {
throw this.error("Invalid method", {
given: this.params.method,
valid: FetchMethods
});
}
const body = this.getBody();
const headers = new Headers(this.params.headers?.map((h) => [h.key, h.value]));
/*console.log("[FETCH]", {
url: this.params.url,
method: this.params.method ?? "GET",
headers,
body
});*/
const result = await fetch(this.params.url, {
method: this.params.method ?? "GET",
headers,
body
});
//console.log("fetch:response", result);
if (!result.ok) {
throw this.error("Failed to fetch", {
status: result.status,
statusText: result.statusText
});
}
const data = (await result.json()) as Output;
//console.log("fetch:response:data", data);
return data;
}
}