mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
const axios = require('axios')
|
|
|
|
dayjs.extend(utc)
|
|
|
|
module.exports = {
|
|
site: 'stod2.is',
|
|
days: 7,
|
|
request: {
|
|
cache: {
|
|
ttl: 60 * 60 * 1000 // 1 hour
|
|
}
|
|
},
|
|
url({ channel, date }) {
|
|
return `https://api.stod2.is/dagskra/api/${channel.site_id}/${date.format('YYYY-MM-DD')}`
|
|
},
|
|
parser: function ({ content }) {
|
|
let data
|
|
try {
|
|
data = JSON.parse(content)
|
|
} catch (error) {
|
|
console.error('Error parsing JSON:', error)
|
|
return []
|
|
}
|
|
|
|
const programs = []
|
|
|
|
if (data && Array.isArray(data)) {
|
|
data.forEach(item => {
|
|
if (!item) return
|
|
const start = dayjs.utc(item.upphaf)
|
|
const stop = start.add(item.slott, 'm')
|
|
|
|
programs.push({
|
|
title: item.isltitill,
|
|
sub_title: item.undirtitill,
|
|
description: item.lysing,
|
|
actors: item.adalhlutverk,
|
|
directors: item.leikstjori,
|
|
start,
|
|
stop
|
|
})
|
|
})
|
|
}
|
|
|
|
return programs
|
|
},
|
|
async channels() {
|
|
try {
|
|
const response = await axios.get('https://api.stod2.is/dagskra/api')
|
|
if (!response.data || !Array.isArray(response.data)) {
|
|
console.error('Error: No channels data found')
|
|
return []
|
|
}
|
|
return response.data.map(item => {
|
|
return {
|
|
lang: 'is',
|
|
site_id: item
|
|
}
|
|
})
|
|
} catch (error) {
|
|
console.error('Error fetching channels:', error)
|
|
return []
|
|
}
|
|
}
|
|
}
|