mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-04-03 06:28:37 -04:00
30 lines
826 B
TypeScript
30 lines
826 B
TypeScript
import type {
|
|
Container,
|
|
RemoveContainerParams,
|
|
RemoveContainerQuery,
|
|
} from "#src/types/Container.ts";
|
|
import { getContainer, getContainerResponse } from "#src/utils/containers.ts";
|
|
import type { FastifyInstance, FastifyRequest } from "fastify";
|
|
|
|
export default (fastify: FastifyInstance) => {
|
|
fastify.get("/", (req: FastifyRequest<{ Params: Container }>) => {
|
|
const container = getContainer(req.params.id);
|
|
return getContainerResponse(container);
|
|
});
|
|
|
|
fastify.delete(
|
|
"/",
|
|
async (
|
|
req: FastifyRequest<{
|
|
Params: RemoveContainerParams;
|
|
Querystring: RemoveContainerQuery;
|
|
}>,
|
|
) => {
|
|
const container = getContainer(req.params.id);
|
|
|
|
await container.remove({ force: req.query.force === "true" });
|
|
return getContainerResponse(container);
|
|
},
|
|
);
|
|
};
|