공개 키 등록 구현

This commit is contained in:
static
2024-12-28 01:05:31 +09:00
parent dec17ecba8
commit c00dbe7024
8 changed files with 82 additions and 4 deletions

View File

@@ -2,6 +2,14 @@ import { and, eq } from "drizzle-orm";
import db from "./drizzle";
import { client, userClient } from "./schema";
export const createClient = async (pubKey: string, userId: number) => {
await db.transaction(async (tx) => {
const insertRes = await tx.insert(client).values({ pubKey }).returning({ id: client.id });
const { id: clientId } = insertRes[0]!;
await tx.insert(userClient).values({ userId, clientId });
});
};
export const getClientByPubKey = async (pubKey: string) => {
const clients = await db.select().from(client).where(eq(client.pubKey, pubKey)).execute();
return clients[0] ?? null;

View File

@@ -1,3 +1,4 @@
import { error } from "@sveltejs/kit";
import jwt from "jsonwebtoken";
import env from "$lib/server/loadenv";
@@ -36,3 +37,22 @@ export const verifyToken = (token: string) => {
return TokenError.INVALID;
}
};
export const authenticate = (request: Request) => {
const accessToken = request.headers.get("Authorization");
if (!accessToken?.startsWith("Bearer ")) {
error(401, "Token required");
}
const tokenData = verifyToken(accessToken.slice(7));
if (tokenData === TokenError.EXPIRED) {
error(401, "Token expired");
} else if (tokenData === TokenError.INVALID || tokenData.type !== "access") {
error(401, "Invalid token");
}
return {
userId: tokenData.userId,
clientId: tokenData.clientId,
};
};

View File

@@ -0,0 +1,10 @@
import { error } from "@sveltejs/kit";
import { createClient, getClientByPubKey } from "$lib/server/db/client";
export const registerPubKey = async (userId: number, pubKey: string) => {
if (await getClientByPubKey(pubKey)) {
error(409, "Public key already registered");
}
await createClient(pubKey, userId);
};

View File

@@ -1,8 +1,7 @@
import { callAPI } from "$lib/hooks";
import { accessTokenStore } from "$lib/stores";
export const requestLogin = async (email: string, password: string) => {
const res = await callAPI("/api/auth/login", {
const res = await fetch("/api/auth/login", {
method: "POST",
headers: {
"Content-Type": "application/json",

View File

@@ -2,6 +2,7 @@
import { Button, TextButton } from "$lib/components/buttons";
import { BottomDiv } from "$lib/components/divs";
import BeforeContinueModal from "./BeforeContinueModal.svelte";
import { requestPubKeyRegistration } from "./service";
import IconKey from "~icons/material-symbols/key";
@@ -15,9 +16,15 @@
console.log(data.privKeyBase64);
};
const continueWithoutExport = () => {
const continueWithoutExport = async () => {
isBeforeContinueModalOpen = false;
const ok = await requestPubKeyRegistration(data.pubKeyBase64);
if (!ok) {
// TODO
return;
}
// TODO
};
</script>

View File

@@ -0,0 +1,12 @@
import { callAPI } from "$lib/hooks";
export const requestPubKeyRegistration = async (pubKeyBase64: string) => {
const res = await callAPI("/api/key/register", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ pubKey: pubKeyBase64 }),
});
return res.ok;
};

View File

@@ -13,7 +13,7 @@ export const POST: RequestHandler = async ({ request, cookies }) => {
pubKey: z.string().nonempty().optional(),
})
.safeParse(await request.json());
if (!zodRes.success) error(400, zodRes.error.message);
if (!zodRes.success) error(400, "Invalid request body");
const { email, password, pubKey } = zodRes.data;
const { accessToken, refreshToken } = await login(email.trim(), password.trim(), pubKey?.trim());

View File

@@ -0,0 +1,22 @@
import { error, text } from "@sveltejs/kit";
import { z } from "zod";
import { authenticate } from "$lib/server/modules/auth";
import { registerPubKey } from "$lib/server/services/key";
import type { RequestHandler } from "./$types";
export const POST: RequestHandler = async ({ request }) => {
const zodRes = z
.object({
pubKey: z.string().base64().nonempty(),
})
.safeParse(await request.json());
if (!zodRes.success) error(400, "Invalid request body");
const { userId, clientId } = authenticate(request);
if (clientId) {
error(403, "Forbidden");
}
await registerPubKey(userId, zodRes.data.pubKey);
return text("Public key registered");
};