-
Notifications
You must be signed in to change notification settings - Fork 3
/
acces_token.js
472 lines (416 loc) · 15.3 KB
/
acces_token.js
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
let docTitle = document.title;
window.addEventListener("blur", () => {
document.title = "Rooster Klascal";
});
window.addEventListener("focus", () => {
document.title = docTitle;
});
// Dutch month names
const dutchMonthNames = [
"januari",
"februari",
"maart",
"april",
"mei",
"juni",
"juli",
"augustus",
"september",
"oktober",
"november",
"december",
];
// Function to fetch appointments for the specified date
async function fetchAppointments(date) {
const [day, monthName] = date.split(" ");
const monthIndex = dutchMonthNames.findIndex(
(month) => month.toLowerCase() === monthName.toLowerCase()
);
if (monthIndex === -1 || isNaN(parseInt(day))) {
console.error(
"Invalid date format. Please enter date in the format 'DD Month', e.g., '12 augustus'."
);
return;
}
const currentDate = new Date();
const currentYear = currentDate.getFullYear();
// Construct a Date object with the specified date and current year
const startDate = new Date(currentYear, monthIndex, parseInt(day, 10));
const endDate = new Date(startDate);
endDate.setDate(endDate.getDate() + 1);
const user = document.getElementById("user").value;
const schoolName = document.getElementById("schoolName").value;
const authorizationCode =
document.getElementById("authorization").value;
// Step 1: Exchange authorization code for an access token
const tokenResponse = await fetch(
`https://${schoolName}.zportal.nl/api/v3/oauth/token`,
{
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: `grant_type=authorization_code&code=${authorizationCode}`,
}
);
const tokenData = await tokenResponse.json();
const accessToken = tokenData.access_token;
if (!accessToken) {
console.error("Failed to obtain access token.");
return;
}
if (accessToken !== "") {
document.getElementById("authorizationCode").value = accessToken;
localStorage.setItem("authorizationCode", accessToken);
}
const token = document.getElementById("authorizationCode").value;
const startTimestamp = Math.floor(startDate.getTime() / 1000);
const endTimestamp = Math.floor(endDate.getTime() / 1000);
const apiUrl = `https://${schoolName}.zportal.nl/api/v3/appointments?user=${user}&start=${startTimestamp}&end=${endTimestamp}&valid=true&fields=subjects,cancelled,locations,startTimeSlot,start,end,groups,teachers,changeDescription&access_token=${token}`;
fetch(apiUrl)
.then((response) => response.json())
.then((data) => {
const appointments = data.response.data;
// Sort appointments by start time
appointments.sort((a, b) => a.start - b.start);
const scheduleDiv = document.getElementById("schedule");
scheduleDiv.innerHTML = ""; // Clear existing schedule
const errorMessageDiv = document.getElementById("error-message");
if (appointments.length === 0) {
scheduleDiv.style.display = "none";
errorMessageDiv.style.display = "block";
} else {
scheduleDiv.style.display = "block";
errorMessageDiv.style.display = "none";
}
// Filter out cancelled lessons if there are multiple lessons for the same hour
const filteredAppointments = filterCancelledLessons(appointments);
filteredAppointments.forEach((appointment) => {
const startTime = new Date(appointment.start * 1000);
const endTime = new Date(appointment.end * 1000);
// Format start and end times
const startTimeString = startTime.toLocaleTimeString([], {
hour: "2-digit",
minute: "2-digit",
});
const endTimeString = endTime.toLocaleTimeString([], {
hour: "2-digit",
minute: "2-digit",
});
// Object met vak afkortingen en hun volledige namen
const subjectsMapping = {
ak: "Aardrijkskunde",
en: "Engels",
fa: "Frans",
gd: "Godsdienst",
gs: "Geschiedenis",
ha: "Handvaardigheid",
ict: "Informatiekunde",
in: "Informatiekunde",
kcv: "Klassieke Culturele Vorming",
lo: "Lichamelijke opvoeding",
men: "Mentorles",
mn: "Mens en natuur",
mu: "Muziek",
ne: "Nederlands",
te: "Tekenen/Techniek",
wi: "Wiskunde",
fr: "Frans",
nl: "Nederlands",
du: "Duits",
bi: "Biologie",
na: "Natuurkunde",
sk: "Scheikunde",
nask: "Natuurkunde/Scheikunde",
ec: "Economie",
econ: "Economie",
ma: "Maatschappijleer",
be: "Beeldende Vorming",
kv: "Kunstvakken",
fi: "Filosofie",
la: "Latijn",
gr: "Grieks",
PROJECT: "Project",
rkn: "Rekentoets",
pe: "Physical education",
ontw: "Ontwerpen",
ltc: "Latijn",
gtc: "Grieks",
entl: "Engels",
ges: "Geschiedenis",
fatl: "Frans",
biol: "Biologie",
netl: "Nederlands",
gds: "Godsdienst",
wis: "Wiskunde",
die: "Diëtetiek",
kubv: "Kunst Beeldende Vakken",
bg: "Begeleiding",
sp: "Spaans",
BSA: "Bindend studieadvies",
bsa: "Bindend studieadvies",
};
// Map subjects abbreviations to full names
const subjectsFullNames = appointment.subjects.map(
(subject) => subjectsMapping[subject] || subject
);
let changeDescription = "";
if (appointment.changeDescription) {
changeDescription = `<p>${appointment.changeDescription}</p>`;
}
// Create appointment HTML
const appointmentDiv = document.createElement("div");
appointmentDiv.innerHTML = `
<p><strong id="vaknaam">${subjectsFullNames.join(", ")}</strong>
<strong style="position:absolute;right:25px;">${
appointment.startTimeSlot
}</strong></p>
<p>${startTimeString} - ${endTimeString}
<span style="margin-left: 10px;">${appointment.locations.join(
", "
)}
(${appointment.teachers.join(", ")})</span></p>
<p class="className">${appointment.groups.join(", ")}</p>
<p>${
appointment.changeDescription
? '<svg width="24" height="24" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="vertical-align: sub;"><path d="M10.909 2.782a2.25 2.25 0 0 1 2.975.74l.083.138 7.759 14.009a2.25 2.25 0 0 1-1.814 3.334l-.154.006H4.242A2.25 2.25 0 0 1 2.2 17.812l.072-.143L10.03 3.66a2.25 2.25 0 0 1 .879-.878ZM12 16.002a.999.999 0 1 0 0 1.997.999.999 0 0 0 0-1.997Zm-.002-8.004a1 1 0 0 0-.993.884L11 8.998 11 14l.007.117a1 1 0 0 0 1.987 0l.006-.117L13 8.998l-.007-.117a1 1 0 0 0-.994-.883Z" fill="#ff9800"/></svg>'
: ""
}
${appointment.changeDescription}</p>
`;
scheduleDiv.appendChild(appointmentDiv);
});
})
.catch((error) => {
console.error("Error fetching data from Zermelo API:", error);
});
}
// Event listener for button click
document.getElementById("loadSchedule").addEventListener("click", () => {
const dateInput = document.getElementById("dateInput").value;
fetchAppointments(dateInput);
});
// Date navigation functions
let currentDate = new Date();
document.getElementById("previousDay").addEventListener("click", () => {
currentDate.setDate(currentDate.getDate() - 1);
const dateString = `${currentDate.getDate()} ${
dutchMonthNames[currentDate.getMonth()]
}`;
document.getElementById("dateInput").value = dateString;
fetchAppointments(dateString);
});
document.getElementById("nextDay").addEventListener("click", () => {
currentDate.setDate(currentDate.getDate() + 1);
const dateString = `${currentDate.getDate()} ${
dutchMonthNames[currentDate.getMonth()]
}`;
document.getElementById("dateInput").value = dateString;
fetchAppointments(dateString);
});
// Helper function to filter out cancelled lessons if there are multiple lessons for the same hour
function filterCancelledLessons(appointments) {
const filteredAppointments = [];
const timeSlotMap = new Map();
appointments.forEach((appointment) => {
const timeSlot = appointment.startTimeSlot;
if (!timeSlotMap.has(timeSlot) || !appointment.cancelled) {
timeSlotMap.set(timeSlot, appointment);
}
});
timeSlotMap.forEach((appointment) => {
filteredAppointments.push(appointment);
});
return filteredAppointments;
}
function update_section(with_what, what) {
document.getElementById(what + "goeshere").innerHTML = with_what;
}
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("css").click();
});
let startX;
let endX;
const SWIPE_THRESHOLD = 150; // Adjust as needed
// Function to handle touch start event
function handleTouchStart(event) {
startX = event.touches[0].clientX;
}
// Function to handle touch move event
function handleTouchMove(event) {
endX = event.touches[0].clientX;
event.preventDefault(); // Prevent scrolling while swiping
}
// Function to handle touch end event
function handleTouchEnd(event) {
handleSwipe();
}
// Function to handle swipe direction
function handleSwipe() {
const deltaX = endX - startX;
if (deltaX > SWIPE_THRESHOLD) {
// Swipe right, load previous day schedule
loadPreviousDaySchedule();
} else if (deltaX < -SWIPE_THRESHOLD) {
// Swipe left, load next day schedule
loadNextDaySchedule();
}
}
// Function to load previous day schedule
function loadPreviousDaySchedule() {
document.getElementById("previousDay").click();
}
// Function to load next day schedule
function loadNextDaySchedule() {
document.getElementById("nextDay").click();
}
// Add event listeners for touch events on the document
document.addEventListener("touchstart", handleTouchStart);
document.addEventListener("touchmove", handleTouchMove);
document.addEventListener("touchend", handleTouchEnd);
// Function to handle arrow key presses
function handleArrowKeyPress(event) {
const key = event.key;
if (key === "ArrowLeft") {
// Arrow left, load previous day schedule
loadPreviousDaySchedule();
} else if (key === "ArrowRight") {
// Arrow right, load next day schedule
loadNextDaySchedule();
}
}
// Function to load previous day schedule
function loadPreviousDaySchedule() {
document.getElementById("previousDay").click();
}
// Function to load next day schedule
function loadNextDaySchedule() {
document.getElementById("nextDay").click();
}
// Add event listener for keydown event on the document
document.addEventListener("keydown", handleArrowKeyPress);
// Focus on the input field to capture arrow key events
document.getElementById("keyboard").focus();
if (typeof navigator.serviceWorker !== "undefined") {
navigator.serviceWorker.register("sw.js");
}
// Function to apply color theme
function applyColorTheme(color) {
// Save selected color to local storage
localStorage.setItem("color", color);
// Apply color theme stylesheet
document
.getElementById("color-theme")
.setAttribute("href", `${storedColor}.css`);
}
// Apply stored color theme on page load
const storedColor = localStorage.getItem("color");
if (storedColor) {
applyColorTheme(storedColor);
}
// Color theme selector event listener
document
.getElementById("color-select")
.addEventListener("change", function () {
applyColorTheme(this.value);
});
authorizationCode.value = localStorage.getItem("authorizationCode");
authorizationCode.oninput = () => {
localStorage.setItem("authorizationCode", authorizationCode.value);
};
authorization.value = localStorage.getItem("authorization");
authorization.oninput = () => {
localStorage.setItem("authorization", authorization.value);
};
user.value = localStorage.getItem("user");
user.oninput = () => {
localStorage.setItem("user", user.value);
};
css.value = localStorage.getItem("css");
css.oninput = () => {
localStorage.setItem("css", css.value);
};
// Functie om dialoogvenster te tonen
function showDialog() {
const dialog = document.getElementById("dialog");
dialog.showModal();
}
// Functie om dialoogvenster te verbergen
function hideDialog() {
const dialog = document.getElementById("dialog");
dialog.close();
document.getElementById("loadSchedule").click();
document.getElementById("css").click();
}
document.addEventListener("DOMContentLoaded", function () {
const schoolName = localStorage.getItem("schoolName") || "";
const authorizationCode =
localStorage.getItem("authorizationCode") || "";
if (schoolName.trim() === "" || authorizationCode.trim() === "") {
// Als een van de opgeslagen waarden leeg is, toon dialoogvenster
showDialog();
} else {
}
});
// Function to handle loading schedule when button is clicked
document
.getElementById("loadSchedule")
.addEventListener("click", function () {
const dateInput = document.getElementById("dateInput").value;
fetchAppointments(dateInput);
});
// Function to handle previous day button click
document
.getElementById("previousDay")
.addEventListener("click", function () {
const dateInput = document.getElementById("dateInput").value;
const [day, month] = dateInput.split(" ");
const monthIndex = dutchMonthNames.findIndex(
(monthName) => monthName.toLowerCase() === month.toLowerCase()
);
const currentDate = new Date();
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) - 1
);
const previousDay =
currentDate.getDate() +
" " +
dutchMonthNames[currentDate.getMonth()];
document.getElementById("dateInput").value = previousDay;
fetchAppointments(previousDay);
});
// Function to handle next day button click
document.getElementById("nextDay").addEventListener("click", function () {
const dateInput = document.getElementById("dateInput").value;
const [day, month] = dateInput.split(" ");
const monthIndex = dutchMonthNames.findIndex(
(monthName) => monthName.toLowerCase() === month.toLowerCase()
);
const currentDate = new Date();
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) + 1
);
const nextDay =
currentDate.getDate() + " " + dutchMonthNames[currentDate.getMonth()];
document.getElementById("dateInput").value = nextDay;
fetchAppointments(nextDay);
});
// Fetch appointments for today when the page loads
document.addEventListener("DOMContentLoaded", function () {
// Default to today's date
const today = new Date();
const day = today.getDate();
const monthName = dutchMonthNames[today.getMonth()];
const formattedDate = `${day} ${monthName}`;
document.getElementById("dateInput").value = formattedDate;
fetchAppointments(formattedDate);
});
// Sla schoolnaam en token op
schoolName.value = localStorage.getItem("schoolName");
schoolName.oninput = () => {
localStorage.setItem("schoolName", schoolName.value);
};