summary refs log tree commit diff
path: root/api/src/util/User.ts
blob: 4d9065c430a75b9c44aa54e32291a047fc145daf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { toObject, User, PublicUserProjection } from "@fosscord/util";
import { HTTPError } from "lambert-server";

export { PublicUserProjection };

export async function getPublicUser(user_id: string, additional_fields?: any) {
	const user = await User.findOneOrFail(
		{ id: user_id },
		{
			...PublicUserProjection,
			...additional_fields
		}
	);
	if (!user) throw new HTTPError("User not found", 404);
	return user;
}