mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
100 lines
2.8 KiB
TypeScript
100 lines
2.8 KiB
TypeScript
import {NextResponse} from "next/server";
|
|
import {handleDatabases} from "./helpers";
|
|
import * as drizzleDb from "@/db";
|
|
import {db} from "@/db";
|
|
import {EDbmsSchema} from "@/db/schema/types";
|
|
import {and, eq} from "drizzle-orm";
|
|
import {isUuidv4} from "@/utils/verify-uuid";
|
|
import {withUpdatedAt} from "@/db/utils";
|
|
import {logger} from "@/lib/logger";
|
|
|
|
|
|
const log = logger.child({module: "api/agent/status/route"});
|
|
|
|
|
|
export type databaseAgent = {
|
|
name: string,
|
|
dbms: EDbmsSchema,
|
|
generatedId: string
|
|
pingStatus: boolean
|
|
}
|
|
|
|
export type Body = {
|
|
version: string,
|
|
databases: databaseAgent[]
|
|
}
|
|
|
|
|
|
export async function POST(
|
|
request: Request,
|
|
{params}: { params: Promise<{ agentId: string }> }
|
|
) {
|
|
try {
|
|
const agentId = (await params).agentId
|
|
log.debug(`Agent ID: ${agentId}`)
|
|
const body: Body = await request.json();
|
|
const lastContact = new Date();
|
|
let message: string
|
|
|
|
if (!isUuidv4(agentId)) {
|
|
message = "agentId is not a valid uuid"
|
|
log.error({error: message}, "An error occurred")
|
|
return NextResponse.json(
|
|
{error: "agentId is not a valid uuid"},
|
|
{status: 500}
|
|
);
|
|
}
|
|
|
|
const agent = await db.query.agent.findFirst({
|
|
where: and(eq(drizzleDb.schemas.agent.id, agentId), eq(drizzleDb.schemas.agent.isArchived, false)),
|
|
})
|
|
|
|
if (!agent) {
|
|
message = "Agent not found"
|
|
return NextResponse.json({error: message}, {status: 404})
|
|
}
|
|
|
|
const [settings] = await db.select().from(drizzleDb.schemas.setting).where(eq(drizzleDb.schemas.setting.name, "system")).limit(1);
|
|
if (!settings) {
|
|
return NextResponse.json({error: "An error occured"}, {status: 404})
|
|
}
|
|
|
|
const databasesResponse = await handleDatabases(body, agent, lastContact, settings)
|
|
|
|
await db
|
|
.update(drizzleDb.schemas.agent)
|
|
.set(withUpdatedAt({
|
|
version: body.version,
|
|
lastContact: lastContact,
|
|
healthErrorCount: null
|
|
}))
|
|
.where(eq(drizzleDb.schemas.agent.id, agentId));
|
|
|
|
await db
|
|
.insert(drizzleDb.schemas.healthcheckLog)
|
|
.values({
|
|
kind: "agent",
|
|
status: "success",
|
|
objectId: agentId,
|
|
date: lastContact
|
|
})
|
|
|
|
const response = {
|
|
agent: {
|
|
id: agentId,
|
|
lastContact: lastContact
|
|
},
|
|
databases: databasesResponse
|
|
}
|
|
|
|
return Response.json(response)
|
|
} catch (error) {
|
|
log.error({error: error}, "Error in POST handler")
|
|
return NextResponse.json(
|
|
{error: 'Internal server error'},
|
|
{status: 500}
|
|
);
|
|
}
|
|
}
|
|
|