Delete energeek.cl

This commit is contained in:
freearhey 2023-11-18 17:52:05 +03:00
parent 8c11939290
commit 8b4e6fe786
4 changed files with 0 additions and 1374 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<channels>
<channel site="energeek.cl" lang="es" xmltv_id="" site_id="EnerGeek 4">EnerGeek 4</channel>
<channel site="energeek.cl" lang="es" xmltv_id="" site_id="EnerGeek Fanpop">EnerGeek Fanpop</channel>
<channel site="energeek.cl" lang="es" xmltv_id="" site_id="EnerGeek Retro">EnerGeek Retro</channel>
<channel site="energeek.cl" lang="es" xmltv_id="CCPRadio.cl" site_id="CCP Radio">CCP Radio</channel>
<channel site="energeek.cl" lang="es" xmltv_id="EnerGeekRadio.cl" site_id="EnerGeek Radio TV">EnerGeek Radio TV</channel>
<channel site="energeek.cl" lang="es" xmltv_id="FanpopTV.cl" site_id="Fanpop TV">Fanpop TV</channel>
</channels>

View file

@ -1,33 +0,0 @@
const parser = require('epg-parser')
module.exports = {
site: 'energeek.cl',
days: 2,
request: {
cache: {
ttl: 60 * 60 * 1000 // 1 hour
}
},
url: 'https://raw.githubusercontent.com/luisms123/tdt/master/guiaenergeek.xml',
parser: function ({ content, channel, date }) {
let programs = []
const items = parseItems(content, channel, date)
items.forEach(item => {
programs.push({
title: item.title?.[0]?.value,
description: item.desc?.[0]?.value,
icon: item.icon?.[0],
start: item.start,
stop: item.stop
})
})
return programs
}
}
function parseItems(content, channel, date) {
const { programs } = parser.parse(content)
return programs.filter(p => p.channel === channel.site_id && date.isSame(p.start, 'day'))
}

View file

@ -1,39 +0,0 @@
// npm run grab -- --site=energeek.cl
const { parser, url } = require('./energeek.cl.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('2022-11-29', 'YYYY-MM-DD').startOf('d')
const channel = {
site_id: 'EnerGeek Retro',
xmltv_id: 'EnerGeekRetro.cl'
}
it('can generate valid url', () => {
expect(url).toBe('https://raw.githubusercontent.com/luisms123/tdt/master/guiaenergeek.xml')
})
it('can parse response', () => {
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.xml'))
let results = parser({ content, channel, date })
expect(results[0]).toMatchObject({
start: '2022-11-29T03:00:00.000Z',
stop: '2022-11-29T03:30:00.000Z',
title: 'Noir',
description:
'Kirika Yuumura es una adolescente japonesa que no recuerda nada de su pasado, salvo la palabra NOIR, por lo que decidirá contactar con Mireille Bouquet, una asesina profesional para que la ayude a investigar. Ambas forman un equipo muy eficiente, que resuelve un trabajo tras otro con gran éxito, hasta que aparece un grupo conocido como "Les Soldats", relacionados con el pasado de Kirika. Estos tratarán de eliminar a las dos chicas, antes de que indaguen más hondo sobre la verdad acerca de Noir',
icon: 'https://pics.filmaffinity.com/nowaru_noir_tv_series-225888552-mmed.jpg'
})
})
it('can handle empty guide', () => {
const result = parser({ content: '', channel, date })
expect(result).toMatchObject([])
})