boring.tools-poc/apps/api/src/changelog/delete.ts
Lars Hampe f161d6b468
Some checks failed
Build and Push Docker Image / tests (push) Failing after 1m4s
Build and Push Docker Image / build (push) Has been skipped
feat(api): complete refactor of openapi routes
2024-11-06 22:20:10 +01:00

46 lines
1.2 KiB
TypeScript

import { changelog, db } from '@boring.tools/database'
import { GeneralOutput } from '@boring.tools/schema'
import { createRoute } from '@hono/zod-openapi'
import { and, eq } from 'drizzle-orm'
import { HTTPException } from 'hono/http-exception'
import type { changelogApi } from '.'
import { verifyAuthentication } from '../utils/authentication'
import { openApiErrorResponses, openApiSecurity } from '../utils/openapi'
export const route = createRoute({
method: 'delete',
path: '/:id',
tags: ['changelog'],
responses: {
200: {
content: {
'application/json': {
schema: GeneralOutput,
},
},
description: 'Removes a changelog by id',
},
...openApiErrorResponses,
},
...openApiSecurity,
})
export const registerChangelogDelete = async (api: typeof changelogApi) => {
return api.openapi(route, async (c) => {
const userId = await verifyAuthentication(c)
const id = c.req.param('id')
const [result] = await db
.delete(changelog)
.where(and(eq(changelog.userId, userId), eq(changelog.id, id)))
.returning()
if (!result) {
throw new HTTPException(404, { message: 'Not found' })
}
return c.json(GeneralOutput.parse(result), 200)
})
}