-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathprofiles.ts
268 lines (248 loc) · 6.89 KB
/
profiles.ts
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import { SUPABASE } from './supabaseClient';
import Logger from '../logger';
import { Profile } from '../types/supabase';
const LOG = new Logger('profiles');
/**
* Get a single users profile information
*
* @param id | uuid of user being queried
* @returns {Promise<Profile | null>} | User data
*/
export const getProfileById = async (id: string): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.from('profiles').select().eq('id', id).single();
if (error) {
LOG.error(error);
return null;
} else if (data) {
return data as Profile;
}
} catch (error) {
LOG.error(error as string);
}
return null;
};
/**
* Change username of logged in users profile
*
* @param id | uuid of user being updated
* @returns {Promise<Profile | null>}
*/
export const updateProfileUsername = async (
id: string,
username: string
): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.from('profiles')
.update({ username: username })
.eq('id', id)
.select();
if (error) {
LOG.error(error);
return null;
} else if (data.length === 1) {
return data[0] as Profile;
}
} catch (error) {
LOG.error(error as string);
}
return null;
};
/**
* Delete a logged in users profile and account
*
* @param id | uuid of user being deleted
* @returns {Promise<void>}
*/
export const deleteProfileById = async (id: string): Promise<void> => {
if (!SUPABASE) return;
try {
// delete profile
const { data, error } = await SUPABASE.from('profiles').delete().eq('id', id).select();
if (error) {
LOG.error(error);
} else if (data.length === 1) {
// delete user account
const { error } = await SUPABASE.rpc('delete_user');
if (error) LOG.error(error);
localStorage.clear();
return;
}
} catch (error) {
LOG.error(error as string);
}
return;
};
/**
* Get a users queue. This method returns nothing
* else so it can be a bit lighter than the full profile query
*
* @param id | uuid users profile being queried
* @returns {Promise<number[] | null>}
*/
export const getProfileArray = async (
profileId: string,
whichCol: 'queue' | 'watched' | 'favorites'
): Promise<string[] | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.from('profiles')
.select(whichCol)
.eq('id', profileId);
if (error) {
LOG.error(error);
} else if (data) {
return Object.values(data[0])[0];
}
} catch (error) {
LOG.error(error as string);
}
return null;
};
/**
* Add a new show to a logged in users queue, watched, or favorites
*
* @param id | uuid of user being updated
* @param show_id | movieDB id of show being added
* @param which_col | profiles column to add to
* @returns {Promise<Profile | null>}
*/
export const addToProfileArray = async (
profileId: string,
showId: string,
whichCol: 'queue' | 'watched' | 'favorites'
): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.rpc('add_item', {
profile_id: profileId,
show_id: showId,
which_col: whichCol,
})
.select()
.single();
if (error) {
LOG.error(error);
} else if (data) {
return data as Profile;
}
} catch (error) {
LOG.error(error as string);
}
return null;
};
/**
* Remove a single show from a users queue, watched, or favorites
*
* @param id | uuid of user being updated
* @param show_id | movieDB id of show being removed
* @param which_col | profiles column to delete from
* @returns {Promise<Profile | null>}
*/
export const removeFromProfileArray = async (
profileId: string,
showId: string,
whichCol: 'queue' | 'watched' | 'favorites'
): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.rpc('remove_item', {
profile_id: profileId,
show_id: showId,
which_col: whichCol,
})
.select()
.single();
if (error) {
LOG.error(error);
} else if (data) {
return data as Profile;
}
} catch (error) {
LOG.error(error as string);
}
return null;
};
/**
* Removes all shows from a users queue, watched, or favorites
*
* @param id | uuid of user being updated
* @param whichCol | profiles column to delete
* @returns {Promise<Profile | null>}
*/
export const clearProfileArray = async (
profileId: string,
whichCol: 'queue' | 'watched' | 'favorites'
): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.rpc('remove_all', {
profile_id: profileId,
which_col: whichCol,
})
.select()
.single();
if (error) {
if (import.meta.env.DEV) LOG.error(error);
} else if (data) {
return data as Profile;
}
} catch (error) {
if (import.meta.env.DEV) LOG.error(error as string);
}
return null;
};
/**
* Update the adult flag of a users profile
*
* @param id | uuid of user being updated
* @param isAdult | whether the adult flag will be set to true or false
* @returns {Promise<Profile | null>}
*/
export const setProfileAdultFlag = async (
id: string,
isAdult: boolean
): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
const { data, error } = await SUPABASE.from('profiles')
.update({ adult: isAdult })
.eq('id', id)
.select();
if (error) {
LOG.error(error);
} else if (data) {
return data[0] as Profile;
}
} catch (error) {
LOG.error(error as string);
}
return null;
};
/**
* Update the country code of a users profile
*
* @param id | uuid of user being updated
* @param country | country code to be set on the profile
* @returns {Promise<Profile | null>}
*/
export const setProfileCountry = async (id: string, country: string): Promise<Profile | null> => {
if (!SUPABASE) return null;
try {
// TODO: #587 Ensure country code is valid
const { data, error } = await SUPABASE.from('profiles')
.update({ country: country })
.eq('id', id)
.select();
if (error) {
LOG.error(error);
} else if (data) {
return data[0] as Profile;
}
} catch (error) {
LOG.error(error as string);
}
return null;
};