blob: 806785e4077376aac43b1f8786ce474358dbc7aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import { userIdentity } from "$lib/Data/AniList/identity";
import { setUserSubscription } from "$lib/Database/SB/User/notifications";
import { decodeAuthCookieOrThrow } from "$lib/Effect/authCookie";
import { decodeRequestJsonOrThrow } from "$lib/Effect/requestBody";
import { Schema } from "effect";
const unauthorised = new Response("Unauthorised", { status: 401 });
export const POST = async ({ cookies, request, url }) => {
const userCookie = cookies.get("user");
const fingerprint = url.searchParams.get("p");
if (!userCookie || !fingerprint) return unauthorised;
const user = decodeAuthCookieOrThrow(userCookie);
const userId = (await userIdentity(user)).id;
if (!userId) return unauthorised;
await setUserSubscription(
userId,
(await decodeRequestJsonOrThrow(
request,
Schema.Record(Schema.String, Schema.Unknown),
)) as unknown as JSON,
fingerprint,
);
return new Response(null, { status: 200 });
};
|