| const { safeJsonParse } = require("../../http"); |
|
|
| |
| |
| |
| |
| |
| |
| async function executeApiCall(config, context) { |
| const { url, method, headers = [], body, bodyType, formData } = config; |
| const { introspect, logger } = context; |
| logger(`\x1b[43m[AgentFlowToolExecutor]\x1b[0m - executing API Call block`); |
| introspect(`Making ${method} request to external API...`); |
|
|
| const requestConfig = { |
| method, |
| headers: headers.reduce((acc, h) => ({ ...acc, [h.key]: h.value }), {}), |
| }; |
|
|
| if (["POST", "PUT", "PATCH"].includes(method)) { |
| if (bodyType === "form") { |
| const formDataObj = new URLSearchParams(); |
| formData.forEach(({ key, value }) => formDataObj.append(key, value)); |
| requestConfig.body = formDataObj.toString(); |
| requestConfig.headers["Content-Type"] = |
| "application/x-www-form-urlencoded"; |
| } else if (bodyType === "json") { |
| const parsedBody = safeJsonParse(body, null); |
| if (parsedBody !== null) { |
| requestConfig.body = JSON.stringify(parsedBody); |
| } |
| requestConfig.headers["Content-Type"] = "application/json"; |
| } else if (bodyType === "text") { |
| requestConfig.body = String(body); |
| } else { |
| requestConfig.body = body; |
| } |
| } |
|
|
| try { |
| introspect(`Sending body to ${url}: ${requestConfig?.body || "No body"}`); |
| const response = await fetch(url, requestConfig); |
| if (!response.ok) { |
| introspect(`Request failed with status ${response.status}`); |
| throw new Error(`HTTP error! status: ${response.status}`); |
| } |
|
|
| introspect(`API call completed`); |
| return await response |
| .text() |
| .then((text) => |
| safeJsonParse(text, "Failed to parse output from API call block") |
| ); |
| } catch (error) { |
| console.error(error); |
| throw new Error(`API Call failed: ${error.message}`); |
| } |
| } |
|
|
| module.exports = executeApiCall; |
|
|