| 
									
										
										
										
											2022-10-22 11:51:07 -08:00
										 |  |  | import { BaseCRUDAPI } from "../base/base-clients"; | 
					
						
							| 
									
										
										
										
											2024-03-15 19:50:39 +00:00
										 |  |  | import { CategoryBase, GroupBase, GroupInDB, GroupSummary, UserOut } from "~/lib/api/types/user"; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:51:07 -08:00
										 |  |  | import { | 
					
						
							|  |  |  |   CreateInviteToken, | 
					
						
							|  |  |  |   GroupAdminUpdate, | 
					
						
							|  |  |  |   GroupStatistics, | 
					
						
							|  |  |  |   GroupStorage, | 
					
						
							|  |  |  |   ReadGroupPreferences, | 
					
						
							|  |  |  |   ReadInviteToken, | 
					
						
							|  |  |  |   SetPermissions, | 
					
						
							|  |  |  |   UpdateGroupPreferences, | 
					
						
							|  |  |  | } from "~/lib/api/types/group"; | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | const prefix = "/api"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const routes = { | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |   groups: `${prefix}/admin/groups`, | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  |   groupsSelf: `${prefix}/groups/self`, | 
					
						
							| 
									
										
										
										
											2021-09-01 21:39:40 -08:00
										 |  |  |   categories: `${prefix}/groups/categories`, | 
					
						
							| 
									
										
										
										
											2021-10-04 20:16:37 -08:00
										 |  |  |   members: `${prefix}/groups/members`, | 
					
						
							|  |  |  |   permissions: `${prefix}/groups/permissions`, | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  |   preferences: `${prefix}/groups/preferences`, | 
					
						
							| 
									
										
										
										
											2022-03-27 15:12:18 -08:00
										 |  |  |   statistics: `${prefix}/groups/statistics`, | 
					
						
							|  |  |  |   storage: `${prefix}/groups/storage`, | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |   invitation: `${prefix}/groups/invitations`, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   groupsId: (id: string | number) => `${prefix}/admin/groups/${id}`, | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  | export class GroupAPI extends BaseCRUDAPI<GroupBase, GroupInDB, GroupAdminUpdate> { | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  |   baseRoute = routes.groups; | 
					
						
							|  |  |  |   itemRoute = routes.groupsId; | 
					
						
							|  |  |  |   /** Returns the Group Data for the Current User | 
					
						
							|  |  |  |    */ | 
					
						
							|  |  |  |   async getCurrentUserGroup() { | 
					
						
							| 
									
										
										
										
											2024-03-15 19:50:39 +00:00
										 |  |  |     return await this.requests.get<GroupSummary>(routes.groupsSelf); | 
					
						
							| 
									
										
										
										
											2021-09-01 21:39:40 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async getCategories() { | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |     return await this.requests.get<CategoryBase[]>(routes.categories); | 
					
						
							| 
									
										
										
										
											2021-09-01 21:39:40 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |   async setCategories(payload: CategoryBase[]) { | 
					
						
							|  |  |  |     return await this.requests.put<CategoryBase[]>(routes.categories, payload); | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   async getPreferences() { | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |     return await this.requests.get<ReadGroupPreferences>(routes.preferences); | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |   async setPreferences(payload: UpdateGroupPreferences) { | 
					
						
							| 
									
										
										
										
											2022-01-09 07:15:23 +01:00
										 |  |  |     // TODO: This should probably be a patch request, which isn't offered by the API currently
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |     return await this.requests.put<ReadGroupPreferences, UpdateGroupPreferences>(routes.preferences, payload); | 
					
						
							| 
									
										
										
										
											2021-09-05 22:05:29 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |   async createInvitation(payload: CreateInviteToken) { | 
					
						
							|  |  |  |     return await this.requests.post<ReadInviteToken>(routes.invitation, payload); | 
					
						
							| 
									
										
										
										
											2021-09-09 08:51:29 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-10-04 20:16:37 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   async fetchMembers() { | 
					
						
							|  |  |  |     return await this.requests.get<UserOut[]>(routes.members); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async setMemberPermissions(payload: SetPermissions) { | 
					
						
							| 
									
										
										
										
											2022-01-09 07:15:23 +01:00
										 |  |  |     // TODO: This should probably be a patch request, which isn't offered by the API currently
 | 
					
						
							| 
									
										
										
										
											2022-05-21 21:22:02 +02:00
										 |  |  |     return await this.requests.put<UserOut, SetPermissions>(routes.permissions, payload); | 
					
						
							| 
									
										
										
										
											2021-10-04 20:16:37 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-03-27 15:12:18 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   async statistics() { | 
					
						
							|  |  |  |     return await this.requests.get<GroupStatistics>(routes.statistics); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   async storage() { | 
					
						
							|  |  |  |     return await this.requests.get<GroupStorage>(routes.storage); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-08-06 16:28:12 -08:00
										 |  |  | } |