30 lines
647 B
TypeScript
30 lines
647 B
TypeScript
import { initTRPC, TRPCError } from "@trpc/server";
|
|
import { type Context } from "./context";
|
|
import superjson from "superjson";
|
|
|
|
const t = initTRPC.context<Context>().create({
|
|
transformer: superjson,
|
|
errorFormatter({ shape }) {
|
|
return shape;
|
|
},
|
|
});
|
|
|
|
const isAuthed = t.middleware(({ ctx, next }) => {
|
|
if (!ctx.session) {
|
|
throw new TRPCError({
|
|
code: "UNAUTHORIZED",
|
|
message: "Not authenticated",
|
|
});
|
|
}
|
|
|
|
return next({
|
|
ctx: {
|
|
session: ctx.session,
|
|
},
|
|
});
|
|
});
|
|
|
|
export const router = t.router;
|
|
export const publicProcedure = t.procedure;
|
|
export const protectedProcedure = t.procedure.use(isAuthed);
|