Compare commits
3 commits
094123b768
...
4fd447104b
Author | SHA1 | Date | |
---|---|---|---|
4fd447104b | |||
4548e452ac | |||
294747e5a5 |
3 changed files with 20 additions and 7 deletions
10
calendars.json
Normal file
10
calendars.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"url": "https://example.com/calendar1.ics",
|
||||||
|
"prefix": "Calendar 1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://example.com/calendar2.ics",
|
||||||
|
"prefix": "Calendar 2"
|
||||||
|
}
|
||||||
|
]
|
|
@ -41,9 +41,4 @@ const form = document.getElementById('merge-form');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
//regular refresh
|
|
||||||
const refreshInterval = 60 * 60 * 1000; // 1 hour
|
|
||||||
setInterval(() => {
|
|
||||||
// Fetch new calendar data and update the merged calendar
|
|
||||||
updateMergedCalendar();
|
|
||||||
}, refreshInterval);
|
|
10
server.js
10
server.js
|
@ -97,8 +97,16 @@ app.listen(port, () => {
|
||||||
console.log(`Server started on port ${port}`);
|
console.log(`Server started on port ${port}`);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Function to update the merged calendar
|
||||||
|
async function updateMergedCalendar(){
|
||||||
|
try {
|
||||||
|
// Load calendars data from file
|
||||||
|
const calendarsFile = 'calendars.json';
|
||||||
|
const calendars = JSON.parse(fs.readFileSync(calendarsFile, 'utf8'));
|
||||||
|
}
|
||||||
|
}
|
||||||
// Schedule a cron job to update the merged calendar every hour
|
// Schedule a cron job to update the merged calendar every hour
|
||||||
cron.schedule('0 * * * *', () => {
|
cron.schedule('0 * * * *', () => {
|
||||||
console.log('Updating merged calendar...');
|
console.log('Updating merged calendar...');
|
||||||
// TO DO: implement the logic to update the merged calendar
|
// TO DO: implement the logic to update the merged calendar
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue