Merge pull request #2599 from iptv-org/add-telebilbao.es

Add telebilbao.es
This commit is contained in:
PopeyeTheSai10r 2025-01-14 19:29:45 -08:00 committed by GitHub
commit 32ceca725d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 3090 additions and 0 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

View 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
```

View 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>

View 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))
}

View 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([])
})