2023-04-20 04:20:00 -06:00
|
|
|
/**
|
|
|
|
* YOU PROBABLY DON'T NEED TO EDIT THIS FILE, UNLESS:
|
|
|
|
* 1. You want to modify request context (see Part 1).
|
|
|
|
* 2. You want to create a new middleware or type of procedure (see Part 3).
|
|
|
|
*
|
|
|
|
* TL;DR - This is where all the tRPC server stuff is created and plugged in. The pieces you will
|
|
|
|
* need to use are documented accordingly near the end.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 1. CONTEXT
|
|
|
|
*
|
|
|
|
* This section defines the "contexts" that are available in the backend API.
|
|
|
|
*
|
|
|
|
* These allow you to access things when processing a request, like the database, the session, etc.
|
|
|
|
*/
|
|
|
|
import { type CreateNextContextOptions } from "@trpc/server/adapters/next";
|
|
|
|
import { type Session } from "next-auth";
|
|
|
|
|
|
|
|
import { getServerAuthSession } from "~/server/auth";
|
|
|
|
import { prisma } from "~/server/db";
|
2023-07-03 15:37:14 -06:00
|
|
|
import { Redis } from "@upstash/redis";
|
2023-04-20 04:20:00 -06:00
|
|
|
|
2023-06-20 12:54:48 -06:00
|
|
|
const rateLimit = new Ratelimit({
|
2023-07-03 15:37:14 -06:00
|
|
|
redis: Redis.fromEnv(),
|
2023-06-20 12:54:48 -06:00
|
|
|
limiter: Ratelimit.slidingWindow(
|
|
|
|
Number(env.UPSTASH_RATELIMIT_REQUESTS),
|
|
|
|
`${Number(env.UPSTASH_RATELIMIT_SECONDS)}s`
|
|
|
|
),
|
|
|
|
analytics: true,
|
|
|
|
});
|
|
|
|
|
2023-04-20 04:20:00 -06:00
|
|
|
type CreateContextOptions = {
|
|
|
|
session: Session | null;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This helper generates the "internals" for a tRPC context. If you need to use it, you can export
|
|
|
|
* it from here.
|
|
|
|
*
|
|
|
|
* Examples of things you may need it for:
|
|
|
|
* - testing, so we don't have to mock Next.js' req/res
|
|
|
|
* - tRPC's `createSSGHelpers`, where we don't have req/res
|
|
|
|
*
|
|
|
|
* @see https://create.t3.gg/en/usage/trpc#-servertrpccontextts
|
|
|
|
*/
|
|
|
|
const createInnerTRPCContext = (opts: CreateContextOptions) => {
|
|
|
|
return {
|
|
|
|
session: opts.session,
|
|
|
|
prisma,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the actual context you will use in your router. It will be used to process every request
|
|
|
|
* that goes through your tRPC endpoint.
|
|
|
|
*
|
|
|
|
* @see https://trpc.io/docs/context
|
|
|
|
*/
|
|
|
|
export const createTRPCContext = async (opts: CreateNextContextOptions) => {
|
|
|
|
const { req, res } = opts;
|
|
|
|
|
|
|
|
// Get the session from the server using the getServerSession wrapper function
|
|
|
|
const session = await getServerAuthSession({ req, res });
|
|
|
|
|
|
|
|
return createInnerTRPCContext({
|
|
|
|
session,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 2. INITIALIZATION
|
|
|
|
*
|
|
|
|
* This is where the tRPC API is initialized, connecting the context and transformer.
|
|
|
|
*/
|
|
|
|
import { initTRPC, TRPCError } from "@trpc/server";
|
|
|
|
import superjson from "superjson";
|
2023-06-20 12:54:48 -06:00
|
|
|
import { Ratelimit } from "@upstash/ratelimit";
|
|
|
|
import { env } from "~/env.mjs";
|
2023-04-20 04:20:00 -06:00
|
|
|
|
|
|
|
const t = initTRPC.context<typeof createTRPCContext>().create({
|
|
|
|
transformer: superjson,
|
|
|
|
errorFormatter({ shape }) {
|
|
|
|
return shape;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 3. ROUTER & PROCEDURE (THE IMPORTANT BIT)
|
|
|
|
*
|
|
|
|
* These are the pieces you use to build your tRPC API. You should import these a lot in the
|
|
|
|
* "/src/server/api/routers" directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is how you create new routers and sub-routers in your tRPC API.
|
|
|
|
*
|
|
|
|
* @see https://trpc.io/docs/router
|
|
|
|
*/
|
|
|
|
export const createTRPCRouter = t.router;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Public (unauthenticated) procedure
|
|
|
|
*
|
|
|
|
* This is the base piece you use to build new queries and mutations on your tRPC API. It does not
|
|
|
|
* guarantee that a user querying is authorized, but you can still access user session data if they
|
|
|
|
* are logged in.
|
|
|
|
*/
|
|
|
|
export const publicProcedure = t.procedure;
|
|
|
|
|
|
|
|
/** Reusable middleware that enforces users are logged in before running the procedure. */
|
2023-06-20 12:54:48 -06:00
|
|
|
const enforceRouteProtection = t.middleware(async ({ ctx, next }) => {
|
|
|
|
// Auth
|
2023-04-20 04:20:00 -06:00
|
|
|
if (!ctx.session || !ctx.session.user) {
|
|
|
|
throw new TRPCError({ code: "UNAUTHORIZED" });
|
|
|
|
}
|
2023-06-20 12:54:48 -06:00
|
|
|
const { success } = await rateLimit.limit(
|
|
|
|
`${env.APP_ENV}_${ctx.session.user.id}`
|
|
|
|
);
|
|
|
|
if (!success) throw new TRPCError({ code: "TOO_MANY_REQUESTS" });
|
|
|
|
|
2023-04-20 04:20:00 -06:00
|
|
|
return next({
|
|
|
|
ctx: {
|
|
|
|
session: { ...ctx.session, user: ctx.session.user },
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Protected (authenticated) procedure
|
|
|
|
*
|
|
|
|
* If you want a query or mutation to ONLY be accessible to logged in users, use this. It verifies
|
|
|
|
* the session is valid and guarantees `ctx.session.user` is not null.
|
|
|
|
*
|
|
|
|
* @see https://trpc.io/docs/procedures
|
|
|
|
*/
|
2023-06-20 12:54:48 -06:00
|
|
|
export const protectedProcedure = t.procedure.use(enforceRouteProtection);
|