refactor: switch calendar component creation to ical.js
- replace ical-generator with ical.js for VCALENDAR creation - add logging for component creation process - set component metadata (prodid, version, name) using ical.js
This commit is contained in:
parent
1c241c0738
commit
ffd2fa5370
1 changed files with 13 additions and 2 deletions
15
server.js
15
server.js
|
@ -3,7 +3,6 @@ import ICAL from 'ical.js';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import icalGenerator from 'ical-generator';
|
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
app.use(express.json());
|
app.use(express.json());
|
||||||
|
@ -26,20 +25,32 @@ const fetchCalendarData = async (calendar) => {
|
||||||
const isFilePath = !calendar.url.startsWith('http');
|
const isFilePath = !calendar.url.startsWith('http');
|
||||||
try {
|
try {
|
||||||
if (isFilePath) {
|
if (isFilePath) {
|
||||||
|
console.log(`Fetching calendar data from file: ${calendar.url}`);
|
||||||
return {
|
return {
|
||||||
data: fs.readFileSync(path.resolve(calendar.url), 'utf-8'),
|
data: fs.readFileSync(path.resolve(calendar.url), 'utf-8'),
|
||||||
...calendar
|
...calendar
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
|
console.log(`Fetching calendar data from URL: ${calendar.url}`);
|
||||||
const response = await axios.get(calendar.url);
|
const response = await axios.get(calendar.url);
|
||||||
return { data: response.data, ...calendar };
|
return { data: response.data, ...calendar };
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`Error retrieving calendar from ${calendar.url}:`, error);
|
console.error(`Error retrieving calendar from ${calendar.url}:`, error.message);
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Create a top-level VCALENDAR component
|
||||||
|
const createCalendarComponent = (name) => {
|
||||||
|
console.log(`Creating calendar component for: ${name}`);
|
||||||
|
const calendarComponent = new ICAL.Component(['vcalendar', [], []]);
|
||||||
|
calendarComponent.updatePropertyWithValue('prodid', '-//Your Product ID//EN');
|
||||||
|
calendarComponent.updatePropertyWithValue('version', '2.0');
|
||||||
|
calendarComponent.updatePropertyWithValue('name', name); // calendar name
|
||||||
|
return calendarComponent;
|
||||||
|
};
|
||||||
|
|
||||||
// Merge calendar events
|
// Merge calendar events
|
||||||
const mergeCalendarEvents = (calendarInstance, results) => {
|
const mergeCalendarEvents = (calendarInstance, results) => {
|
||||||
results.forEach((result) => {
|
results.forEach((result) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue