mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-12 21:08:46 +00:00
/api/mek/register/initial Endpoint 추가
This commit is contained in:
@@ -25,15 +25,6 @@ export const getAllUserClients = async (userId: number) => {
|
||||
return await db.select().from(userClient).where(eq(userClient.userId, userId)).execute();
|
||||
};
|
||||
|
||||
export const countActiveUserClients = async (userId: number) => {
|
||||
const userClients = await db
|
||||
.select({ count: count() })
|
||||
.from(userClient)
|
||||
.where(and(eq(userClient.userId, userId), eq(userClient.state, "active")))
|
||||
.execute();
|
||||
return userClients[0]?.count ?? null;
|
||||
};
|
||||
|
||||
export const getUserClient = async (userId: number, clientId: number) => {
|
||||
const userClients = await db
|
||||
.select()
|
||||
@@ -57,6 +48,20 @@ export const setUserClientStateToPending = async (userId: number, clientId: numb
|
||||
.execute();
|
||||
};
|
||||
|
||||
export const setUserClientStateToActive = async (userId: number, clientId: number) => {
|
||||
await db
|
||||
.update(userClient)
|
||||
.set({ state: "active" })
|
||||
.where(
|
||||
and(
|
||||
eq(userClient.userId, userId),
|
||||
eq(userClient.clientId, clientId),
|
||||
eq(userClient.state, "pending"),
|
||||
),
|
||||
)
|
||||
.execute();
|
||||
};
|
||||
|
||||
export const createUserClientChallenge = async (
|
||||
userId: number,
|
||||
clientId: number,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { and, or, eq, lt } from "drizzle-orm";
|
||||
import { and, or, eq, lt, desc } from "drizzle-orm";
|
||||
import db from "./drizzle";
|
||||
import { mek, clientMek, userClient } from "./schema";
|
||||
|
||||
@@ -7,6 +7,30 @@ export interface ClientMek {
|
||||
encMek: string;
|
||||
}
|
||||
|
||||
export const registerInitialMek = async (userId: number, createdBy: number, encMek: string) => {
|
||||
await db.transaction(async (tx) => {
|
||||
await tx
|
||||
.insert(mek)
|
||||
.values({
|
||||
userId,
|
||||
version: 1,
|
||||
createdBy,
|
||||
createdAt: new Date(),
|
||||
state: "active",
|
||||
})
|
||||
.execute();
|
||||
await tx
|
||||
.insert(clientMek)
|
||||
.values({
|
||||
userId,
|
||||
clientId: createdBy,
|
||||
mekVersion: 1,
|
||||
encMek,
|
||||
})
|
||||
.execute();
|
||||
});
|
||||
};
|
||||
|
||||
export const registerActiveMek = async (
|
||||
userId: number,
|
||||
version: number,
|
||||
@@ -63,15 +87,29 @@ export const registerActiveMek = async (
|
||||
});
|
||||
};
|
||||
|
||||
export const getActiveMek = async (userId: number) => {
|
||||
export const getInitialMek = async (userId: number) => {
|
||||
const meks = await db
|
||||
.select()
|
||||
.from(mek)
|
||||
.where(and(eq(mek.userId, userId), eq(mek.state, "active")))
|
||||
.where(and(eq(mek.userId, userId), eq(mek.version, 1)))
|
||||
.execute();
|
||||
return meks[0] ?? null;
|
||||
};
|
||||
|
||||
export const getNextActiveMekVersion = async (userId: number) => {
|
||||
const meks = await db
|
||||
.select({ version: mek.version })
|
||||
.from(mek)
|
||||
.where(eq(mek.userId, userId))
|
||||
.orderBy(desc(mek.version))
|
||||
.limit(1)
|
||||
.execute();
|
||||
if (!meks[0]) {
|
||||
throw new Error("No MEK found");
|
||||
}
|
||||
return meks[0].version + 1;
|
||||
};
|
||||
|
||||
export const getAllValidClientMeks = async (userId: number, clientId: number) => {
|
||||
return await db
|
||||
.select()
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { error, type Cookies } from "@sveltejs/kit";
|
||||
import jwt from "jsonwebtoken";
|
||||
import { getUserClient } from "$lib/server/db/client";
|
||||
import env from "$lib/server/loadenv";
|
||||
|
||||
type TokenPayload =
|
||||
@@ -18,6 +19,8 @@ export enum TokenError {
|
||||
INVALID,
|
||||
}
|
||||
|
||||
type Permission = "pendingClient" | "activeClient";
|
||||
|
||||
export const issueToken = (payload: TokenPayload) => {
|
||||
return jwt.sign(payload, env.jwt.secret, {
|
||||
expiresIn: payload.type === "access" ? env.jwt.accessExp : env.jwt.refreshExp,
|
||||
@@ -53,3 +56,35 @@ export const authenticate = (cookies: Cookies) => {
|
||||
clientId: tokenPayload.clientId,
|
||||
};
|
||||
};
|
||||
|
||||
export async function authorize(
|
||||
cookies: Cookies,
|
||||
requiredPermission: "pendingClient",
|
||||
): Promise<{ userId: number; clientId: number }>;
|
||||
|
||||
export async function authorize(
|
||||
cookies: Cookies,
|
||||
requiredPermission: "activeClient",
|
||||
): Promise<{ userId: number; clientId: number }>;
|
||||
|
||||
export async function authorize(
|
||||
cookies: Cookies,
|
||||
requiredPermission: Permission,
|
||||
): Promise<{ userId: number; clientId?: number }> {
|
||||
const tokenPayload = authenticate(cookies);
|
||||
const { userId, clientId } = tokenPayload;
|
||||
const userClient = clientId ? await getUserClient(userId, clientId) : undefined;
|
||||
|
||||
switch (requiredPermission) {
|
||||
case "pendingClient":
|
||||
if (!userClient || userClient.state !== "pending") {
|
||||
error(403, "Forbidden");
|
||||
}
|
||||
return tokenPayload;
|
||||
case "activeClient":
|
||||
if (!userClient || userClient.state !== "active") {
|
||||
error(403, "Forbidden");
|
||||
}
|
||||
return tokenPayload;
|
||||
}
|
||||
}
|
||||
|
||||
6
src/lib/server/modules/mek.ts
Normal file
6
src/lib/server/modules/mek.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { getInitialMek } from "$lib/server/db/mek";
|
||||
|
||||
export const isInitialMekNeeded = async (userId: number) => {
|
||||
const initialMek = await getInitialMek(userId);
|
||||
return !initialMek;
|
||||
};
|
||||
@@ -7,13 +7,12 @@ import {
|
||||
getClientByPubKey,
|
||||
createUserClient,
|
||||
getAllUserClients,
|
||||
countActiveUserClients,
|
||||
getUserClient,
|
||||
createUserClientChallenge,
|
||||
getUserClientChallenge,
|
||||
setUserClientStateToPending,
|
||||
} from "$lib/server/db/client";
|
||||
import { getActiveMek } from "$lib/server/db/mek";
|
||||
import { isInitialMekNeeded } from "$lib/server/modules/mek";
|
||||
import env from "$lib/server/loadenv";
|
||||
|
||||
export const getUserClientList = async (userId: number) => {
|
||||
@@ -73,13 +72,9 @@ export const getUserClientStatus = async (userId: number, clientId: number) => {
|
||||
error(500, "Invalid access token");
|
||||
}
|
||||
|
||||
const activeMek = await getActiveMek(userId);
|
||||
const activeUserClientCount = await countActiveUserClients(userId);
|
||||
const isInitialMekNeeded = !activeMek && activeUserClientCount === 0;
|
||||
|
||||
return {
|
||||
state: userClient.state,
|
||||
isInitialMekNeeded,
|
||||
isInitialMekNeeded: await isInitialMekNeeded(userId),
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
import { error } from "@sveltejs/kit";
|
||||
import { getAllUserClients } from "$lib/server/db/client";
|
||||
import { getAllUserClients, setUserClientStateToActive } from "$lib/server/db/client";
|
||||
import {
|
||||
getAllValidClientMeks,
|
||||
getActiveMek,
|
||||
registerInitialMek,
|
||||
registerActiveMek,
|
||||
getNextActiveMekVersion,
|
||||
type ClientMek,
|
||||
} from "$lib/server/db/mek";
|
||||
import { isInitialMekNeeded } from "$lib/server/modules/mek";
|
||||
|
||||
export const getClientMekList = async (userId: number, clientId: number) => {
|
||||
const clientMeks = await getAllValidClientMeks(userId, clientId);
|
||||
@@ -18,6 +20,19 @@ export const getClientMekList = async (userId: number, clientId: number) => {
|
||||
};
|
||||
};
|
||||
|
||||
export const registerInitialActiveMek = async (
|
||||
userId: number,
|
||||
createdBy: number,
|
||||
encMek: string,
|
||||
) => {
|
||||
if (!(await isInitialMekNeeded(userId))) {
|
||||
error(403, "Forbidden");
|
||||
}
|
||||
|
||||
await registerInitialMek(userId, createdBy, encMek);
|
||||
await setUserClientStateToActive(userId, createdBy);
|
||||
};
|
||||
|
||||
export const registerNewActiveMek = async (
|
||||
userId: number,
|
||||
createdBy: number,
|
||||
@@ -34,7 +49,6 @@ export const registerNewActiveMek = async (
|
||||
error(400, "Invalid key list");
|
||||
}
|
||||
|
||||
const oldActiveMek = await getActiveMek(userId);
|
||||
const newMekVersion = (oldActiveMek?.version ?? 0) + 1;
|
||||
const newMekVersion = await getNextActiveMekVersion(userId);
|
||||
await registerActiveMek(userId, newMekVersion, createdBy, clientMeks);
|
||||
};
|
||||
|
||||
@@ -1,14 +1,10 @@
|
||||
import { error, json } from "@sveltejs/kit";
|
||||
import { authenticate } from "$lib/server/modules/auth";
|
||||
import { authorize } from "$lib/server/modules/auth";
|
||||
import { getClientMekList } from "$lib/server/services/mek";
|
||||
import type { RequestHandler } from "@sveltejs/kit";
|
||||
|
||||
export const GET: RequestHandler = async ({ cookies }) => {
|
||||
const { userId, clientId } = authenticate(cookies);
|
||||
if (!clientId) {
|
||||
error(403, "Forbidden");
|
||||
}
|
||||
|
||||
const { userId, clientId } = await authorize(cookies, "activeClient");
|
||||
const { meks } = await getClientMekList(userId, clientId);
|
||||
return json({ meks });
|
||||
};
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { error, text } from "@sveltejs/kit";
|
||||
import { z } from "zod";
|
||||
import { authenticate } from "$lib/server/modules/auth";
|
||||
import { authorize } from "$lib/server/modules/auth";
|
||||
import { registerNewActiveMek } from "$lib/server/services/mek";
|
||||
import type { RequestHandler } from "@sveltejs/kit";
|
||||
|
||||
@@ -17,11 +17,7 @@ export const POST: RequestHandler = async ({ request, cookies }) => {
|
||||
.safeParse(await request.json());
|
||||
if (!zodRes.success) error(400, "Invalid request body");
|
||||
|
||||
const { userId, clientId } = authenticate(cookies);
|
||||
if (!clientId) {
|
||||
error(403, "Forbidden");
|
||||
}
|
||||
|
||||
const { userId, clientId } = await authorize(cookies, "activeClient");
|
||||
const { meks } = zodRes.data;
|
||||
await registerNewActiveMek(
|
||||
userId,
|
||||
@@ -31,5 +27,6 @@ export const POST: RequestHandler = async ({ request, cookies }) => {
|
||||
encMek: mek.trim(),
|
||||
})),
|
||||
);
|
||||
|
||||
return text("MEK registered", { headers: { "Content-Type": "text/plain" } });
|
||||
};
|
||||
|
||||
24
src/routes/api/mek/register/initial/+server.ts
Normal file
24
src/routes/api/mek/register/initial/+server.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { error, text } from "@sveltejs/kit";
|
||||
import { z } from "zod";
|
||||
import { authenticate } from "$lib/server/modules/auth";
|
||||
import { registerInitialActiveMek } from "$lib/server/services/mek";
|
||||
import type { RequestHandler } from "@sveltejs/kit";
|
||||
|
||||
export const POST: RequestHandler = async ({ request, cookies }) => {
|
||||
const zodRes = z
|
||||
.object({
|
||||
mek: z.string().base64().nonempty(),
|
||||
})
|
||||
.safeParse(await request.json());
|
||||
if (!zodRes.success) error(400, "Invalid request body");
|
||||
|
||||
const { userId, clientId } = authenticate(cookies);
|
||||
if (!clientId) {
|
||||
error(403, "Forbidden");
|
||||
}
|
||||
|
||||
const { mek } = zodRes.data;
|
||||
await registerInitialActiveMek(userId, clientId, mek);
|
||||
|
||||
return text("MEK registered", { headers: { "Content-Type": "text/plain" } });
|
||||
};
|
||||
Reference in New Issue
Block a user