mirror of
https://github.com/iptv-org/epg
synced 2026-09-10 13:56:51 -04:00
Replace LF endings with CRLF
This commit is contained in:
@@ -1,69 +1,69 @@
|
||||
const dayjs = require('dayjs')
|
||||
const utc = require('dayjs/plugin/utc')
|
||||
|
||||
dayjs.extend(utc)
|
||||
|
||||
module.exports = {
|
||||
site: 'foxsports.com.au',
|
||||
days: 3,
|
||||
request: {
|
||||
cache: {
|
||||
ttl: 60 * 60 * 1000 // 1 hour
|
||||
}
|
||||
},
|
||||
url({ date }) {
|
||||
return `https://tvguide.foxsports.com.au/granite-api/programmes.json?from=${date.format(
|
||||
'YYYY-MM-DD'
|
||||
)}&to=${date.add(1, 'd').format('YYYY-MM-DD')}`
|
||||
},
|
||||
parser({ content, channel }) {
|
||||
let programs = []
|
||||
const items = parseItems(content, channel)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: item.programmeTitle,
|
||||
sub_title: item.title,
|
||||
category: item.genreTitle,
|
||||
description: item.synopsis,
|
||||
start: dayjs.utc(item.startTime),
|
||||
stop: dayjs.utc(item.endTime)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels() {
|
||||
const axios = require('axios')
|
||||
const data = await axios
|
||||
.get(
|
||||
`https://tvguide.foxsports.com.au/granite-api/programmes.json?from=${dayjs().format(
|
||||
'YYYY-MM-DD'
|
||||
)}&to=${dayjs().add(1, 'd').format('YYYY-MM-DD')}`
|
||||
)
|
||||
.then(r => r.data)
|
||||
.catch(console.log)
|
||||
|
||||
let channels = {}
|
||||
data['channel-programme'].forEach(item => {
|
||||
if (channels[item.channelId]) return
|
||||
|
||||
channels[item.channelId] = {
|
||||
lang: 'en',
|
||||
site_id: item.channelId,
|
||||
name: item.channelName
|
||||
}
|
||||
})
|
||||
|
||||
return Object.values(channels)
|
||||
}
|
||||
}
|
||||
|
||||
function parseItems(content, channel) {
|
||||
const data = JSON.parse(content)
|
||||
if (!data) return []
|
||||
const programmes = data['channel-programme']
|
||||
if (!Array.isArray(programmes)) return []
|
||||
|
||||
const channelData = programmes.filter(i => i.channelId == channel.site_id)
|
||||
return channelData && Array.isArray(channelData) ? channelData : []
|
||||
}
|
||||
const dayjs = require('dayjs')
|
||||
const utc = require('dayjs/plugin/utc')
|
||||
|
||||
dayjs.extend(utc)
|
||||
|
||||
module.exports = {
|
||||
site: 'foxsports.com.au',
|
||||
days: 3,
|
||||
request: {
|
||||
cache: {
|
||||
ttl: 60 * 60 * 1000 // 1 hour
|
||||
}
|
||||
},
|
||||
url({ date }) {
|
||||
return `https://tvguide.foxsports.com.au/granite-api/programmes.json?from=${date.format(
|
||||
'YYYY-MM-DD'
|
||||
)}&to=${date.add(1, 'd').format('YYYY-MM-DD')}`
|
||||
},
|
||||
parser({ content, channel }) {
|
||||
let programs = []
|
||||
const items = parseItems(content, channel)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: item.programmeTitle,
|
||||
sub_title: item.title,
|
||||
category: item.genreTitle,
|
||||
description: item.synopsis,
|
||||
start: dayjs.utc(item.startTime),
|
||||
stop: dayjs.utc(item.endTime)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels() {
|
||||
const axios = require('axios')
|
||||
const data = await axios
|
||||
.get(
|
||||
`https://tvguide.foxsports.com.au/granite-api/programmes.json?from=${dayjs().format(
|
||||
'YYYY-MM-DD'
|
||||
)}&to=${dayjs().add(1, 'd').format('YYYY-MM-DD')}`
|
||||
)
|
||||
.then(r => r.data)
|
||||
.catch(console.log)
|
||||
|
||||
let channels = {}
|
||||
data['channel-programme'].forEach(item => {
|
||||
if (channels[item.channelId]) return
|
||||
|
||||
channels[item.channelId] = {
|
||||
lang: 'en',
|
||||
site_id: item.channelId,
|
||||
name: item.channelName
|
||||
}
|
||||
})
|
||||
|
||||
return Object.values(channels)
|
||||
}
|
||||
}
|
||||
|
||||
function parseItems(content, channel) {
|
||||
const data = JSON.parse(content)
|
||||
if (!data) return []
|
||||
const programmes = data['channel-programme']
|
||||
if (!Array.isArray(programmes)) return []
|
||||
|
||||
const channelData = programmes.filter(i => i.channelId == channel.site_id)
|
||||
return channelData && Array.isArray(channelData) ? channelData : []
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user