|
const { google } = require('googleapis'); |
|
const { oAuth2Client } = require('../config/googleOAuth'); |
|
const { checkAndRefreshAccessToken } = require('../utils/refreshToken'); |
|
|
|
let holidays = []; |
|
let allHolidayDates = []; |
|
|
|
async function getIndiaTamilHolidays() { |
|
try { |
|
const userTokens = await checkAndRefreshAccessToken(); |
|
|
|
|
|
if (!userTokens || !userTokens.access_token) { |
|
console.log("OAuth credentials missing. Please authorize the app first."); |
|
return { error: 'OAuth credentials missing. Please authorize the app first.' }; |
|
} |
|
|
|
|
|
oAuth2Client.setCredentials(userTokens); |
|
|
|
|
|
const calendar = google.calendar({ version: 'v3', auth: oAuth2Client }); |
|
|
|
|
|
|
|
const calendarId = '[email protected]'; |
|
const currentYear = new Date().getFullYear(); |
|
const timeMin = `${currentYear}-01-01T00:00:00Z`; |
|
const timeMax = `${currentYear + 50}-12-31T23:59:59Z`; |
|
|
|
|
|
const response = await calendar.events.list({ |
|
calendarId, |
|
timeMin, |
|
timeMax, |
|
singleEvents: true, |
|
orderBy: 'startTime', |
|
}); |
|
|
|
|
|
const holidays = []; |
|
response.data.items.forEach(event => { |
|
const summary = event.summary; |
|
const startDate = event.start.date; |
|
const endDate = event.end?.date || event.start.date; |
|
|
|
|
|
const start = new Date(startDate); |
|
const end = new Date(endDate); |
|
|
|
|
|
for (let d = new Date(start); d < end; d.setDate(d.getDate() + 1)) { |
|
console.log('Holiday:', summary, d); |
|
holidays.push({ |
|
festival: summary, |
|
date: d.toISOString().split('T')[0], |
|
}); |
|
} |
|
}); |
|
|
|
return holidays; |
|
} catch (error) { |
|
console.error('Error fetching India holidays:', error.message); |
|
throw error; |
|
} |
|
} |
|
|
|
|
|
async function refreshHolidays() { |
|
try { |
|
holidays = await getIndiaTamilHolidays(); |
|
console.log('India Holidays:', holidays); |
|
console.log('Total holidays:', holidays.length); |
|
console.log('Last holiday:', holidays[holidays.length - 1]); |
|
|
|
allHolidayDates = holidays.reduce((accumulator, holiday) => { |
|
accumulator.push(holiday.date); |
|
return accumulator; |
|
}, []); |
|
|
|
console.log(allHolidayDates); |
|
|
|
|
|
setTimeout(refreshHolidays, 14 * 24 * 60 * 60 * 1000); |
|
} catch (error) { |
|
console.error('Failed to fetch holidays:', error); |
|
|
|
|
|
setTimeout(refreshHolidays, 10000); |
|
} |
|
} |
|
|
|
async function isHoliday(date) { |
|
return allHolidayDates.includes(date); |
|
} |
|
|
|
module.exports = { getIndiaTamilHolidays, refreshHolidays, isHoliday }; |