2023-08-06 08:25:52 +00:00
|
|
|
"use strict";
|
|
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2023-08-15 12:01:11 +00:00
|
|
|
require("dotenv").config();
|
2023-08-06 08:25:52 +00:00
|
|
|
const axios_1 = __importDefault(require("axios"));
|
|
|
|
const node_html_parser_1 = require("node-html-parser");
|
|
|
|
const moment_1 = __importDefault(require("moment")); // require
|
|
|
|
// This calss will be the game source.
|
|
|
|
// search for upcomming games
|
|
|
|
class GameSource {
|
|
|
|
async getGamesFromHaifa() {
|
2024-02-04 10:52:15 +00:00
|
|
|
const sourceUrl = `http://mhaifafc.com/games?lang=en`;
|
2024-02-04 10:56:26 +00:00
|
|
|
console.log('Trying to get games from Haifa...');
|
|
|
|
try {
|
|
|
|
const result = await axios_1.default.get(sourceUrl);
|
|
|
|
const parsedResult = (0, node_html_parser_1.parse)(result.data.toString());
|
|
|
|
const gameBoxs = parsedResult.querySelectorAll(".game-box");
|
|
|
|
const games = [];
|
|
|
|
for (let gameBox of gameBoxs) {
|
|
|
|
const teamsPlaying = gameBox
|
|
|
|
.querySelectorAll(".team-name")
|
|
|
|
.map((team) => team.text);
|
|
|
|
const regex = /[\r\n\s]+/g;
|
|
|
|
const gameHeader = gameBox
|
|
|
|
.querySelector(".game-header")
|
|
|
|
.text.replace(regex, " ")
|
|
|
|
.trim();
|
|
|
|
const headerSplit = gameHeader.split(",");
|
|
|
|
// In data, if there is no time, it means it's the last game for the calender
|
|
|
|
const lastGameForCalender = headerSplit.length < 4;
|
|
|
|
const location = headerSplit[headerSplit.length - 1].trim();
|
|
|
|
if (location === 'נדחה')
|
|
|
|
continue;
|
|
|
|
if (lastGameForCalender)
|
|
|
|
break;
|
|
|
|
const gameDate = this.findDate(headerSplit);
|
|
|
|
const gameTime = this.findTime(headerSplit);
|
|
|
|
const start = (0, moment_1.default)(gameDate + gameTime, "DD/MM/YYYYHH:mm").toISOString();
|
|
|
|
const end = (0, moment_1.default)(gameDate + gameTime, "DD/MM/YYYYHH:mm")
|
|
|
|
.add(2, "hours")
|
|
|
|
.toISOString();
|
|
|
|
games.push({
|
|
|
|
summary: `${teamsPlaying[0]} vs. ${teamsPlaying[1]}`,
|
|
|
|
location: headerSplit[headerSplit.length - 1].trim(),
|
|
|
|
description: `${teamsPlaying[0]} vs. ${teamsPlaying[1]}`,
|
|
|
|
start: {
|
|
|
|
dateTime: start,
|
|
|
|
timeZone: "Asia/Jerusalem",
|
|
|
|
},
|
|
|
|
end: {
|
|
|
|
dateTime: end,
|
|
|
|
timeZone: "Asia/Jerusalem",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// return [];
|
|
|
|
return games;
|
|
|
|
}
|
|
|
|
catch (error) {
|
|
|
|
console.error(error);
|
2023-08-06 08:25:52 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-15 12:01:11 +00:00
|
|
|
findTime(headerSplit) {
|
|
|
|
let time = '';
|
|
|
|
headerSplit.forEach((item) => {
|
|
|
|
if (/\d{2}:\d{2}/.test(item)) {
|
|
|
|
time = item;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return time.trim();
|
|
|
|
}
|
|
|
|
findDate(headerSplit) {
|
|
|
|
// if it's a date format, return it like: 19/08/2023
|
|
|
|
let date = '';
|
|
|
|
headerSplit.forEach((item) => {
|
|
|
|
if (/\d{2}\/\d{2}\/\d{4}/.test(item)) {
|
|
|
|
date = item;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return date.trim();
|
|
|
|
}
|
2023-08-06 08:25:52 +00:00
|
|
|
getOpponentIndexByStadium(stadium) {
|
|
|
|
if (stadium === "Sammy Ofer Stadium") {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.default = GameSource;
|