mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Merge pull request #281 from iptv-org/add-pbsguam-org
Add guide from pbsguam.org
This commit is contained in:
commit
b07f9d8058
3 changed files with 99 additions and 0 deletions
38
sites/pbsguam.org/pbsguam.org.config.js
Normal file
38
sites/pbsguam.org/pbsguam.org.config.js
Normal file
|
@ -0,0 +1,38 @@
|
|||
const dayjs = require('dayjs')
|
||||
const isBetween = require('dayjs/plugin/isBetween')
|
||||
|
||||
dayjs.extend(isBetween)
|
||||
|
||||
module.exports = {
|
||||
site: 'pbsguam.org',
|
||||
url: 'https://pbsguam.org/calendar/',
|
||||
logo({ channel }) {
|
||||
return channel.logo
|
||||
},
|
||||
parser: function ({ content, date }) {
|
||||
let programs = []
|
||||
const items = parseItems(content, date)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: item.title,
|
||||
start: dayjs(item.start),
|
||||
stop: dayjs(item.end)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
}
|
||||
}
|
||||
|
||||
function parseItems(content, date) {
|
||||
const [_, json] = content.match(/EventsSchedule_1 = (.*);/i) || [null, null]
|
||||
if (!json) return []
|
||||
const data = JSON.parse(json)
|
||||
if (!data || !Array.isArray(data.feed)) return []
|
||||
|
||||
return data.feed.filter(
|
||||
i =>
|
||||
dayjs(i.start).isBetween(date, date.add(1, 'd')) ||
|
||||
dayjs(i.end).isBetween(date, date.add(1, 'd'))
|
||||
)
|
||||
}
|
55
sites/pbsguam.org/pbsguam.org.test.js
Normal file
55
sites/pbsguam.org/pbsguam.org.test.js
Normal file
|
@ -0,0 +1,55 @@
|
|||
// npx epg-grabber --config=sites/pbsguam.org/pbsguam.org.config.js --channels=sites/pbsguam.org/pbsguam.org_gu.channels.xml --output=.gh-pages/guides/gu/pbsguam.org.epg.xml --days=2
|
||||
|
||||
const { parser, url, logo } = require('./pbsguam.org.config.js')
|
||||
const dayjs = require('dayjs')
|
||||
const utc = require('dayjs/plugin/utc')
|
||||
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||
dayjs.extend(customParseFormat)
|
||||
dayjs.extend(utc)
|
||||
|
||||
const date = dayjs.utc('2021-11-25', 'YYYY-MM-DD').startOf('d')
|
||||
const channel = {
|
||||
site_id: '#',
|
||||
xmltv_id: 'KGTF.us',
|
||||
logo: 'https://pbsguam.org/wp-content/uploads/sites/10/2021/09/pbs-guam-blue.png'
|
||||
}
|
||||
|
||||
it('can generate valid url', () => {
|
||||
expect(url).toBe('https://pbsguam.org/calendar/')
|
||||
})
|
||||
|
||||
it('can get logo url', () => {
|
||||
expect(logo({ channel })).toBe(
|
||||
'https://pbsguam.org/wp-content/uploads/sites/10/2021/09/pbs-guam-blue.png'
|
||||
)
|
||||
})
|
||||
|
||||
it('can parse response', () => {
|
||||
const content = `<!DOCTYPE html><html lang="en-US"> <head></head> <body> <script type='text/javascript' id='wcs-main-js-extra'>
|
||||
/* <![CDATA[ */
|
||||
var EventsSchedule_1 = {\"feed\":[{\"title\":\"Xavier Riddle and the Secret Museum\",\"id\":5097,\"thumbnail\":false,\"thumbnail_size\":false,\"multiday\":false,\"ending\":\"\",\"duration\":\"30'\",\"terms\":[],\"period\":30,\"excerpt\":\"\",\"hash\":\"5d7710f569fec3fb1839bd7e5ad87038\",\"visible\":true,\"timestamp\":1637829000,\"last\":false,\"start\":\"2021-11-25T08:30:00+00:00\",\"end\":\"2021-11-25T09:00:00+00:00\",\"future\":true,\"finished\":false,\"permalink\":\"https:\\/\\/pbsguam.org\\/class\\/xavier-riddle-and-the-secret-museum\\/?wcs_timestamp=1637829000\",\"buttons\":[],\"meta\":[]},{\"title\":\"Austin City Limits\",\"id\":3916,\"thumbnail\":false,\"thumbnail_size\":false,\"multiday\":false,\"ending\":\"\",\"duration\":\"1h\",\"terms\":[],\"period\":60,\"excerpt\":\"\",\"hash\":\"1255a0a23db3b726b38a5384147ec677\",\"visible\":true,\"timestamp\":1638140400,\"last\":false,\"start\":\"2021-11-28T23:00:00+00:00\",\"end\":\"2021-11-29T00:00:00+00:00\",\"future\":true,\"finished\":false,\"permalink\":\"https:\\/\\/pbsguam.org\\/class\\/austin-city-limits\\/?wcs_timestamp=1638140400\",\"buttons\":[],\"meta\":[]}]};
|
||||
/* ]]> */
|
||||
</script> </body></html>`
|
||||
const result = parser({ date, content }).map(p => {
|
||||
p.start = p.start.toJSON()
|
||||
p.stop = p.stop.toJSON()
|
||||
return p
|
||||
})
|
||||
|
||||
expect(result).toMatchObject([
|
||||
{
|
||||
start: '2021-11-25T08:30:00.000Z',
|
||||
stop: '2021-11-25T09:00:00.000Z',
|
||||
title: 'Xavier Riddle and the Secret Museum'
|
||||
}
|
||||
])
|
||||
})
|
||||
|
||||
it('can handle empty guide', () => {
|
||||
const result = parser({
|
||||
date,
|
||||
channel,
|
||||
content: `<html> <head></head> <body></body></html>`
|
||||
})
|
||||
expect(result).toMatchObject([])
|
||||
})
|
6
sites/pbsguam.org/pbsguam.org_gu.channels.xml
Normal file
6
sites/pbsguam.org/pbsguam.org_gu.channels.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<site site="pbsguam.org">
|
||||
<channels>
|
||||
<channel lang="en" xmltv_id="KGTF.us" site_id="#" logo="https://pbsguam.org/wp-content/uploads/sites/10/2021/09/pbs-guam-blue.png">PBS Guam (KGTF) Hagåtña, Guam</channel>
|
||||
</channels>
|
||||
</site>
|
Loading…
Add table
Add a link
Reference in a new issue