mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
134 lines
3.4 KiB
JavaScript
134 lines
3.4 KiB
JavaScript
const axios = require('axios')
|
|
const dayjs = require('dayjs')
|
|
const cheerio = require('cheerio')
|
|
|
|
module.exports = {
|
|
skip: true, // returns "Access Denied" or nothing
|
|
site: 'foxtel.com.au',
|
|
url({ channel, date }) {
|
|
return `https://www.foxtel.com.au/tv-guide/channel/${channel.site_id}/${date.format(
|
|
'YYYY/MM/DD'
|
|
)}`
|
|
},
|
|
request: {
|
|
headers: {
|
|
'Accept-Language': 'en-US,en;',
|
|
Cookie: 'AAMC_foxtel_0=REGION|6'
|
|
}
|
|
},
|
|
parser: function ({ content }) {
|
|
let programs = []
|
|
const items = parseItems(content)
|
|
for (let item of items) {
|
|
const $item = cheerio.load(item)
|
|
const prev = programs[programs.length - 1]
|
|
const start = parseStart($item)
|
|
if (prev) {
|
|
if (start.isBefore(prev.start)) {
|
|
start = start.add(1, 'd')
|
|
date = date.add(1, 'd')
|
|
}
|
|
prev.stop = start
|
|
}
|
|
const stop = start.add(30, 'm')
|
|
programs.push({
|
|
title: parseTitle($item),
|
|
sub_title: parseSubTitle($item),
|
|
icon: parseIcon($item),
|
|
rating: parseRating($item),
|
|
season: parseSeason($item),
|
|
episode: parseEpisode($item),
|
|
start,
|
|
stop
|
|
})
|
|
}
|
|
|
|
return programs
|
|
},
|
|
async channels() {
|
|
const data = await axios
|
|
.get(`https://www.foxtel.com.au/webepg/ws/foxtel/channels?regionId=8336`, {
|
|
headers: {
|
|
'Accept-Language': 'en-US,en;',
|
|
Cookie: 'AAMC_foxtel_0=REGION|6'
|
|
}
|
|
})
|
|
.then(r => r.data)
|
|
.catch(console.log)
|
|
|
|
return data.channels.forEach(item => {
|
|
let name = item.name.replace(/\+/g, '-').replace(/\&/g, '')
|
|
const slug = name.replace(/[^a-z0-9\s]/gi, '').replace(/[^a-z0-9]/i, '-')
|
|
|
|
return {
|
|
name: item.name.replace(/\&/g, '&'),
|
|
site_id: `${slug}/${item.channelTag}`
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
function parseSeason($item) {
|
|
let seasonString = $item('.epg-event-description > div > abbr:nth-child(1)').attr('title')
|
|
if (!seasonString) return null
|
|
let [_, season] = seasonString.match(/^Season: (\d+)/) || [null, null]
|
|
|
|
return season ? parseInt(season) : null
|
|
}
|
|
|
|
function parseEpisode($item) {
|
|
let episodeString = $item('.epg-event-description > div > abbr:nth-child(2)').attr('title')
|
|
if (!episodeString) return null
|
|
let [_, episode] = episodeString.match(/^Episode: (\d+)/) || [null, null]
|
|
|
|
return episode ? parseInt(episode) : null
|
|
}
|
|
|
|
function parseIcon($item) {
|
|
return $item('.epg-event-thumbnail > img').attr('src')
|
|
}
|
|
|
|
function parseTitle($item) {
|
|
return $item('.epg-event-description').clone().children().remove().end().text().trim()
|
|
}
|
|
|
|
function parseSubTitle($item) {
|
|
let subtitle = $item('.epg-event-description > div')
|
|
.clone()
|
|
.children()
|
|
.remove()
|
|
.end()
|
|
.text()
|
|
.trim()
|
|
.split(',')
|
|
|
|
subtitle = subtitle.pop()
|
|
const [_, rating] = subtitle.match(/\(([^)]+)\)$/) || [null, null]
|
|
|
|
return subtitle.replace(`(${rating})`, '').trim()
|
|
}
|
|
|
|
function parseRating($item) {
|
|
const subtitle = $item('.epg-event-description > div').text().trim()
|
|
const [_, rating] = subtitle.match(/\(([^)]+)\)$/) || [null, null]
|
|
|
|
return rating
|
|
? {
|
|
system: 'ACB',
|
|
value: rating
|
|
}
|
|
: null
|
|
}
|
|
|
|
function parseStart($item) {
|
|
const unix = $item('*').data('scheduled-date')
|
|
|
|
return dayjs(parseInt(unix))
|
|
}
|
|
|
|
function parseItems(content) {
|
|
if (!content) return []
|
|
const $ = cheerio.load(content)
|
|
|
|
return $(`#epg-channel-events > a`).toArray()
|
|
}
|