Files
parcer/server/src/api/record.ts
2024-10-10 06:15:07 +05:30

165 lines
4.4 KiB
TypeScript

import { readFile, readFiles } from "../workflow-management/storage";
import { Router, Request, Response } from 'express';
import { requireAPIKey } from "../middlewares/api";
import Robot from "../models/Robot";
import Run from "../models/Run";
const router = Router();
const formatRecording = (recordingData: any) => {
const recordingMeta = recordingData.recording_meta;
const workflow = recordingData.recording.workflow || [];
const firstWorkflowStep = workflow[0]?.where?.url || '';
const inputParameters = [
{
type: "string",
name: "originUrl",
label: "Origin URL",
required: true,
defaultValue: firstWorkflowStep,
},
];
return {
id: recordingMeta.id,
name: recordingMeta.name,
createdAt: new Date(recordingMeta.createdAt).getTime(),
inputParameters,
};
};
router.get("/robots", requireAPIKey, async (req: Request, res: Response) => {
try {
const robots = await Robot.findAll({ raw: true });
const formattedRecordings = robots.map(formatRecording);
const response = {
statusCode: 200,
messageCode: "success",
robots: {
totalCount: formattedRecordings.length,
items: formattedRecordings,
},
};
res.status(200).json(response);
} catch (error) {
console.error("Error fetching recordings:", error);
res.status(500).json({
statusCode: 500,
messageCode: "error",
message: "Failed to retrieve recordings",
});
}
});
const formatRecordingById = (recordingData: any) => {
const recordingMeta = recordingData.recording_meta;
const workflow = recordingData.recording.workflow || [];
const firstWorkflowStep = workflow[0]?.where?.url || '';
const inputParameters = [
{
type: "string",
name: "originUrl",
label: "Origin URL",
required: true,
defaultValue: firstWorkflowStep,
},
];
return {
id: recordingMeta.id,
name: recordingMeta.name,
createdAt: new Date(recordingMeta.createdAt).getTime(),
inputParameters,
};
};
router.get("/robots/:id", requireAPIKey, async (req: Request, res: Response) => {
try {
const robot = await Robot.findOne({
where: {
'recording_meta.id': req.params.id
},
raw: true
});
const formattedRecording = formatRecordingById(robot);
const response = {
statusCode: 200,
messageCode: "success",
robot: formattedRecording,
};
res.status(200).json(response);
} catch (error) {
console.error("Error fetching recording:", error);
res.status(404).json({
statusCode: 404,
messageCode: "not_found",
message: `Recording with name "${req.params.fileName}" not found.`,
});
}
});
router.get("/robots/:id/runs", requireAPIKey, async (req: Request, res: Response) => {
try {
const runs = await Run.findAll({
where: {
robotId: req.params.id
},
raw: true
});
const response = {
statusCode: 200,
messageCode: "success",
runs: {
totalCount: runs.length,
items: runs,
},
};
res.status(200).json(response);
} catch (error) {
console.error("Error fetching runs:", error);
res.status(500).json({
statusCode: 500,
messageCode: "error",
message: "Failed to retrieve runs",
});
}
}
);
router.get("/robots/:id/runs/:runId", requireAPIKey, async (req: Request, res: Response) => {
try {
const run = await Run.findOne({
where: {
runId: req.params.runId
},
raw: true
});
const response = {
statusCode: 200,
messageCode: "success",
run: run,
};
res.status(200).json(response);
} catch (error) {
console.error("Error fetching run:", error);
res.status(404).json({
statusCode: 404,
messageCode: "not_found",
message: `Run with id "${req.params.runId}" not found.`,
});
}
});
export default router;