2026-03-04 16:39:27 +01:00
|
|
|
import { TRPCError } from "@trpc/server";
|
2025-08-07 14:50:40 +02:00
|
|
|
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,
|
2026-01-12 10:05:42 +01:00
|
|
|
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,
|
|
|
|
|
getAnnunciByCod,
|
2025-08-29 18:18:37 +02:00
|
|
|
getAnnunciById_rawImgUrls,
|
2025-08-28 18:27:07 +02:00
|
|
|
getAnnunciListHandler,
|
|
|
|
|
getAnnunciMetaByCod,
|
2025-11-27 13:37:37 +01:00
|
|
|
getAnnunciRicerca,
|
2025-08-28 18:27:07 +02:00
|
|
|
getCodici_AnnunciHandler,
|
|
|
|
|
getOptions_AnnunciHandler,
|
|
|
|
|
getProprietarioDataHandler,
|
2026-03-02 15:35:23 +01:00
|
|
|
type ImgToRemove,
|
|
|
|
|
removeAnnuncioMedia,
|
|
|
|
|
type VideoToRemove,
|
2025-08-04 17:45:44 +02:00
|
|
|
} from "~/server/controllers/annunci.controller";
|
2026-01-12 10:05:42 +01:00
|
|
|
import { db } from "~/server/db";
|
|
|
|
|
import { NewMail } from "~/server/services/mailer";
|
2026-03-04 17:34:15 +01:00
|
|
|
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 }) => {
|
2026-03-04 17:34:15 +01:00
|
|
|
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
|
|
|
}),
|
2026-03-05 12:32:03 +01:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
getAnnuncio: publicProcedure
|
|
|
|
|
.input(
|
|
|
|
|
z.object({
|
|
|
|
|
cod: z.string(),
|
|
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
.query(async ({ input }) => {
|
|
|
|
|
return await getAnnunciByCod({ ...input });
|
|
|
|
|
}),
|
2025-08-29 18:18:37 +02:00
|
|
|
getAnnuncioById_rawImgUrls: publicProcedure
|
2025-08-28 18:27:07 +02:00
|
|
|
.input(
|
|
|
|
|
z.object({
|
|
|
|
|
id: zAnnuncioId,
|
|
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
.query(async ({ input }) => {
|
2025-08-29 18:18:37 +02:00
|
|
|
return await getAnnunciById_rawImgUrls({ ...input });
|
2025-08-28 18:27:07 +02:00
|
|
|
}),
|
2025-08-29 18:18:37 +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(),
|
2025-12-29 18:33:00 +01:00
|
|
|
consegna: z.number().array().optional(),
|
2025-08-29 16:18:32 +02:00
|
|
|
tipologia: z.string().optional(),
|
2025-12-29 19:10:46 +01:00
|
|
|
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,
|
|
|
|
|
});
|
|
|
|
|
}),
|
2025-11-27 13:37:37 +01:00
|
|
|
|
|
|
|
|
annunciRicerca: publicProcedure
|
2025-08-29 16:18:32 +02:00
|
|
|
.input(
|
|
|
|
|
z.object({
|
|
|
|
|
comune: z.string().optional(),
|
2025-12-29 18:33:00 +01:00
|
|
|
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(),
|
2025-12-29 19:10:46 +01:00
|
|
|
minBudget: z.number().optional(),
|
|
|
|
|
maxBudget: z.number().optional(),
|
2025-08-29 16:18:32 +02:00
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
.query(async ({ input }) => {
|
2025-11-27 13:37:37 +01:00
|
|
|
return await getAnnunciRicerca({
|
2025-08-29 16:18:32 +02:00
|
|
|
...input,
|
|
|
|
|
});
|
|
|
|
|
}),
|
2026-03-05 12:32:03 +01:00
|
|
|
/**Used for cron job */
|
2026-01-12 10:05:42 +01:00
|
|
|
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() };
|
|
|
|
|
}),
|
2026-03-02 15:35:23 +01:00
|
|
|
removeAnnuncioMedia: adminProcedure
|
|
|
|
|
.input(z.custom<ImgToRemove | VideoToRemove>())
|
|
|
|
|
.mutation(async ({ input }) => {
|
|
|
|
|
return await removeAnnuncioMedia({
|
|
|
|
|
...input,
|
|
|
|
|
});
|
|
|
|
|
}),
|
2026-03-04 16:39:27 +01:00
|
|
|
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
|
|
|
});
|