This commit is contained in:
Kfir Dayan 2023-08-06 10:48:24 +03:00
parent 3aeb79f054
commit 1f59ccfb2c

View file

@ -17,7 +17,7 @@ class App {
async startCronJob() {
console.log("START CRON JOB");
const newGamesAdded = [];
await this.googleCalendar.init();
// Schedule the job to run daily at a specific time (e.g., 1:00 AM)
@ -32,12 +32,21 @@ class App {
);
if (!isDuplicateEvent) {
newGamesAdded.push(game);
console.log("Event does not exist");
await this.googleCalendar.updateNewEvent([game]);
} else {
console.log("Event already exists");
console.log("Event:");
console.log("Happening at:");
}
}
if(newGamesAdded.length > 0) {
console.log("New games added:", newGamesAdded);
} else {
console.log("No new games added");
}
} catch (error) {
console.error("Error in cron job:", error.message);
}