sendou.ink/app/features/api-public/routes/user.$identifier.ids.ts

28 lines
796 B
TypeScript

import type { LoaderFunctionArgs } from "react-router";
import { z } from "zod/v4";
import { identifierToUserIdQuery } from "~/features/user-page/UserRepository.server";
import { notFoundIfFalsy, parseParams } from "~/utils/remix.server";
import type { GetUserIdsResponse } from "../schema";
const paramsSchema = z.object({
identifier: z.string(),
});
export const loader = async ({ params }: LoaderFunctionArgs) => {
const { identifier } = parseParams({ params, schema: paramsSchema });
const user = notFoundIfFalsy(
await identifierToUserIdQuery(identifier)
.select(["User.discordId", "User.customUrl"])
.executeTakeFirst(),
);
const result: GetUserIdsResponse = {
id: user.id,
discordId: user.discordId,
customUrl: user.customUrl,
};
return Response.json(result);
};