summaryrefslogtreecommitdiff
path: root/src/lib/api/ChangePassword.tsx
blob: 93900b9d2d5f7783447679e6fd27ce982c2ac264 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const API_URL = process.env.NEXT_PUBLIC_API_URL;

export type ChangePasswordResponse =
    | { data: { success: true }; error: null }
    | { data: null; error: { general: string } };

export const changePassword = async (
    currentPassword: string,
    newPassword: string,
    repeatPassword: string,
): Promise<ChangePasswordResponse> => {
    try {
        const res = await fetch(`${API_URL}/api/users/password`, {
            method: 'PATCH',
            headers: {
                'Content-Type': 'application/json',
            },
            credentials: 'include',
            body: JSON.stringify({
                current_password: currentPassword,
                new_password: newPassword,
                repeat_password: repeatPassword,
            }),
        });

        const data = await res.json().catch(() => null);

        if (!res.ok) {
            const detail = data?.detail;

            return {
                data: null,
                error: {
                    general:
                        typeof detail === 'string'
                            ? detail
                            : detail?.msg || 'Ошибка смены пароля',
                },
            };
        }

        return {
            data: { success: true },
            error: null,
        };
    } catch (err: any) {
        return {
            data: null,
            error: {
                general: err?.message || 'Network error',
            },
        };
    }
};