Skip to content
Snippets Groups Projects
Commit b7b3ae18 authored by Paolo.Brasolin's avatar Paolo.Brasolin
Browse files

refactor: #be api cleanup

parent 192a3539
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ import { connection } from "./db"; ...@@ -6,7 +6,7 @@ import { connection } from "./db";
// NOTE: see https://www.npmjs.com/package/fastify-plugin for TS plugin definition // NOTE: see https://www.npmjs.com/package/fastify-plugin for TS plugin definition
const ParamsSchema = Type.Object({ const ParamsSchema = Type.Object({
id: Type.String({ format: "uuid" }), game_id: Type.String({ format: "uuid" }),
}); });
type ParamsType = Static<typeof ParamsSchema>; type ParamsType = Static<typeof ParamsSchema>;
...@@ -19,6 +19,8 @@ const GameSchema = Type.Object({ ...@@ -19,6 +19,8 @@ const GameSchema = Type.Object({
type GameType = Static<typeof GameSchema>; type GameType = Static<typeof GameSchema>;
const GamePatchSchema = Type.Omit(GameSchema, ["id"]);
const WordSchema = Type.Object({ const WordSchema = Type.Object({
id: Type.String({ format: "uuid" }), id: Type.String({ format: "uuid" }),
image: Type.String(), image: Type.String(),
...@@ -50,12 +52,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => { ...@@ -50,12 +52,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => {
if (word === undefined) { if (word === undefined) {
reply.code(404).send(); reply.code(404).send();
} else { } else {
reply.code(200).send({ reply.code(200).send(word);
id: word.id,
image: word.image,
ocr_confidence: word.ocr_confidence,
ocr_transcript: word.ocr_transcript,
});
} }
}, },
}); });
...@@ -65,7 +62,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => { ...@@ -65,7 +62,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => {
Reply: GameType; Reply: GameType;
}>({ }>({
method: "GET", method: "GET",
url: "/games/:id", url: "/games/:game_id",
schema: { schema: {
params: ParamsSchema, params: ParamsSchema,
response: { response: {
...@@ -75,7 +72,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => { ...@@ -75,7 +72,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => {
}, },
handler: async (request, reply) => { handler: async (request, reply) => {
const game = await connection<GameType>("games") const game = await connection<GameType>("games")
.where("id", request.params.id) .where("id", request.params.game_id)
.first(); .first();
if (game === undefined) { if (game === undefined) {
reply.code(404).send(); reply.code(404).send();
...@@ -105,15 +102,13 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => { ...@@ -105,15 +102,13 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => {
}, },
}); });
const GamePatchSchema = Type.Omit(GameSchema, ["id"]);
fastify.route<{ fastify.route<{
Params: ParamsType; Params: ParamsType;
Body: Static<typeof GamePatchSchema>; Body: Static<typeof GamePatchSchema>;
Reply: GameType; Reply: GameType;
}>({ }>({
method: "PATCH", method: "PATCH",
url: "/games/:id", url: "/games/:game_id",
schema: { schema: {
params: ParamsSchema, params: ParamsSchema,
body: GamePatchSchema, body: GamePatchSchema,
...@@ -123,7 +118,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => { ...@@ -123,7 +118,7 @@ const apiPlugin: FastifyPluginCallback = (fastify, options, next) => {
}, },
handler: async (request, reply) => { handler: async (request, reply) => {
const game = await connection<GameType>("games") const game = await connection<GameType>("games")
.where("id", request.params.id) .where("id", request.params.game_id)
.first(); .first();
if (game === undefined) { if (game === undefined) {
reply.code(404).send(); reply.code(404).send();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment