-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.ts
312 lines (298 loc) · 9.79 KB
/
api.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
import { useAnnouncementStore } from "./stores/announcements";
export interface IServer {
id: string;
name: string;
picture: string;
}
export interface ISchedule {
scope: AnnouncementScope;
type: string;
persona: string;
server: string;
days: number[];
time: string;
}
export interface IAnnouncement {
id?: number;
title: string;
message: {
en: string;
de: string;
};
author?: string;
lastModified?: string;
}
export interface IAnnouncementSummary {
id: number;
title: string;
author: string;
lastModified: string;
}
export interface IStudentStats {
enrolled: number;
discord: {
students: number;
graduates: number;
};
}
export interface IDegreeProgramme {
id: string;
category: string;
role: string;
colour: string;
channel: string;
}
type AnnouncementScope = "discord" | "telegram";
export type IPersonaDefinition = Record<
string,
{
avatar: string;
}
>;
export type IAnnouncementTypesDefinition = Record<
string,
{
name: string;
role: string;
}
>;
const toBase64 = async (file?: File): Promise<string | undefined> => {
if (!file) {
return undefined;
}
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onload = () => {
const base64 = reader.result as string;
resolve(base64.replace(/^data:image\/[a-z]+;base64,/, ""));
};
reader.onerror = reject;
reader.readAsDataURL(file);
});
};
const forceReloadAnnouncements = () => {
useAnnouncementStore().update();
};
export const api = {
announements: {
async getAll(): Promise<IAnnouncementSummary[]> {
return fetch("/api/announcements").then((res) => res.json());
},
async create(announcement: IAnnouncement): Promise<IAnnouncement> {
const res = await fetch("/api/announcements", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(announcement),
});
const data = await res.json();
forceReloadAnnouncements();
return data;
},
async search(
query: string,
byMe: boolean = false,
timeRange?: {
start: Date;
end: Date;
},
limit: number = 10,
offset: number = 0
): Promise<{ items: IAnnouncementSummary[]; totalCount: number }> {
const params = new URLSearchParams();
params.append("query", query);
params.append("author", byMe ? "me" : "");
params.append("start", timeRange?.start?.toISOString() || "");
params.append("end", timeRange?.end?.toISOString() || "");
params.append("limit", limit.toString());
params.append("offset", offset.toString());
const res = await fetch(`/api/announcements?${params}`);
const data = await res.json();
return {
items: data,
totalCount: Number(res.headers.get("X-Total-Count") || 0),
};
},
async get(id: number): Promise<IAnnouncement> {
return fetch(`/api/announcements/${id}`).then((res) => res.json());
},
async update(announcement: IAnnouncement): Promise<IAnnouncement> {
const res = await fetch(`/api/announcements/${announcement.id}`, {
method: "PUT",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(announcement),
});
const data = await res.json();
forceReloadAnnouncements();
return data;
},
async delete(id: number): Promise<void> {
await fetch(`/api/announcements/${id}`, {
method: "DELETE",
}).then(forceReloadAnnouncements);
},
async types(): Promise<string[]> {
return fetch(`/api/announcements/types`).then((res) => res.json());
},
schedule: {
async get(announcementId: number): Promise<ISchedule[]> {
return fetch(
`/api/announcements/${announcementId}/schedules`
).then((x) => x.json());
},
async update(
announcementId: number,
schedules: ISchedule[]
): Promise<string | null> {
const res = await fetch(
`/api/announcements/${announcementId}/schedules`,
{
method: "PUT",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(schedules),
}
);
if (res.ok) {
return null;
}
const data = await res.text();
console.error(data);
return data;
},
},
async publish(
id: number,
scope: AnnouncementScope,
server: string,
type: string,
persona: string,
image?: File
): Promise<string | null> {
const res = await fetch(`/api/announcements/${id}/publish`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
id,
scope,
server,
type,
persona,
image: await toBase64(image),
}),
});
if (res.ok) {
return null;
}
const data = await res.text();
console.error(data);
return data;
},
async discordServers(): Promise<IServer[]> {
return fetch(`/api/announcements/discord/servers`).then((res) =>
res.json()
);
},
async telegramChats(): Promise<IServer[]> {
return fetch(`/api/announcements/telegram/chats`).then((res) =>
res.json()
);
},
async personas(): Promise<string[]> {
return fetch(`/api/announcements/personas`).then((res) =>
res.json()
);
},
},
db: {
async students(): Promise<IStudentStats> {
return fetch("/api/students").then((res) => res.json());
},
async updateStudents(csvAsString: string): Promise<string | null> {
const res = await fetch("/api/students", {
method: "PUT",
headers: {
"Content-Type": "application/xml",
},
body: csvAsString,
});
if (res.ok) {
return null;
}
return await res.text();
},
async updateModules(csvAsString: string): Promise<string | null> {
const res = await fetch("/api/modules", {
method: "PUT",
headers: {
"Content-Type": "application/xml",
},
body: csvAsString,
});
if (res.ok) {
return null;
}
return await res.text();
},
async getDegreeProgrammes(): Promise<IDegreeProgramme[]> {
return fetch("/api/degree-programmes").then((res) => res.json());
},
async updateDegreeProgrammes(
degreeProgrammes: IDegreeProgramme[]
): Promise<void> {
await fetch("/api/degree-programmes", {
method: "PUT",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(degreeProgrammes),
});
},
},
commonSources: {
_cache: new Map<string, any>(),
personas: {
_base: "/common/personas",
_cacheKey: "personas",
async definition(): Promise<IPersonaDefinition> {
if (api.commonSources._cache.has(this._cacheKey)) {
return api.commonSources._cache.get(this._cacheKey);
}
const res = await fetch(this._base + "/definition.json");
const data = await res.json();
api.commonSources._cache.set(this._cacheKey, data.items);
return data.items;
},
avatarByPath(avatar: string): string {
return this._base + "/avatars/" + avatar;
},
async avatarByName(avatar: string): Promise<string> {
const definition = await this.definition();
return this.avatarByPath(definition[avatar].avatar);
},
},
announcementTypes: {
_base: "/common/announcements",
_cacheKey: "announcement.types",
async definition(): Promise<IAnnouncementTypesDefinition> {
if (api.commonSources._cache.has(this._cacheKey)) {
return api.commonSources._cache.get(this._cacheKey);
}
const res = await fetch(this._base + "/types.json");
const data = await res.json();
api.commonSources._cache.set(this._cacheKey, data.items);
return data.items;
},
async roleByType(announcementType: string): Promise<string> {
const definition = await this.definition();
return definition[announcementType].role;
},
},
},
};