aboutsummaryrefslogtreecommitdiff
path: root/src/server/lib/schools/hetmml/parseSchedule.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/lib/schools/hetmml/parseSchedule.js')
-rw-r--r--src/server/lib/schools/hetmml/parseSchedule.js120
1 files changed, 0 insertions, 120 deletions
diff --git a/src/server/lib/schools/hetmml/parseSchedule.js b/src/server/lib/schools/hetmml/parseSchedule.js
deleted file mode 100644
index 066d637..0000000
--- a/src/server/lib/schools/hetmml/parseSchedule.js
+++ /dev/null
@@ -1,120 +0,0 @@
-/**
- * Copyright (C) 2018 Noah Loomans
- *
- * This file is part of rooster.hetmml.nl.
- *
- * rooster.hetmml.nl is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * rooster.hetmml.nl is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with rooster.hetmml.nl. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-const { JSDOM } = require('jsdom');
-
-function fixFirstLargeScheduleItem(trNodeList) {
- return Array.from(trNodeList).some((trNode, timeOfDay) => {
- const tdNodeList = trNode.children;
-
- return Array.from(tdNodeList).some((tdNode, dayOfWeek) => {
- const height = tdNode.rowSpan / 2;
- if (height === 1) {
- return false;
- }
-
- tdNode.rowSpan = 2; // eslint-disable-line no-param-reassign
-
- for (let i = 1; i < height; i += 1) {
- // Are we at the end of the table?
- if (dayOfWeek === 4) {
- // If so, we cannot use insertBefore, because the is no node to insert
- // it before. Use appendChild instead.
- trNodeList[timeOfDay + i].appendChild(tdNode.cloneNode(true));
- } else {
- trNodeList[timeOfDay + i]
- .insertBefore(
- tdNode.cloneNode(true),
- trNodeList[timeOfDay + i].children[dayOfWeek],
- );
- }
- }
-
- return true;
- });
- });
-}
-
-function parseSchedule(axiosResponse) {
- const dom = new JSDOM(axiosResponse.data);
- const { window } = dom;
- const { document } = window;
-
- const tableNode = document.querySelector('center > table');
- const tbodyNode = tableNode.querySelector('tbody');
- const trNodeList = tbodyNode.children;
-
- Array.from(trNodeList).forEach((trNode, timeOfDay) => {
- const tdNodeList = trNode.children;
-
- if (timeOfDay === 0 || trNode.children.length === 0) {
- tbodyNode.removeChild(trNode);
- return;
- }
-
- Array.from(tdNodeList).forEach((tdNode, dayOfWeek) => {
- if (dayOfWeek === 0) {
- trNode.removeChild(tdNode);
- }
- });
- });
-
- let shouldContinue = true;
- while (shouldContinue) {
- shouldContinue = fixFirstLargeScheduleItem(trNodeList);
- }
-
- const scheduleItems = [];
-
- Array.from(trNodeList).forEach((trNode, timeOfDay) => {
- const tdNodeList = trNode.children;
- Array.from(tdNodeList).forEach((tdNode, dayOfWeek) => {
- if (tdNode.textContent.trim() === '') {
- return;
- }
-
- const childTableNode = tdNode.querySelector('table');
- const childTrNodeList = childTableNode.querySelectorAll('tr');
-
- Array.from(childTrNodeList).forEach((childTrNode) => {
- const subject = childTrNode.children[0].textContent.trim();
- const attendees = childTrNode.children[1]
- ? childTrNode.children[1].textContent.trim()
- : undefined;
- const location = childTrNode.children[2]
- ? childTrNode.children[2].textContent.trim()
- : undefined;
-
- scheduleItems.push({
- startTime: timeOfDay,
- endTime: timeOfDay + 1,
- dayOfWeek,
- subject,
- attendees,
- location,
- });
- });
- });
- });
-
- return scheduleItems;
-}
-
-module.exports = parseSchedule;