summary refs log tree commit diff
path: root/api/src/routes/auth
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-20 20:49:23 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-20 20:49:23 +1000
commit02bb5489537242ed2cffe4d913a17acfa5327c67 (patch)
tree2ff96e58d17fb2f20aca06be49f8aadc72a29679 /api/src/routes/auth
parentMerge branch '2fa' into slowcord (diff)
parentMerge branch '2fa' into feat/latestWebClient (diff)
downloadserver-02bb5489537242ed2cffe4d913a17acfa5327c67.tar.xz
Merge branch 'feat/latestWebClient' into slowcord
Diffstat (limited to 'api/src/routes/auth')
-rw-r--r--api/src/routes/auth/verify/view-backup-codes-challenge.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/api/src/routes/auth/verify/view-backup-codes-challenge.ts b/api/src/routes/auth/verify/view-backup-codes-challenge.ts
new file mode 100644
index 00000000..be651686
--- /dev/null
+++ b/api/src/routes/auth/verify/view-backup-codes-challenge.ts
@@ -0,0 +1,26 @@
+import { Router, Request, Response } from "express";
+import { route } from "@fosscord/api";
+import { FieldErrors, User } from "@fosscord/util";
+import bcrypt from "bcrypt";
+const router = Router();
+
+export interface BackupCodesChallengeSchema {
+	password: string;
+}
+
+router.post("/", route({ body: "BackupCodesChallengeSchema" }), async (req: Request, res: Response) => {
+	const { password } = req.body as BackupCodesChallengeSchema;
+
+	const user = await User.findOneOrFail({ id: req.user_id }, { select: ["data"] });
+
+	if (!await bcrypt.compare(password, user.data.hash || "")) {
+		throw FieldErrors({ password: { message: req.t("auth:login.INVALID_PASSWORD"), code: "INVALID_PASSWORD" } });
+	}
+
+	return res.json({
+		nonce: "NoncePlaceholder",
+		regenerate_nonce: "RegenNoncePlaceholder",
+	})
+});
+
+export default router;