From 3f6e3d9603e172c58e36e417f74ca0692c103453 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Thu, 11 Nov 2021 12:33:56 +0300 Subject: [PATCH] Create mtel.ba.config.js --- sites/mtel.ba/mtel.ba.config.js | 63 +++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 sites/mtel.ba/mtel.ba.config.js diff --git a/sites/mtel.ba/mtel.ba.config.js b/sites/mtel.ba/mtel.ba.config.js new file mode 100644 index 00000000..0015d995 --- /dev/null +++ b/sites/mtel.ba/mtel.ba.config.js @@ -0,0 +1,63 @@ +const dayjs = require('dayjs') +const timezone = require('dayjs/plugin/timezone') + +dayjs.extend(timezone) + +module.exports = { + site: 'mtel.ba', + url: function ({ channel, date }) { + const [position] = channel.site_id.split('#') + + return `https://mtel.ba/oec/epg/program?date=${date.format('YYYY-MM-DD')}&position=${position}` + }, + request: { + timeout: 15000, + headers: { + 'X-Requested-With': 'XMLHttpRequest' + } + }, + logo({ content, channel }) { + const data = parseContent(content, channel) + + return data ? data.image : null + }, + parser: function ({ content, channel }) { + let programs = [] + const items = parseItems(content, channel) + items.forEach(item => { + if (item.title === 'Nema informacija o programu') return + programs.push({ + title: item.title, + description: item.description, + category: item.category, + icon: item.image, + start: parseStart(item).toJSON(), + stop: parseStop(item).toJSON() + }) + }) + + return programs + } +} + +function parseStart(item) { + return dayjs.tz(item.full_start, 'Europe/Sarajevo') +} + +function parseStop(item) { + return dayjs.tz(item.full_end, 'Europe/Sarajevo') +} + +function parseContent(content, channel) { + const [_, channelId] = channel.site_id.split('#') + const data = JSON.parse(content) + if (!data || !Array.isArray(data.channels)) return null + + return data.channels.find(i => i.id === channelId) +} + +function parseItems(content, channel) { + const data = parseContent(content, channel) + + return data ? data.items : [] +}