infoalloggi-monorepo/apps/infoalloggi/src/server/api/routers/annunci.ts

192 lines
4.6 KiB
TypeScript
Raw Normal View History

import { TRPCError } from "@trpc/server";
import { z } from "zod/v4";
2025-08-28 18:27:07 +02:00
import type { AnnunciUpdate } from "~/schemas/public/Annunci";
2025-08-04 17:45:44 +02:00
import {
2025-08-28 18:27:07 +02:00
adminProcedure,
apiProcedure,
2025-08-28 18:27:07 +02:00
createTRPCRouter,
protectedProcedure,
publicProcedure,
2025-08-04 17:45:44 +02:00
} from "~/server/api/trpc";
import {
2025-08-28 18:27:07 +02:00
editAnnuncioHandler,
get_AnnunciPositionsHandler,
getAnnunciById_rawImgUrls,
2025-08-28 18:27:07 +02:00
getAnnunciListHandler,
getAnnunciMetaByCod,
getAnnuncioData,
getAnnunciRicerca,
2025-08-28 18:27:07 +02:00
getCodici_AnnunciHandler,
getOptions_AnnunciHandler,
getProprietarioDataHandler,
type ImgToRemove,
removeAnnuncioMedia,
type VideoToRemove,
2025-08-04 17:45:44 +02:00
} from "~/server/controllers/annunci.controller";
import { db } from "~/server/db";
import { NewMail } from "~/server/services/mailer";
import {
genPdfSchedaAnnuncio,
invalidateCache,
SCHEDA_ANNUNCIO_CACHE_PREFIX,
} from "~/server/services/puppeteer.service";
2025-08-04 17:45:44 +02:00
import { zAnnuncioId, zServizioId } from "~/server/utils/zod_types";
export const annunciRouter = createTRPCRouter({
2025-08-29 16:18:32 +02:00
editAnnuncio: adminProcedure
.input(
z.object({ annuncioId: zAnnuncioId, data: z.custom<AnnunciUpdate>() }),
)
.mutation(async ({ input }) => {
await invalidateCache(
`${SCHEDA_ANNUNCIO_CACHE_PREFIX}${input.annuncioId}`,
);
2025-08-29 16:18:32 +02:00
return await editAnnuncioHandler({
...input,
});
}),
2025-08-28 18:27:07 +02:00
getAnnunciList: publicProcedure.query(async () => {
return await getAnnunciListHandler();
}),
2025-08-29 16:18:32 +02:00
getAnnunciOptions: publicProcedure.query(async () => {
return await getOptions_AnnunciHandler();
2025-08-28 18:27:07 +02:00
}),
getAnnuncioData: publicProcedure
2025-08-28 18:27:07 +02:00
.input(
z.object({
cod: z.string(),
}),
)
.query(async ({ input }) => {
return await getAnnuncioData({ ...input });
2025-08-28 18:27:07 +02:00
}),
getAnnuncioFull: adminProcedure
.input(
z.object({
id: zAnnuncioId,
}),
)
.query(async ({ input }) => {
return await db
.selectFrom("annunci")
.selectAll()
.where("id", "=", input.id)
.executeTakeFirst();
}),
getAnnuncioById_rawImgUrls: publicProcedure
2025-08-28 18:27:07 +02:00
.input(
z.object({
id: zAnnuncioId,
}),
)
.query(async ({ input }) => {
return await getAnnunciById_rawImgUrls({ ...input });
2025-08-28 18:27:07 +02:00
}),
2025-08-29 16:18:32 +02:00
getAnnuncioMeta: publicProcedure
2025-08-28 18:27:07 +02:00
.input(
z.object({
2025-08-29 16:18:32 +02:00
cod: z.string(),
2025-08-28 18:27:07 +02:00
}),
)
.query(async ({ input }) => {
2025-08-29 16:18:32 +02:00
return await getAnnunciMetaByCod({ ...input });
2025-08-28 18:27:07 +02:00
}),
2025-08-29 16:18:32 +02:00
getCodici: publicProcedure.query(async () => {
return await getCodici_AnnunciHandler();
}),
2025-08-28 18:27:07 +02:00
getMapping: publicProcedure
.input(
z.object({
comune: z.string().optional(),
consegna: z.number().array().optional(),
2025-08-29 16:18:32 +02:00
tipologia: z.string().optional(),
minBudget: z.number().optional(),
maxBudget: z.number().optional(),
2025-08-28 18:27:07 +02:00
}),
)
.query(async ({ input }) => {
return await get_AnnunciPositionsHandler({
...input,
});
}),
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
getProprietarioData: protectedProcedure
.input(z.object({ annuncioId: zAnnuncioId, servizioId: zServizioId }))
.query(async ({ input }) => {
return await getProprietarioDataHandler({
annuncioId: input.annuncioId,
servizioId: input.servizioId,
});
}),
annunciRicerca: publicProcedure
2025-08-29 16:18:32 +02:00
.input(
z.object({
comune: z.string().optional(),
consegna: z.number().array().optional(),
2025-08-29 16:18:32 +02:00
sort: z.enum(["Recenti", "Prezzo", "Consegna", "Mq"]).optional(),
tipologia: z.string().optional(),
minBudget: z.number().optional(),
maxBudget: z.number().optional(),
2025-08-29 16:18:32 +02:00
}),
)
.query(async ({ input }) => {
return await getAnnunciRicerca({
2025-08-29 16:18:32 +02:00
...input,
});
}),
/**Used for cron job */
checkAnnunci: apiProcedure.query(async () => {
const hasAnnunci = await db
.selectFrom("annunci")
.select("id")
.where("stato", "=", "Attivo")
.where("web", "is", true)
.execute();
if (hasAnnunci.length === 0) {
await NewMail({
template: {
mailType: "generic",
props: {
title: "Attenzione: Nessun annuncio attivo!",
testo:
"Nel sistema non è presente nessun annuncio con stato Attivo e visibile sul web.",
},
},
mail: {
subject: "Attenzione: Nessun annuncio attivo!",
to: "m.pedone98@gmail.com",
},
});
return { status: "no_annunci", timestamp: Date.now() };
}
return { status: "ok", timestamp: Date.now() };
}),
removeAnnuncioMedia: adminProcedure
.input(z.custom<ImgToRemove | VideoToRemove>())
.mutation(async ({ input }) => {
return await removeAnnuncioMedia({
...input,
});
}),
getSchedaAnnuncio: adminProcedure
.input(
z.object({
id: zAnnuncioId,
}),
)
.mutation(async ({ input }) => {
try {
return await genPdfSchedaAnnuncio(input.id);
} catch (e) {
throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: `Errore nella generazione della scheda: ${(e as Error).message}`,
});
}
}),
2025-08-04 17:45:44 +02:00
});