-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnode-webuntis.js
More file actions
488 lines (416 loc) · 14.8 KB
/
node-webuntis.js
File metadata and controls
488 lines (416 loc) · 14.8 KB
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
///////////////////////////////////////////////////////////////////////////
//////////////////////////// Dependencies /////////////////////////////////
///////////////////////////////////////////////////////////////////////////
const fetch = require('node-fetch');
const colors = require('colors/safe')
const dateFormat = require('dateformat')
var exports = module.exports = {}; // to make thing easier to export
///////////////////////////////////////////////////////////////////////////
///////////////////////////////// Code ////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
//get the sessionId, personId and personType from Webuntis
exports.getSession = async(schoolName, userName, password) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do?school=${schoolName}`, {
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id": "1",
"method": "authenticate",
"params":
{"user": userName, "password": password, "client": "jsclient"},
"jsonrpc": "2.0"
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get timetable of current day
exports.getTimetable = async (sessionId, personType, personId, startDate, endDate) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getTimetable",
"params":
{
"options":
{
"element": {"id": personId, "type": personType, "keyType": "id"},
"klasseFields": ["id", "name", "longname"],
"roomFields": ["id", "name", "longname"],
"subjectFields": ["id", "name", "longname"],
"teacherFields": ["id", "name"],
"startDate": startDate == undefined ? "" : startDate , // Format: yyyymmdd
"endDate": endDate == undefined ? "" : endDate // Format: yyyymmdd
}
},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
if (json.result[0] != undefined) {
return await sortTimetable(json.result)
}
}else{
throw new Error(colors.red(json.error.message))
}
}
//get the timetable for the current week
exports.getCurrentWeekTimetable = async (sessionId, personType, personId) => {
let monday = getMonday()
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getTimetable",
"params":
{
"options":
{
"element": {"id": personId, "type": personType, "keyType": "id"},
"klasseFields": ["id", "name", "longname"],
"roomFields": ["id", "name", "longname"],
"subjectFields": ["id", "name", "longname"],
"teacherFields": ["id", "name"],
"startDate": dateFormat(new Date(monday), 'yyyymmdd'),
"endDate": dateFormat(new Date(monday + 432000000), 'yyyymmdd')
}
},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
if (json.result[0] != undefined) {
return await sortTimetable(json.result)
}
}else{
throw new Error(colors.red(json.error.message))
}
}
//get all teachers
exports.getTeachers = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getTeachers",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get all students
exports.getStudents = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getStudents",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get all (base) classes
exports.getClasses = async (sessionId, schoolYearId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getKlassen",
"params": {"schoolyearId": schoolYearId},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get all subjects
exports.getSubjects = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getSubjects",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get all rooms
exports.getRooms = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getRooms",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get all departments
exports.getDepartments = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getDepartments",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get holidays
exports.getHolidays = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getHolidays",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get timeGrid
exports.getTimeGrid = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getTimegridUnits",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get statusData
exports.getStatusData = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getStatusData",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get currentSchoolYear
exports.getCurrentSchoolYear = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getCurrentSchoolyear",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get schoolYears
exports.getSchoolYears = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getSchoolyears",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get latestImportTime
exports.getLatestImportTime = async (sessionId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getLatestImportTime",
"params": {},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get substitutions
exports.getSubstitutions = async (sessionId, startDate, endDate, departmentId) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getSubstitutions",
"params": {
"startDate": startDate,
"endDate": endDate,
"departmentId": departmentId == undefined ? 0 : departmentId
},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//get timetableWithAbsences
exports.getTimetableWithAbsences= async (sessionId, startDate, endDate) => {
let res = await fetch(`https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=${sessionId}?school=htl-ottakring`, { //post request to the WebUntis API
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"getTimetableWithAbsences",
"params": {
"options": {
"startDate": startDate, // Format: yyyymmdd
"endDate": endDate // Format: yyyymmdd
}
},
"jsonrpc":"2.0",
})
})
let json = await res.json();
if(json.error == undefined){
return json.result
}else{
throw new Error(colors.red(json.error.message))
}
}
//Loging out
exports.Logout = async(sessionID) => {
let res = await fetch("https://melpomene.webuntis.com/WebUntis/jsonrpc.do;jsessionid=" + sessionID + "?school=htl-ottakring", {
method: 'post',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
"id":"ID",
"method":"logout",
"params":{},
"jsonrpc":"2.0"
})
})
let json = await res.json();
if(json.error == undefined){
console.log(colors.green("Successfully logged out"))
}else{
throw new Error(colors.red(json.error.message))
}
}
//gets the first day of the week
getMonday = () => {
let time = Date.now();
let dayOfWeek = dateFormat(new Date(), "N");
for (let i = 0; i < dayOfWeek-1; i++) {
time -= 86400000;
}
//console.log(dateFormat(new Date(time), "yyyymmdd"));
return time;
}
sortTimetable = async (rawTimetable) => {
let timetable = []
rawTimetable.sort((a, b) => { return a.date - b.date;}); //sorts the WebUntis data after the date
let firstDay = new Date(`${rawTimetable[0].date.toString().slice(0, 4)}-${rawTimetable[0].date.toString().slice(4, 6)}-${rawTimetable[0].date.toString().slice(6, 8)}`).getTime();
let lastDay = new Date(`${rawTimetable[rawTimetable.length - 1].date.toString().slice(0, 4)}-${rawTimetable[rawTimetable.length - 1].date.toString().slice(4, 6)}-${rawTimetable[rawTimetable.length - 1].date.toString().slice(6, 8)}`).getTime();
let daysCount = Math.ceil(Math.abs(lastDay - firstDay) / (1000 * 3600 * 24)) + 1
for (let i = 0; i < daysCount; i++) {
let date = dateFormat(new Date(firstDay), 'yyyymmdd')
let day = rawTimetable.filter(lesson => lesson.date == date)
day.sort((a, b) => { return a.startTime - b.startTime})
timetable[i] = day
firstDay += 86400000
}
return Promise.resolve(timetable);
}