2021-09-27 14:47:55 +00:00
|
|
|
import * as trpc from "@trpc/server";
|
|
|
|
|
|
|
|
import { Context } from "./createContext";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to create a router with context
|
|
|
|
*/
|
|
|
|
export function createRouter() {
|
|
|
|
return trpc.router<Context>();
|
|
|
|
}
|
2021-09-28 08:57:30 +00:00
|
|
|
|
|
|
|
export function createProtectedRouter() {
|
|
|
|
return createRouter().middleware(({ ctx, next }) => {
|
|
|
|
if (!ctx.user) {
|
|
|
|
throw new trpc.TRPCError({ code: "UNAUTHORIZED" });
|
|
|
|
}
|
|
|
|
return next({
|
|
|
|
ctx: {
|
|
|
|
...ctx,
|
|
|
|
// infers that `user` is non-nullable to downstream procedures
|
|
|
|
user: ctx.user,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|