aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/utils/authApi.ts
blob: 1dac1298cac986dfcce85f415bbf3a63477e83fa (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
const API_BASE_URL = import.meta.env.VITE_API_URL;

// Auth API functions
export const authApi = {
  async login(credentials: { username: string; password: string }) {
    credentials.username = credentials.username.trim();
    try {
      const response = await fetch(`${API_BASE_URL}/authenticate`, {
        method: 'POST',
        credentials: 'include',
        headers: {
          'Content-Type': 'application/json',
        },
        body: JSON.stringify(credentials),
      });

      const data = await response.json();

      if (!response.ok) {
        return { error: data.error || `HTTP ${response.status}` };
      }

      return { data };
    } catch (error) {
      console.error('Login failed:', error);
      return { error: 'Network error. Please check your connection.' };
    }
  },

  async register(userData: {
    username: string;
    email: string;
    password: string;
  }) {
    userData.username = userData.username.trim();
    try {
      const response = await fetch(`${API_BASE_URL}/register`, {
        method: 'POST',
        credentials: 'include',
        headers: {
          'Content-Type': 'application/json',
        },
        body: JSON.stringify(userData),
      });

      const data = await response.json();

      if (!response.ok) {
        return { error: data.error || `HTTP ${response.status}` };
      }

      return { data };
    } catch (error) {
      console.error('Registration failed:', error);
      return { error: 'Network error. Please check your connection.' };
    }
  },

  async logout() {
    try {
      const response = await fetch(`${API_BASE_URL}/logout`, {
        method: 'POST',
        credentials: 'include',
        headers: {
          'Content-Type': 'application/json',
        },
      });

      const data = await response.json();

      if (!response.ok) {
        return { error: data.error || `HTTP ${response.status}` };
      }

      return { data };
    } catch (error) {
      console.error('Logout failed:', error);
      return { error: 'Network error. Please check your connection.' };
    }
  },

  async getSession() {
    try {
      const response = await fetch(`${API_BASE_URL}/session`, {
        method: 'GET',
        credentials: 'include',
        headers: {
          'Content-Type': 'application/json',
        },
      });

      const data = await response.json();

      if (!response.ok) {
        return { error: data.error || `HTTP ${response.status}` };
      }

      return { data };
    } catch (error) {
      console.error('Session check failed:', error);
      return { error: 'Network error. Please check your connection.' };
    }
  },

  async getCurrentUser() {
    try {
      const response = await fetch(`${API_BASE_URL}/me`, {
        method: 'GET',
        credentials: 'include',
        headers: {
          'Content-Type': 'application/json',
        },
      });

      const data = await response.json();

      if (!response.ok) {
        return { error: data.error || `HTTP ${response.status}` };
      }

      return { data };
    } catch (error) {
      console.error('Get current user failed:', error);
      return { error: 'Network error. Please check your connection.' };
    }
  },
};

export const infoApi = {
  async getUsers() {
    try {
      const response = await fetch(`${API_BASE_URL}/users`, {
        method: 'GET',
        credentials: 'include',
        headers: {
          'Content-Type': 'application/json',
        },
      });

      const data = await response.json();

      if (!response.ok) {
        return { error: data.error || `HTTP ${response.status}` };
      }

      return { data };
    } catch (error) {
      console.error('Get users failed:', error);
      return { error: 'Network error. Please check your connection.' };
    }
  },
};

export interface User {
  id: number;
  username: string;
  email: string;
  isAdmin: boolean;
  bio?: string;
}

export interface SessionResponse {
  authenticated: boolean;
  user?: User;
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage