CalMerger/server.js

234 lines
7.4 KiB
JavaScript
Raw Normal View History

2024-09-30 12:55:03 +00:00
import express from 'express';
import ical from 'ical';
import fs from 'fs';
import cron from 'node-cron';
import axios from 'axios';
2024-10-19 14:06:09 +00:00
import crypto from 'crypto';
2024-09-30 12:55:03 +00:00
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);
}
2024-09-30 12:55:03 +00:00
2024-10-19 15:32:43 +00:00
app.get('/script.js', (req, res) => {
res.setHeader('Content-Type', 'application/javascript');
res.sendFile('script.js', { root: '.' });
});
2024-09-30 12:55:03 +00:00
app.get('/', (req, res) => {
res.sendFile('index.html', { root: '.' });
});
app.post('/merge', async (req, res) => {
2024-10-01 23:06:52 +00:00
const { calendars } = req.body;
2024-09-30 12:55:03 +00:00
try {
2024-10-01 23:06:52 +00:00
//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');
2024-09-30 12:55:03 +00:00
// Fetch calendar data from URLs
2024-10-01 23:08:49 +00:00
const promises = calendars.map((calendar) => {
return axios.get(calendar.url)
.then((response) => {
return {
data: response.data,
prefix: calendar.prefix,
override: calendar.override,
2024-10-01 23:08:49 +00:00
};
})
.catch((error) => {
console.error(error);
return null;
});
});
const results = await Promise.all(promises);
2024-10-01 23:09:36 +00:00
// Filter out any failed requests
const validResults = results.filter((result) => result !== null);
2024-09-30 12:55:03 +00:00
// Parse calendar data
const mergedCal = [];
2024-10-01 23:10:37 +00:00
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}`,
});
}
2024-10-01 23:10:37 +00:00
});
});
2024-09-30 12:55:03 +00:00
// Save merged calendar to file with unique identifier
const filename = `${calendarId}.ics`;
2024-09-30 12:55:03 +00:00
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, '')}
2024-10-19 15:32:43 +00:00
DTEND;VALUE=DATE:${ event.end.toISOString().split('T')[0].replace(/-/g, '')}
2024-09-30 12:55:03 +00:00
SUMMARY:${event.summary}
END:VEVENT
`;
});
icalString += `END:VCALENDAR`;
fs.writeFileSync(`${MERGED_CALENDARS_DIR}/${filename}`, icalString);
2024-10-19 15:32:43 +00:00
// Save the user input and generated ID in calendars.json file
saveCalendarData(calendarId, calendars);
2024-10-18 13:43:13 +00:00
res.json({ url: `${req.protocol}://${req.get('host')}/calendar/${calendarId}` });
2024-09-30 12:55:03 +00:00
} catch (error) {
console.error(error);
res.status(500).json({ error: 'Failed to merge calendars' });
}
});
2024-10-18 13:43:13 +00:00
// Serve the merged calendar file
app.get('/calendar/:id', (req, res) => {
const filename = `${req.params.id}.ics`;
res.setHeader('Content-Type', 'text/calendar');
res.sendFile(filename, { root: MERGED_CALENDARS_DIR });
});
//function to save CalendarData to calendars.json
2024-10-19 22:27:43 +00:00
function saveCalendarData(calendarId, linkGroupName, calendars) {
let calendarsData = { mergedCalendars: [] };
if (fs.existsSync(CALENDARS_FILE)) {
2024-10-19 22:27:43 +00:00
try {
const fileContent = fs.readFileSync(CALENDARS_FILE, 'utf8');
if (fileContent) {
calendarsData = JSON.parse(fileContent);
}
} catch (error) {
console.error('Error reading calendars file:', error);
}
}
2024-10-19 22:28:35 +00:00
// Ensure mergedCalendars array exists
if (!calendarsData.mergedCalendars) {
calendarsData.mergedCalendars = [];
}
calendarsData.mergedCalendars.push({
id: calendarId,
2024-10-19 22:28:35 +00:00
linkGroupName: linkGroupName,
calendars: calendars
});
try {
fs.writeFileSync(CALENDARS_FILE, JSON.stringify(calendarsData, null, 2));
} catch (error) {
console.error('Error writing to calendars file:', error);
}
}
// Function to update the merged calendar
async function updateMergedCalendars(){
try {
// Load calendars data from calendars.json file
2024-10-18 23:21:20 +00:00
const calendarsData = JSON.parse(fs.readFileSync(CALENDARS_FILE, 'utf8'));
2024-10-08 19:04:31 +00:00
// Fetch calendar data for each merged calendar
for (const mergedCalendar of calendarsData.mergedCalendars) {
const promises = mergedCalendar.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;
});
});
2024-10-02 12:21:00 +00:00
const results = await Promise.all(promises);
2024-10-02 22:09:25 +00:00
// Filter out any failed requests
2024-10-19 14:13:45 +00:00
const validResults = results.filter((result) => result !== null);
2024-10-02 22:10:27 +00:00
// 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}`,
});
}
2024-10-02 22:10:27 +00:00
});
});
2024-10-02 22:11:20 +00:00
// Save merged calendar to file
2024-10-18 23:21:20 +00:00
const filename = `${mergedCalendar.id}.ics`;
2024-10-02 22:11:20 +00:00
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, '')}
2024-10-02 22:11:20 +00:00
SUMMARY:${event.summary}
END:VEVENT
`;
});
icalString += `END:VCALENDAR`;
2024-10-08 19:04:31 +00:00
// Store the merged calendar URL in a file
fs.writeFileSync(`${MERGED_CALENDARS_DIR}/${filename}`, icalString);
2024-10-08 19:04:31 +00:00
2024-10-19 15:32:43 +00:00
console.log(`Merged calendar updated: ${mergedCalendar.id}`);
2024-10-02 22:13:58 +00:00
2024-10-19 14:13:45 +00:00
}
2024-10-02 12:21:00 +00:00
} catch (error) {
console.error(error);
}
}
2024-09-30 12:55:03 +00:00
// Schedule a cron job to update the merged calendar every hour
2024-10-19 15:32:43 +00:00
cron.schedule('1 * * * *', () => {
2024-09-30 12:55:03 +00:00
console.log('Updating merged calendar...');
updateMergedCalendars();
2024-10-02 11:20:21 +00:00
});
2024-10-02 12:21:00 +00:00
// Start the server
const port = 3000;
app.listen(port, () => {
console.log(`Server started on port ${port}`);
2024-10-19 15:32:43 +00:00
});