diff --git a/sites/kvf.fo/kvf.fo.config.js b/sites/kvf.fo/kvf.fo.config.js new file mode 100644 index 00000000..90a7933c --- /dev/null +++ b/sites/kvf.fo/kvf.fo.config.js @@ -0,0 +1,69 @@ +const cheerio = require('cheerio') +const dayjs = require('dayjs') +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) + +module.exports = { + site: 'kvf.fo', + url({ date }) { + return `https://kvf.fo/nskra/uv?date=${date.format('YYYY-MM-DD')}` + }, + logo({ channel }) { + return channel.logo + }, + parser({ content, date }) { + let programs = [] + const items = parseItems(content) + items.forEach(item => { + const $item = cheerio.load(item) + let start = parseStart($item, date) + let stop = parseStop($item, date) + if (start.isAfter(stop)) { + stop = stop.add(1, 'd') + date = date.add(1, 'd') + } + programs.push({ + title: parseTitle($item), + start, + stop + }) + }) + + return programs + } +} + +function parseStart($item, date) { + const string = $item('.s-normal > .s-time1').text().trim() + let [time] = string.match(/^(\d{2}:\d{2})/g) || [null] + if (!time) return null + time = `${date.format('YYYY-MM-DD')} ${time}` + + return dayjs.tz(time, 'YYYY-MM-DD HH:mm', 'Atlantic/Faroe') +} + +function parseStop($item, date) { + const string = $item('.s-normal > .s-time1').text().trim() + let [time] = string.match(/(\d{2}:\d{2})$/g) || [null] + if (!time) return null + time = `${date.format('YYYY-MM-DD')} ${time}` + + return dayjs.tz(time, 'YYYY-MM-DD HH:mm', 'Atlantic/Faroe') +} + +function parseTitle($item) { + return $item('.s-normal > .s-heiti').text() +} + +function parseItems(content) { + const $ = cheerio.load(content) + + return $( + '#block-system-main > div > div > div.panels-flexible-row.panels-flexible-row-339-main-row.panels-flexible-row-last.clearfix > div > div.panels-flexible-region.panels-flexible-region-339-center.panels-flexible-region-first > div > div > div > div > div.view-content > div.views-row' + ).toArray() +} diff --git a/sites/kvf.fo/kvf.fo.test.js b/sites/kvf.fo/kvf.fo.test.js new file mode 100644 index 00000000..cef52ccb --- /dev/null +++ b/sites/kvf.fo/kvf.fo.test.js @@ -0,0 +1,59 @@ +// npx epg-grabber --config=sites/kvf.fo/kvf.fo.config.js --channels=sites/kvf.fo/kvf.fo_fo.channels.xml --output=.gh-pages/guides/fo/kvf.fo.epg.xml --days=2 + +const { parser, url, logo } = require('./kvf.fo.config.js') +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('2021-11-21', 'YYYY-MM-DD').startOf('d') +const channel = { + site_id: '#', + xmltv_id: 'KVFSjonvarp.fo', + logo: 'https://kvf.fo/sites/all/themes/bootstrap_subtheme/logo.png' +} + +it('can generate valid url', () => { + expect(url({ date })).toBe('https://kvf.fo/nskra/uv?date=2021-11-21') +}) + +it('can get logo url', () => { + expect(logo({ channel })).toBe('https://kvf.fo/sites/all/themes/bootstrap_subtheme/logo.png') +}) + +it('can parse response', () => { + const content = `
00:00 - 02:00
Plátubarrin
23:00 - 00:00
Tónleikur
00:00 - 01:00
Náttarrásin
` + const result = parser({ content, date }).map(p => { + p.start = p.start.toJSON() + p.stop = p.stop.toJSON() + return p + }) + + expect(result).toMatchObject([ + { + start: '2021-11-21T00:00:00.000Z', + stop: '2021-11-21T02:00:00.000Z', + title: `Plátubarrin` + }, + { + start: '2021-11-21T23:00:00.000Z', + stop: '2021-11-22T00:00:00.000Z', + title: `Tónleikur` + }, + { + start: '2021-11-22T00:00:00.000Z', + stop: '2021-11-22T01:00:00.000Z', + title: `Náttarrásin` + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ + date, + channel, + content: ` ` + }) + expect(result).toMatchObject([]) +}) diff --git a/sites/kvf.fo/kvf.fo_fo.channels.xml b/sites/kvf.fo/kvf.fo_fo.channels.xml new file mode 100644 index 00000000..579822b1 --- /dev/null +++ b/sites/kvf.fo/kvf.fo_fo.channels.xml @@ -0,0 +1,6 @@ + + + + KVF Sjónvarp + + \ No newline at end of file