import express from 'express'; import ical from 'ical'; import fs from 'fs'; import cron from 'node-cron'; import axios from 'axios'; const app = express(); app.use(express.json()); const CALENDARS_FILE = 'calendars.json'; const MERGED_CALENDARS_DIR = 'merged_calendars'; // Ensure the merged calendars directory exists if (!fs.existsSync(MERGED_CALENDARS_DIR)) { fs.mkdirSync(MERGED_CALENDARS_DIR); } app.get('/', (req, res) => { res.sendFile('index.html', { root: '.' }); }); app.post('/merge', async (req, res) => { const { calendars } = req.body; try { //validate the input if (!calendars || !Array.isArray(calendars)) { return res.status(400).json({ error: 'Invalid input' }); } // Generate a unique identifier for this set of calendars const calendarId = crypto.randomBytes(16).toString('hex'); // Fetch calendar data from URLs const promises = calendars.map((calendar) => { return axios.get(calendar.url) .then((response) => { return { data: response.data, prefix: calendar.prefix, override: calendar.override, }; }) .catch((error) => { console.error(error); return null; }); }); const results = await Promise.all(promises); // Filter out any failed requests const validResults = results.filter((result) => result !== null); // Parse calendar data const mergedCal = []; validResults.forEach((result) => { const calendar = ical.parseICS(result.data); Object.keys(calendar).forEach((key) => { const event = calendar[key]; if (result.override) { mergedCal.push({ start: event.start, end: event.end, summary: result.prefix, }); } else { mergedCal.push({ start: event.start, end: event.end, summary: `${result.prefix} ${event.summary}`, }); } }); }); // Save merged calendar to file with unique identifier const filename = `${calendarId}.ics`; let icalString = `BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN METHOD:PUBLISH `; mergedCal.forEach((event) => { icalString += `BEGIN:VEVENT DTSTART;VALUE=DATE:${event.start.toISOString().split('T')[0].replace(/-/g, '')} DTEND;VALUE=DATE:${event.end.toISOString().split('T')[0].replace(/-/g, '')} SUMMARY:${event.summary} END:VEVENT `; }); icalString += `END:VCALENDAR`; fs.writeFileSync(`${MERGED_CALENDARS_DIR}/${filename}`, icalString); // Generate URL for the merged calendar const mergedCalendarUrl = `${req.protocol}://${req.get('host')}/calendar/${calendarId}`; // Save the user input and generated ID in calendars.json file saveCalendarData(calendarId, calendars); // Save the user input in a calendars.json file const calendarsFile = 'calendars.json'; let calendarsData = {}; try { calendarsData = JSON.parse(fs.readFileSync(calendarsFile, 'utf8')); } catch (error) { console.error(error); } calendars.forEach((calendar) => { let linkGroup = calendarsData.linkGroups.find((group) => group.name === calendar.linkGroupName); if (!linkGroup) { linkGroup = { name: calendar.linkGroupName, links: [] }; calendarsData.linkGroups.push(linkGroup); } linkGroup.links.push({ url: calendar.url, prefix: calendar.prefix, overrideSummary: calendar.override }); }); fs.writeFileSync(calendarsFile, JSON.stringify(calendarsData, null, 2)); res.json({ url: mergedCalendarUrl }); } catch (error) { console.error(error); res.status(500).json({ error: 'Failed to merge calendars' }); } }); //function to save CalendarData to calendars.json function saveCalendarData(calendarId, calendars) { let calendarsData = { mergedCalendars: [] }; if (fs.existsSync(CALENDARS_FILE)) { calendarsData = JSON.parse(fs.readFileSync(CALENDARS_FILE, 'utf8')); } calendarsData.mergedCalendars.push({ id: calendarId, calendars: calendars }); fs.writeFileSync(CALENDARS_FILE, JSON.stringify(calendarsData, null, 2)); } // Serve the merged calendar file app.get('/:filename', (req, res) => { const filename = req.params.filename; res.setHeader('Content-Type', 'text/calendar'); res.sendFile(filename, { root: '.' }); }); // Function to update the merged calendar async function updateMergedCalendar(){ try { // Load calendars data from calendars.json file const calendarsFile = 'calendars.json'; const calendarsData = JSON.parse(fs.readFileSync(calendarsFile, 'utf8')); // Check if calendarsData is defined and has the expected structure if (!calendarsData || !calendarsData.linkGroups) { throw new Error('Invalid calendars data structure'); } console.log(calendarsData); // Fetch calendar data for each link group const promises = calendarsData.linkGroups.map((linkGroup) => { return Promise.all(linkGroup.links.map((link) => { return axios.get(link.url) .then((response) => { return { data: response.data, prefix: link.prefix, override: link.override, }; }) .catch((error) => { console.error(error); return null; }); })); }); const results = await Promise.all(promises); // Filter out any failed requests const validResults = results.flat().filter((result) => result !== null); // Parse calendar data const mergedCal = []; validResults.forEach((result) => { const calendar = ical.parseICS(result.data); Object.keys(calendar).forEach((key) => { const event = calendar[key]; if (result.override) { mergedCal.push({ start: event.start, end: event.end, summary: result.prefix, }); } else { mergedCal.push({ start: event.start, end: event.end, summary: `${result.prefix} ${event.summary}`, }); } }); }); // Save merged calendar to file const filename = `merged-${Date.now()}.ics`; let icalString = `BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN METHOD:PUBLISH `; mergedCal.forEach((event) => { icalString += `BEGIN:VEVENT DTSTART;VALUE=DATE:${event.start.toISOString().split('T')[0].replace(/-/g, '')} DTEND;VALUE=DATE:${event.end.toISOString().split('T')[0].replace(/-/g, '')} SUMMARY:${event.summary} END:VEVENT `; }); icalString += `END:VCALENDAR`; fs.writeFileSync(filename, icalString); // Generate a unique URL for the merged calendar const mergedCalendarUrl = `http://localhost:3000/${filename}`; // Store the merged calendar URL in a file fs.writeFileSync('merged_calendar_url.txt', mergedCalendarUrl); console.log(`Merged calendar updated: ${mergedCalendarUrl}`); } catch (error) { console.error(error); } } // Schedule a cron job to update the merged calendar every hour cron.schedule('*/3 * * * *', () => { console.log('Updating merged calendar...'); updateMergedCalendar(); }); // serve updated merged calendar to user app.get('/merged-calendar', (req, res) => { const mergedCalendarUrlFile = 'merged_calendar_url.txt'; const mergedCalendarUrl = fs.readFileSync(mergedCalendarUrlFile, 'utf8'); res.redirect(mergedCalendarUrl); }); // Start the server const port = 3000; app.listen(port, () => { console.log(`Server started on port ${port}`); });