From 0ca068b4c80e964771acb8239f775f79534ae901 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 24 Oct 2021 23:31:31 +0300 Subject: [PATCH 1/4] Create tvim.tv.test.js --- sites/tvim.tv/tvim.tv.test.js | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 sites/tvim.tv/tvim.tv.test.js diff --git a/sites/tvim.tv/tvim.tv.test.js b/sites/tvim.tv/tvim.tv.test.js new file mode 100644 index 00000000..2a8fd0e2 --- /dev/null +++ b/sites/tvim.tv/tvim.tv.test.js @@ -0,0 +1,42 @@ +// npx epg-grabber --config=sites/tvim.tv/tvim.tv.config.js --channels=sites/tvim.tv/tvim.tv_xk.channels.xml --days=2 --output=.gh-pages/guides/xk/tvim.tv.epg.xml + +const { parser, url, logo } = require('./tvim.tv.config.js') +const dayjs = require('dayjs') + +const date = dayjs('10/24/2021') +const channel = { site_id: 'T7', xmltv_id: 'T7.rs' } +const content = `{"response":"ok","data":{"thumb":"https://mobile-api.tvim.tv/images/chan_logos/70x25/T7.png","thumb_rel":"https://mobile-api.tvim.tv/images/chan_logos/70x25/T7.png","thumb_large_rel":"https://mobile-api.tvim.tv/images/chan_logos/120x60/T7.png","thumb_http":"http://mobile-api.tvim.tv/images/chan_logos/70x25/T7.png","thumb_large":"http://mobile-api.tvim.tv/images/chan_logos/120x60/T7.png","server_time":1635100951,"catchup_length":2,"_id":"T73","ind":2,"genre":"national","name":"T7","epg_id":"T7","chan":"T7","prog":[{"id":"T7-1635026400","title":"Programi i T7","from":1635026400,"end":1635040800,"starting":"00:00","from_utc":1635026400,"end_utc":1635040800,"desc":"Programi i T7","genre":"test","chan":"T7","epg_id":"T7","eng":""}]}}` + +it('can generate valid url', () => { + const result = url({ date, channel }) + expect(result).toBe( + 'https://www.tvim.tv/script/program_epg?date=24.10.2021&prog=T7&server_time=true' + ) +}) + +it('can get logo url', () => { + const result = logo({ content }) + expect(result).toBe('https://mobile-api.tvim.tv/images/chan_logos/120x60/T7.png') +}) + +it('can parse response', () => { + const result = parser({ date, channel, content }) + expect(result).toMatchObject([ + { + start: 'Sat, 23 Oct 2021 22:00:00 GMT', + stop: 'Sun, 24 Oct 2021 02:00:00 GMT', + title: 'Programi i T7', + description: `Programi i T7`, + category: 'test' + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ + date, + channel, + content: `{"response":"ok","data":{"server_time":1635100927}}` + }) + expect(result).toMatchObject([]) +}) From cdd0dfb727d0e1519f6383fad514e77d6dacad6d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 24 Oct 2021 23:31:53 +0300 Subject: [PATCH 2/4] Create tvim.tv.config.js --- sites/tvim.tv/tvim.tv.config.js | 45 +++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 sites/tvim.tv/tvim.tv.config.js diff --git a/sites/tvim.tv/tvim.tv.config.js b/sites/tvim.tv/tvim.tv.config.js new file mode 100644 index 00000000..443efb76 --- /dev/null +++ b/sites/tvim.tv/tvim.tv.config.js @@ -0,0 +1,45 @@ +const dayjs = require('dayjs') + +module.exports = { + site: 'tvim.tv', + url: function ({ date, channel }) { + return `https://www.tvim.tv/script/program_epg?date=${date.format('DD.MM.YYYY')}&prog=${ + channel.site_id + }&server_time=true` + }, + logo({ channel }) { + return `https://mobile-api.tvim.tv/images/channels/120x60px/${channel.site_id}.png` + }, + parser: function ({ content, channel, date }) { + let programs = [] + const items = parseItems(content) + items.forEach(item => { + const start = parseStart(item) + const stop = parseStop(item) + + programs.push({ + title: item.title, + description: item.desc, + category: item.genre, + start: start.toString(), + stop: stop.toString() + }) + }) + + return programs + } +} + +function parseStart(item) { + return dayjs.unix(item.from_utc) +} + +function parseStop(item) { + return dayjs.unix(item.end_utc) +} + +function parseItems(content, channel) { + const parsed = JSON.parse(content) + + return parsed.data.prog || [] +} From 7c6c43da8e8e303b88555bede42812a75b1768e5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 24 Oct 2021 23:31:57 +0300 Subject: [PATCH 3/4] Create tvim.tv_xk.channels.xml --- sites/tvim.tv/tvim.tv_xk.channels.xml | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 sites/tvim.tv/tvim.tv_xk.channels.xml diff --git a/sites/tvim.tv/tvim.tv_xk.channels.xml b/sites/tvim.tv/tvim.tv_xk.channels.xml new file mode 100644 index 00000000..2a8eca04 --- /dev/null +++ b/sites/tvim.tv/tvim.tv_xk.channels.xml @@ -0,0 +1,32 @@ + + + + Baby TV Europe + Bang Bang + Boomerang Central & Eastern Europe + Çufo + Eurosport 1 + Explorer Histori + Explorer Natyra + Explorer Shkencë + Family HD + Film Aksion + Film Dy HD + Film Komedi + Fox Life Regional + Fox Srbija + Junior TV + Kohavision + SuperSport 2 + SuperSport 3 + SuperSport 4 + SuperSport 5 + SuperSport 6 + SuperSport Kosova 1 + SuperSport Kosova 2 + SuperSport Kosova 3 + T + T7 + Top Channel + + \ No newline at end of file From a74a8c1ca9698a33e3e5304004fc4505f30c85e5 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 24 Oct 2021 23:35:41 +0300 Subject: [PATCH 4/4] Update tvim.tv.test.js --- sites/tvim.tv/tvim.tv.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/tvim.tv/tvim.tv.test.js b/sites/tvim.tv/tvim.tv.test.js index 2a8fd0e2..9718c839 100644 --- a/sites/tvim.tv/tvim.tv.test.js +++ b/sites/tvim.tv/tvim.tv.test.js @@ -15,8 +15,8 @@ it('can generate valid url', () => { }) it('can get logo url', () => { - const result = logo({ content }) - expect(result).toBe('https://mobile-api.tvim.tv/images/chan_logos/120x60/T7.png') + const result = logo({ channel }) + expect(result).toBe('https://mobile-api.tvim.tv/images/channels/120x60px/T7.png') }) it('can parse response', () => {