mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* fix(deps): update tanstack-query monorepo to ^5.21.2 * fix(deps): update tanstack-query monorepo * fix: type issue with transformer * fix: issues with next-auth, updated to next canary * chore: fix type issue in trpc route * chore: fix formatting --------- Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
115 lines
3.2 KiB
TypeScript
115 lines
3.2 KiB
TypeScript
/**
|
|
* 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
|
|
*/
|
|
import { initTRPC, TRPCError } from "@trpc/server";
|
|
import superjson from "superjson";
|
|
|
|
import type { Session } from "@homarr/auth";
|
|
import { auth } from "@homarr/auth";
|
|
import { db } from "@homarr/db";
|
|
import { ZodError } from "@homarr/validation";
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* This helper generates the "internals" for a tRPC context. The API handler and RSC clients each
|
|
* wrap this and provides the required context.
|
|
*
|
|
* @see https://trpc.io/docs/server/context
|
|
*/
|
|
export const createTRPCContext = async (opts: {
|
|
headers: Headers;
|
|
session: Session | null;
|
|
}) => {
|
|
const session = opts.session ?? (await auth());
|
|
const source = opts.headers.get("x-trpc-source") ?? "unknown";
|
|
|
|
console.log(">>> tRPC Request from", source, "by", session?.user);
|
|
|
|
return {
|
|
session,
|
|
db,
|
|
};
|
|
};
|
|
|
|
/**
|
|
* 2. INITIALIZATION
|
|
*
|
|
* This is where the trpc api is initialized, connecting the context and
|
|
* transformer
|
|
*/
|
|
const t = initTRPC.context<typeof createTRPCContext>().create({
|
|
transformer: superjson,
|
|
errorFormatter: ({ shape, error }) => ({
|
|
...shape,
|
|
data: {
|
|
...shape.data,
|
|
zodError: error.cause instanceof ZodError ? error.cause.flatten() : null,
|
|
},
|
|
}),
|
|
});
|
|
|
|
/**
|
|
* Create a server-side caller
|
|
* @see https://trpc.io/docs/server/server-side-calls
|
|
*/
|
|
export const createCallerFactory = t.createCallerFactory;
|
|
|
|
/**
|
|
* 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 folder
|
|
*/
|
|
|
|
/**
|
|
* This is how you create new routers and subrouters in your tRPC API
|
|
* @see https://trpc.io/docs/router
|
|
*/
|
|
export const createTRPCRouter = t.router;
|
|
|
|
/**
|
|
* Public (unauthed) 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
|
|
*/
|
|
const enforceUserIsAuthed = t.middleware(({ ctx, next }) => {
|
|
if (!ctx.session?.user) {
|
|
throw new TRPCError({ code: "UNAUTHORIZED" });
|
|
}
|
|
return next({
|
|
ctx: {
|
|
// infers the `session` as non-nullable
|
|
session: { ...ctx.session, user: ctx.session.user },
|
|
},
|
|
});
|
|
});
|
|
|
|
/**
|
|
* Protected (authed) 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
|
|
*/
|
|
export const protectedProcedure = t.procedure.use(enforceUserIsAuthed);
|