mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Merge pull request #2599 from iptv-org/add-telebilbao.es
Add telebilbao.es
This commit is contained in:
commit
32ceca725d
6 changed files with 3090 additions and 0 deletions
1137
sites/telebilbao.es/__data__/content.html
Normal file
1137
sites/telebilbao.es/__data__/content.html
Normal file
File diff suppressed because one or more lines are too long
1820
sites/telebilbao.es/__data__/no_content.html
Normal file
1820
sites/telebilbao.es/__data__/no_content.html
Normal file
File diff suppressed because it is too large
Load diff
15
sites/telebilbao.es/readme.md
Normal file
15
sites/telebilbao.es/readme.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# telebilbao.es
|
||||
|
||||
https://www.telebilbao.es/programacion-2/
|
||||
|
||||
### Download the guide
|
||||
|
||||
```sh
|
||||
npm run grab --- --site=telebilbao.es
|
||||
```
|
||||
|
||||
### Test
|
||||
|
||||
```sh
|
||||
npm test --- telebilbao.es
|
||||
```
|
4
sites/telebilbao.es/telebilbao.es.channels.xml
Normal file
4
sites/telebilbao.es/telebilbao.es.channels.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<channels>
|
||||
<channel site="telebilbao.es" lang="es" xmltv_id="TeleBilbao.es" site_id="#">TeleBilbao</channel>
|
||||
</channels>
|
70
sites/telebilbao.es/telebilbao.es.config.js
Normal file
70
sites/telebilbao.es/telebilbao.es.config.js
Normal file
|
@ -0,0 +1,70 @@
|
|||
const dayjs = require('dayjs')
|
||||
const cheerio = require('cheerio')
|
||||
const table2array = require('table2array')
|
||||
const utc = require('dayjs/plugin/utc')
|
||||
const timezone = require('dayjs/plugin/timezone')
|
||||
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||
|
||||
dayjs.extend(utc)
|
||||
dayjs.extend(timezone)
|
||||
dayjs.extend(customParseFormat)
|
||||
|
||||
require('dayjs/locale/es')
|
||||
|
||||
module.exports = {
|
||||
site: 'telebilbao.es',
|
||||
days: 1,
|
||||
url: 'https://www.telebilbao.es/programacion-2/',
|
||||
request: {
|
||||
cache: {
|
||||
ttl: 24 * 60 * 60 * 1000 // 1 day
|
||||
}
|
||||
},
|
||||
parser({ content, date }) {
|
||||
let programs = []
|
||||
const items = parseItems(content, date)
|
||||
items.forEach(item => {
|
||||
const prev = programs[programs.length - 1]
|
||||
let start = parseStart(item, date)
|
||||
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: item.title,
|
||||
start,
|
||||
stop
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
}
|
||||
}
|
||||
|
||||
function parseStart(item, date) {
|
||||
return dayjs.tz(`${date.format('YYYY-MM-DD')} ${item.time}`, 'YYYY-MM-DD HH:mm', 'Europe/Madrid')
|
||||
}
|
||||
|
||||
function parseItems(content, date) {
|
||||
const $ = cheerio.load(content)
|
||||
const tableHtml = $('table.programacion').html()
|
||||
let tableArray = table2array(`<table>${tableHtml}</table>`)
|
||||
const day = date.locale('es').format('dddd\nD MMMM').toUpperCase()
|
||||
if (!tableArray[0]) return []
|
||||
const indexOfColumn = tableArray[0].indexOf(day)
|
||||
tableArray.pop()
|
||||
const items = []
|
||||
tableArray.forEach(row => {
|
||||
items.push({
|
||||
time: row[0],
|
||||
title: row[indexOfColumn]
|
||||
})
|
||||
})
|
||||
|
||||
return items.filter(i => Boolean(i.time))
|
||||
}
|
44
sites/telebilbao.es/telebilbao.es.test.js
Normal file
44
sites/telebilbao.es/telebilbao.es.test.js
Normal file
|
@ -0,0 +1,44 @@
|
|||
const { parser, url } = require('./telebilbao.es.config.js')
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
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('2025-01-16', 'YYYY-MM-DD').startOf('d')
|
||||
|
||||
it('can generate valid url', () => {
|
||||
expect(url).toBe('https://www.telebilbao.es/programacion-2/')
|
||||
})
|
||||
|
||||
it('can parse response', () => {
|
||||
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html'))
|
||||
let results = parser({ content, date })
|
||||
results = results.map(p => {
|
||||
p.start = p.start.toJSON()
|
||||
p.stop = p.stop.toJSON()
|
||||
return p
|
||||
})
|
||||
|
||||
expect(results.length).toBe(50)
|
||||
expect(results[0]).toMatchObject({
|
||||
start: '2025-01-16T06:00:00.000Z',
|
||||
stop: '2025-01-16T06:30:00.000Z',
|
||||
title: 'BAI HORIXE'
|
||||
})
|
||||
expect(results[49]).toMatchObject({
|
||||
start: '2025-01-17T07:30:00.000Z',
|
||||
stop: '2025-01-17T08:00:00.000Z',
|
||||
title: 'LA KAPITAL'
|
||||
})
|
||||
})
|
||||
|
||||
it('can handle empty guide', () => {
|
||||
const results = parser({
|
||||
date,
|
||||
content: fs.readFileSync(path.resolve(__dirname, '__data__/no_content.html'))
|
||||
})
|
||||
expect(results).toMatchObject([])
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue