mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Update tva.tv
This commit is contained in:
parent
f1999265fb
commit
7a5a1505f3
3 changed files with 32 additions and 49 deletions
|
@ -8,9 +8,6 @@ module.exports = {
|
||||||
channel.site_id
|
channel.site_id
|
||||||
}&pivot_date=${date.format('YYYY-MM-DD')}`
|
}&pivot_date=${date.format('YYYY-MM-DD')}`
|
||||||
},
|
},
|
||||||
logo: function ({ channel }) {
|
|
||||||
return channel.logo
|
|
||||||
},
|
|
||||||
parser: function ({ content, date, channel }) {
|
parser: function ({ content, date, channel }) {
|
||||||
const programs = []
|
const programs = []
|
||||||
const items = parseItems(content)
|
const items = parseItems(content)
|
||||||
|
@ -40,18 +37,11 @@ module.exports = {
|
||||||
|
|
||||||
const channels = []
|
const channels = []
|
||||||
for (let item of data.data) {
|
for (let item of data.data) {
|
||||||
const logo = item.images
|
|
||||||
? item.images[0].url_template
|
|
||||||
.replace('{width}', '512')
|
|
||||||
.replace('{height}', '512')
|
|
||||||
.replace('{crop}', 'c')
|
|
||||||
: null
|
|
||||||
channels.push({
|
channels.push({
|
||||||
lang: 'fa',
|
lang: 'fa',
|
||||||
site_id: item.id,
|
site_id: item.id,
|
||||||
name: item.name,
|
name: item.name,
|
||||||
xmltv_id: item.slug,
|
xmltv_id: item.slug
|
||||||
logo
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// node ./scripts/channels.js --config=./sites/tva.tv/tva.tv.config.js --output=./sites/tva.tv/tva.tv_ir.channels.xml
|
// node ./scripts/channels.js --config=./sites/tva.tv/tva.tv.config.js --output=./sites/tva.tv/tva.tv_ir.channels.xml
|
||||||
// npx epg-grabber --config=sites/tva.tv/tva.tv.config.js --channels=sites/tva.tv/tva.tv_ir.channels.xml --output=.gh-pages/guides/ir/tva.tv.epg.xml --timeout=30000 --days=2
|
// npx epg-grabber --config=sites/tva.tv/tva.tv.config.js --channels=sites/tva.tv/tva.tv_ir.channels.xml --output=.gh-pages/guides/ir/tva.tv.epg.xml --timeout=30000 --days=2
|
||||||
|
|
||||||
const { parser, url, logo } = require('./tva.tv.config.js')
|
const { parser, url } = require('./tva.tv.config.js')
|
||||||
const dayjs = require('dayjs')
|
const dayjs = require('dayjs')
|
||||||
const utc = require('dayjs/plugin/utc')
|
const utc = require('dayjs/plugin/utc')
|
||||||
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||||
|
@ -11,8 +11,7 @@ dayjs.extend(utc)
|
||||||
const date = dayjs.utc('2021-11-25', 'YYYY-MM-DD').startOf('d')
|
const date = dayjs.utc('2021-11-25', 'YYYY-MM-DD').startOf('d')
|
||||||
const channel = {
|
const channel = {
|
||||||
site_id: '6fcc0a2e-1135-482c-b054-08a96e68b758',
|
site_id: '6fcc0a2e-1135-482c-b054-08a96e68b758',
|
||||||
xmltv_id: 'IRIB2.ir',
|
xmltv_id: 'IRIB2.ir'
|
||||||
logo: 'https://s3.ott.tva.tv/rosing-tva-production/bec73f72f63958fc6998_512x512c.png'
|
|
||||||
}
|
}
|
||||||
const content = `{"data":[{"id":"c0667229-eaf8-472f-8ba7-ad4417348baf","start_at":"2021-11-24T00:20:39.000Z","end_at":"2021-11-24T00:32:11.000Z","description":"تلفن های شبکه 5 سیما: تلفن: 23511000 -تلفن گویا:2786500 نمابر:23511289","name":"میان برنامه","subtitle":"","season_number":null,"episode_number":null,"channel_id":"6fcc0a2e-1135-482c-b054-08a96e68b758","program_id":"e495c06e-80de-46ee-9120-619631f554d9","competition_id":null,"object":"program_event","cast_members":[],"genres":[],"images":[],"program_type":null,"certification_ratings":[]}]}`
|
const content = `{"data":[{"id":"c0667229-eaf8-472f-8ba7-ad4417348baf","start_at":"2021-11-24T00:20:39.000Z","end_at":"2021-11-24T00:32:11.000Z","description":"تلفن های شبکه 5 سیما: تلفن: 23511000 -تلفن گویا:2786500 نمابر:23511289","name":"میان برنامه","subtitle":"","season_number":null,"episode_number":null,"channel_id":"6fcc0a2e-1135-482c-b054-08a96e68b758","program_id":"e495c06e-80de-46ee-9120-619631f554d9","competition_id":null,"object":"program_event","cast_members":[],"genres":[],"images":[],"program_type":null,"certification_ratings":[]}]}`
|
||||||
|
|
||||||
|
@ -22,12 +21,6 @@ it('can generate valid url', () => {
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('can generate valid logo url', () => {
|
|
||||||
expect(logo({ channel })).toBe(
|
|
||||||
'https://s3.ott.tva.tv/rosing-tva-production/bec73f72f63958fc6998_512x512c.png'
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('can parse response', () => {
|
it('can parse response', () => {
|
||||||
const result = parser({ content, channel, date }).map(p => {
|
const result = parser({ content, channel, date }).map(p => {
|
||||||
p.start = p.start.toJSON()
|
p.start = p.start.toJSON()
|
||||||
|
|
|
@ -1,34 +1,34 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<site site="tva.tv">
|
<site site="tva.tv">
|
||||||
<channels>
|
<channels>
|
||||||
<channel lang="fa" xmltv_id="AzarbayjaneGharbiTV.ir" site_id="021663bd-fdc2-431d-9dcd-b0354ea8d489" logo="https://s3.ott.tva.tv/rosing-tva-production/4f24a08dc1f313e0e32c_512x512c.png">Azarbayjan-e Gharbi TV</channel>
|
<channel lang="fa" xmltv_id="AzarbayjaneGharbiTV.ir" site_id="021663bd-fdc2-431d-9dcd-b0354ea8d489">Azarbayjan-e Gharbi TV</channel>
|
||||||
<channel lang="fa" xmltv_id="DocTV.ir" site_id="6f7726c5-b781-4957-ab95-69bc879873e5" logo="https://s3.ott.tva.tv/rosing-tva-production/eb425c0cce6d8265786a_512x512c.png">Doc TV</channel>
|
<channel lang="fa" xmltv_id="DocTV.ir" site_id="6f7726c5-b781-4957-ab95-69bc879873e5">Doc TV</channel>
|
||||||
<channel lang="fa" xmltv_id="HamedanTV.ir" site_id="cb013830-a496-48c9-8140-4c1fd8df5794" logo="https://s3.ott.tva.tv/rosing-tva-production/1cf2c807ca10146e7e09_512x512c.png">Hamedan TV</channel>
|
<channel lang="fa" xmltv_id="HamedanTV.ir" site_id="cb013830-a496-48c9-8140-4c1fd8df5794">Hamedan TV</channel>
|
||||||
<channel lang="fa" xmltv_id="IRIB1.ir" site_id="0823beb2-f2fa-4a2c-ae37-d429a0f55d80" logo="https://s3.ott.tva.tv/rosing-tva-production/831342b5dc81d07ebec7_512x512c.png">IRIB 1</channel>
|
<channel lang="fa" xmltv_id="IRIB1.ir" site_id="0823beb2-f2fa-4a2c-ae37-d429a0f55d80">IRIB 1</channel>
|
||||||
<channel lang="fa" xmltv_id="IRIB2.ir" site_id="6fcc0a2e-1135-482c-b054-08a96e68b758" logo="https://s3.ott.tva.tv/rosing-tva-production/bec73f72f63958fc6998_512x512c.png">IRIB 2</channel>
|
<channel lang="fa" xmltv_id="IRIB2.ir" site_id="6fcc0a2e-1135-482c-b054-08a96e68b758">IRIB 2</channel>
|
||||||
<channel lang="fa" xmltv_id="IRIB3.ir" site_id="0149e4b4-6027-4be9-af1d-35223920d6db" logo="https://s3.ott.tva.tv/rosing-tva-production/2768e5ba4bbed336b88e_512x512c.png">IRIB 3</channel>
|
<channel lang="fa" xmltv_id="IRIB3.ir" site_id="0149e4b4-6027-4be9-af1d-35223920d6db">IRIB 3</channel>
|
||||||
<channel lang="fa" xmltv_id="IRIB4.ir" site_id="10103e6b-1285-466b-bbd0-c523400003d6" logo="https://s3.ott.tva.tv/rosing-tva-production/fa912f5828ff9f2d9aeb_512x512c.png">IRIB 4</channel>
|
<channel lang="fa" xmltv_id="IRIB4.ir" site_id="10103e6b-1285-466b-bbd0-c523400003d6">IRIB 4</channel>
|
||||||
<channel lang="fa" xmltv_id="IRIB5.ir" site_id="d8b27a06-333e-44ee-a74b-16d51b8f6300" logo="https://s3.ott.tva.tv/rosing-tva-production/20193184766e96bac2b5_512x512c.png">IRIB 5</channel>
|
<channel lang="fa" xmltv_id="IRIB5.ir" site_id="d8b27a06-333e-44ee-a74b-16d51b8f6300">IRIB 5</channel>
|
||||||
<channel lang="fa" xmltv_id="IRINN.ir" site_id="ff76db87-84ff-4b94-bd6e-0656cf1b9428" logo="https://s3.ott.tva.tv/rosing-tva-production/44d0105b6c9ec94b5c3e_512x512c.png">IRINN</channel>
|
<channel lang="fa" xmltv_id="IRINN.ir" site_id="ff76db87-84ff-4b94-bd6e-0656cf1b9428">IRINN</channel>
|
||||||
<channel lang="fa" xmltv_id="IrkalaTV.ir" site_id="fb0ccffb-08c4-4b86-bb0c-a3095a62d9de" logo="https://s3.ott.tva.tv/rosing-tva-production/f3459ff9596f806ac3fd_512x512c.png">Irkala TV</channel>
|
<channel lang="fa" xmltv_id="IrkalaTV.ir" site_id="fb0ccffb-08c4-4b86-bb0c-a3095a62d9de">Irkala TV</channel>
|
||||||
<channel lang="fa" xmltv_id="JameJamTVNetwork1.ir" site_id="ad87c942-719a-4271-9b29-43dd5c2f1c77" logo="https://s3.ott.tva.tv/rosing-tva-production/e7f978cd0edf5721e0f8_512x512c.png">Jame-Jam TV Network 1</channel>
|
<channel lang="fa" xmltv_id="JameJamTVNetwork1.ir" site_id="ad87c942-719a-4271-9b29-43dd5c2f1c77">Jame-Jam TV Network 1</channel>
|
||||||
<channel lang="fa" xmltv_id="KhorasanRazaviTV.ir" site_id="1f8924b0-0491-4694-8359-0db5944913fa" logo="https://s3.ott.tva.tv/rosing-tva-production/a23932c1fb072b18fbf1_512x512c.png">Khorasan Razavi TV</channel>
|
<channel lang="fa" xmltv_id="KhorasanRazaviTV.ir" site_id="1f8924b0-0491-4694-8359-0db5944913fa">Khorasan Razavi TV</channel>
|
||||||
<channel lang="fa" xmltv_id="NamayeshTV.ir" site_id="122f6a18-33ec-4b6a-8af1-0b91cac91329" logo="https://s3.ott.tva.tv/rosing-tva-production/b96d011493f3b3327777_512x512c.png">Namayesh TV</channel>
|
<channel lang="fa" xmltv_id="NamayeshTV.ir" site_id="122f6a18-33ec-4b6a-8af1-0b91cac91329">Namayesh TV</channel>
|
||||||
<channel lang="fa" xmltv_id="Nasim.ir" site_id="c9734bf7-a53e-4748-a60c-20e0d1ede795" logo="https://s3.ott.tva.tv/rosing-tva-production/f5a6ea5dd15e5fb562a3_512x512c.png">Nasim</channel>
|
<channel lang="fa" xmltv_id="Nasim.ir" site_id="c9734bf7-a53e-4748-a60c-20e0d1ede795">Nasim</channel>
|
||||||
<channel lang="fa" xmltv_id="OmidTV.ir" site_id="22969e9a-88a1-4c82-8f94-7564d3181331" logo="https://s3.ott.tva.tv/rosing-tva-production/a900c9a656446c35344e_512x512c.png">Omid TV</channel>
|
<channel lang="fa" xmltv_id="OmidTV.ir" site_id="22969e9a-88a1-4c82-8f94-7564d3181331">Omid TV</channel>
|
||||||
<channel lang="fa" xmltv_id="SalaamTV.us" site_id="c7af0211-b644-49b6-8d62-b3710b2a15df" logo="https://s3.ott.tva.tv/rosing-tva-production/25c09dda5696d176ce74_512x512c.png">Salaam TV</channel>
|
<channel lang="fa" xmltv_id="SalaamTV.us" site_id="c7af0211-b644-49b6-8d62-b3710b2a15df">Salaam TV</channel>
|
||||||
<channel lang="fa" xmltv_id="Sepehr.ir" site_id="fcd16b90-28e1-448e-adc9-6f4e6ff4bf07" logo="https://s3.ott.tva.tv/rosing-tva-production/90df4e86d28cea81af3a_512x512c.png">Sepehr</channel>
|
<channel lang="fa" xmltv_id="Sepehr.ir" site_id="fcd16b90-28e1-448e-adc9-6f4e6ff4bf07">Sepehr</channel>
|
||||||
<channel lang="fa" xmltv_id="TabanTV.ir" site_id="959132fc-c82a-4b53-89ac-52acca913d8d" logo="https://s3.ott.tva.tv/rosing-tva-production/25deb0b31b87f59ba1bf_512x512c.png">Taban TV</channel>
|
<channel lang="fa" xmltv_id="TabanTV.ir" site_id="959132fc-c82a-4b53-89ac-52acca913d8d">Taban TV</channel>
|
||||||
<channel lang="fa" xmltv_id="TVA1.ir" site_id="3111d9be-b289-4a8c-84e8-92a18d33eeda" logo="https://s3.ott.tva.tv/rosing-tva-production/3d3df6d6d99b4db52a43_512x512c.png">TVA 1</channel>
|
<channel lang="fa" xmltv_id="TVA1.ir" site_id="3111d9be-b289-4a8c-84e8-92a18d33eeda">TVA 1</channel>
|
||||||
<channel lang="fa" xmltv_id="TVA2.ir" site_id="a804bce4-1db5-4f7d-bbca-271dc0d70076" logo="https://s3.ott.tva.tv/rosing-tva-production/932f8ff4bb81dcc1a340_512x512c.png">TVA 2</channel>
|
<channel lang="fa" xmltv_id="TVA2.ir" site_id="a804bce4-1db5-4f7d-bbca-271dc0d70076">TVA 2</channel>
|
||||||
<channel lang="fa" xmltv_id="TVAAvand.ir" site_id="ec2d6905-6406-44c1-89a1-8a2d83113e6c" logo="https://s3.ott.tva.tv/rosing-tva-production/402f2128c54be1a15dbe_512x512c.png">TVA Avand</channel>
|
<channel lang="fa" xmltv_id="TVAAvand.ir" site_id="ec2d6905-6406-44c1-89a1-8a2d83113e6c">TVA Avand</channel>
|
||||||
<channel lang="fa" xmltv_id="TVABourse.ir" site_id="4d6cc8b9-78d4-492c-afda-63a8d004bfbb" logo="https://s3.ott.tva.tv/rosing-tva-production/ed76470d819e7abb35f0_512x512c.png">TVA Bourse</channel>
|
<channel lang="fa" xmltv_id="TVABourse.ir" site_id="4d6cc8b9-78d4-492c-afda-63a8d004bfbb">TVA Bourse</channel>
|
||||||
<channel lang="fa" xmltv_id="TVAFilm.ir" site_id="374a9cb5-b3cb-438d-9977-7d5f0aba1bad" logo="https://s3.ott.tva.tv/rosing-tva-production/4755e9d0f24121deaac4_512x512c.png">TVA Film</channel>
|
<channel lang="fa" xmltv_id="TVAFilm.ir" site_id="374a9cb5-b3cb-438d-9977-7d5f0aba1bad">TVA Film</channel>
|
||||||
<channel lang="fa" xmltv_id="TVAKids.ir" site_id="d286f21f-0767-430c-a442-ab7924e5d361" logo="https://s3.ott.tva.tv/rosing-tva-production/81f8929a7aeadce968d5_512x512c.png">TVA Kids</channel>
|
<channel lang="fa" xmltv_id="TVAKids.ir" site_id="d286f21f-0767-430c-a442-ab7924e5d361">TVA Kids</channel>
|
||||||
<channel lang="fa" xmltv_id="TVAMahfel.ir" site_id="a5d4a2b3-31a2-4b35-8a8e-59606b57a0b0" logo="https://s3.ott.tva.tv/rosing-tva-production/742dd4f93dff7a6bf085_512x512c.png">TVA Mahfel</channel>
|
<channel lang="fa" xmltv_id="TVAMahfel.ir" site_id="a5d4a2b3-31a2-4b35-8a8e-59606b57a0b0">TVA Mahfel</channel>
|
||||||
<channel lang="fa" xmltv_id="TVANava.ir" site_id="a5a08946-886e-4e98-be74-b4a315fbf0b5" logo="https://s3.ott.tva.tv/rosing-tva-production/f454339d82da73d22ea1_512x512c.png">TVA Nava</channel>
|
<channel lang="fa" xmltv_id="TVANava.ir" site_id="a5a08946-886e-4e98-be74-b4a315fbf0b5">TVA Nava</channel>
|
||||||
<channel lang="fa" xmltv_id="TVASport.ir" site_id="45cbfa3e-c90b-4c4a-b1bb-d8d24f22851b" logo="https://s3.ott.tva.tv/rosing-tva-production/264fbc5c0d804c31c8a3_512x512c.png">TVA Sport</channel>
|
<channel lang="fa" xmltv_id="TVASport.ir" site_id="45cbfa3e-c90b-4c4a-b1bb-d8d24f22851b">TVA Sport</channel>
|
||||||
<channel lang="fa" xmltv_id="TVASport2.ir" site_id="6a19521e-6e44-459b-a1ba-3588e33c6a9b" logo="https://s3.ott.tva.tv/rosing-tva-production/ed2e8604c9e6128891d5_512x512c.png">TVA Sport 2</channel>
|
<channel lang="fa" xmltv_id="TVASport2.ir" site_id="6a19521e-6e44-459b-a1ba-3588e33c6a9b">TVA Sport 2</channel>
|
||||||
<channel lang="fa" xmltv_id="VelayatTVNetwork.us" site_id="bfd49e5f-3458-4965-b620-cfa0f5a0c0cf" logo="https://s3.ott.tva.tv/rosing-tva-production/aa6888992af5389b3c25_512x512c.png">Velayat TV Network</channel>
|
<channel lang="fa" xmltv_id="VelayatTVNetwork.us" site_id="bfd49e5f-3458-4965-b620-cfa0f5a0c0cf">Velayat TV Network</channel>
|
||||||
</channels>
|
</channels>
|
||||||
</site>
|
</site>
|
Loading…
Add table
Add a link
Reference in a new issue