mirror of
https://github.com/iptv-org/epg
synced 2026-05-09 02:47:00 -04:00
Fixes linter errors
This commit is contained in:
@@ -1,52 +1,52 @@
|
||||
const dayjs = require('dayjs')
|
||||
|
||||
module.exports = {
|
||||
site: 'frikanalen.no',
|
||||
days: 2,
|
||||
url({ date }) {
|
||||
return `https://frikanalen.no/api/scheduleitems/?date=${date.format(
|
||||
'YYYY-MM-DD'
|
||||
)}&format=json&limit=100`
|
||||
},
|
||||
parser({ content }) {
|
||||
let programs = []
|
||||
const items = parseItems(content)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: parseTitle(item),
|
||||
category: parseCategory(item),
|
||||
description: parseDescription(item),
|
||||
start: parseStart(item),
|
||||
stop: parseStop(item)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
}
|
||||
}
|
||||
|
||||
function parseTitle(item) {
|
||||
return item.video.name
|
||||
}
|
||||
|
||||
function parseCategory(item) {
|
||||
return item.video.categories
|
||||
}
|
||||
|
||||
function parseDescription(item) {
|
||||
return item.video.header
|
||||
}
|
||||
|
||||
function parseStart(item) {
|
||||
return dayjs(item.starttime)
|
||||
}
|
||||
|
||||
function parseStop(item) {
|
||||
return dayjs(item.endtime)
|
||||
}
|
||||
|
||||
function parseItems(content) {
|
||||
const data = JSON.parse(content)
|
||||
|
||||
return data && Array.isArray(data.results) ? data.results : []
|
||||
}
|
||||
const dayjs = require('dayjs')
|
||||
|
||||
module.exports = {
|
||||
site: 'frikanalen.no',
|
||||
days: 2,
|
||||
url({ date }) {
|
||||
return `https://frikanalen.no/api/scheduleitems/?date=${date.format(
|
||||
'YYYY-MM-DD'
|
||||
)}&format=json&limit=100`
|
||||
},
|
||||
parser({ content }) {
|
||||
let programs = []
|
||||
const items = parseItems(content)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: parseTitle(item),
|
||||
category: parseCategory(item),
|
||||
description: parseDescription(item),
|
||||
start: parseStart(item),
|
||||
stop: parseStop(item)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
}
|
||||
}
|
||||
|
||||
function parseTitle(item) {
|
||||
return item.video.name
|
||||
}
|
||||
|
||||
function parseCategory(item) {
|
||||
return item.video.categories
|
||||
}
|
||||
|
||||
function parseDescription(item) {
|
||||
return item.video.header
|
||||
}
|
||||
|
||||
function parseStart(item) {
|
||||
return dayjs(item.starttime)
|
||||
}
|
||||
|
||||
function parseStop(item) {
|
||||
return dayjs(item.endtime)
|
||||
}
|
||||
|
||||
function parseItems(content) {
|
||||
const data = JSON.parse(content)
|
||||
|
||||
return data && Array.isArray(data.results) ? data.results : []
|
||||
}
|
||||
|
||||
@@ -1,49 +1,49 @@
|
||||
// npm run grab -- --site=frikanalen.no
|
||||
|
||||
const { parser, url } = require('./frikanalen.no.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('2022-01-19', 'YYYY-MM-DD').startOf('d')
|
||||
const channel = {
|
||||
site_id: '#',
|
||||
xmltv_id: 'Frikanalen.no'
|
||||
}
|
||||
|
||||
it('can generate valid url', () => {
|
||||
expect(url({ date })).toBe(
|
||||
'https://frikanalen.no/api/scheduleitems/?date=2022-01-19&format=json&limit=100'
|
||||
)
|
||||
})
|
||||
|
||||
it('can parse response', () => {
|
||||
const content =
|
||||
'{"count":83,"next":null,"previous":null,"results":[{"id":135605,"video":{"id":626094,"name":"FSCONS 2017 - Keynote: TBA - Linda Sandvik","header":"Linda Sandvik\'s keynote at FSCONS 2017\\r\\n\\r\\nRecorded by NUUG for FSCONS.","description":null,"creator":"davidwnoble@gmail.com","organization":{"id":82,"name":"NUUG","homepage":"https://www.nuug.no/","description":"Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.","postalAddress":"","streetAddress":"","editorId":2148,"editorName":"David Noble","editorEmail":"davidwnoble@gmail.com","editorMsisdn":"","fkmember":true},"duration":"00:57:55.640000","categories":["Samfunn"]},"schedulereason":5,"starttime":"2022-01-19T00:47:00+01:00","endtime":"2022-01-19T01:44:55.640000+01:00","duration":"00:57:55.640000"}]}'
|
||||
const result = parser({ content }).map(p => {
|
||||
p.start = p.start.toJSON()
|
||||
p.stop = p.stop.toJSON()
|
||||
return p
|
||||
})
|
||||
|
||||
expect(result).toMatchObject([
|
||||
{
|
||||
start: '2022-01-18T23:47:00.000Z',
|
||||
stop: '2022-01-19T00:44:55.640Z',
|
||||
title: 'FSCONS 2017 - Keynote: TBA - Linda Sandvik',
|
||||
category: ['Samfunn'],
|
||||
description: "Linda Sandvik's keynote at FSCONS 2017\r\n\r\nRecorded by NUUG for FSCONS."
|
||||
}
|
||||
])
|
||||
})
|
||||
|
||||
it('can handle empty guide', () => {
|
||||
const result = parser({
|
||||
date,
|
||||
channel,
|
||||
content: '{"count":0,"next":null,"previous":null,"results":[]}'
|
||||
})
|
||||
expect(result).toMatchObject([])
|
||||
})
|
||||
// npm run grab -- --site=frikanalen.no
|
||||
|
||||
const { parser, url } = require('./frikanalen.no.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('2022-01-19', 'YYYY-MM-DD').startOf('d')
|
||||
const channel = {
|
||||
site_id: '#',
|
||||
xmltv_id: 'Frikanalen.no'
|
||||
}
|
||||
|
||||
it('can generate valid url', () => {
|
||||
expect(url({ date })).toBe(
|
||||
'https://frikanalen.no/api/scheduleitems/?date=2022-01-19&format=json&limit=100'
|
||||
)
|
||||
})
|
||||
|
||||
it('can parse response', () => {
|
||||
const content =
|
||||
'{"count":83,"next":null,"previous":null,"results":[{"id":135605,"video":{"id":626094,"name":"FSCONS 2017 - Keynote: TBA - Linda Sandvik","header":"Linda Sandvik\'s keynote at FSCONS 2017\\r\\n\\r\\nRecorded by NUUG for FSCONS.","description":null,"creator":"davidwnoble@gmail.com","organization":{"id":82,"name":"NUUG","homepage":"https://www.nuug.no/","description":"Forening NUUG er for alle som er interessert i fri programvare, åpne standarder og Unix-lignende operativsystemer.","postalAddress":"","streetAddress":"","editorId":2148,"editorName":"David Noble","editorEmail":"davidwnoble@gmail.com","editorMsisdn":"","fkmember":true},"duration":"00:57:55.640000","categories":["Samfunn"]},"schedulereason":5,"starttime":"2022-01-19T00:47:00+01:00","endtime":"2022-01-19T01:44:55.640000+01:00","duration":"00:57:55.640000"}]}'
|
||||
const result = parser({ content }).map(p => {
|
||||
p.start = p.start.toJSON()
|
||||
p.stop = p.stop.toJSON()
|
||||
return p
|
||||
})
|
||||
|
||||
expect(result).toMatchObject([
|
||||
{
|
||||
start: '2022-01-18T23:47:00.000Z',
|
||||
stop: '2022-01-19T00:44:55.640Z',
|
||||
title: 'FSCONS 2017 - Keynote: TBA - Linda Sandvik',
|
||||
category: ['Samfunn'],
|
||||
description: "Linda Sandvik's keynote at FSCONS 2017\r\n\r\nRecorded by NUUG for FSCONS."
|
||||
}
|
||||
])
|
||||
})
|
||||
|
||||
it('can handle empty guide', () => {
|
||||
const result = parser({
|
||||
date,
|
||||
channel,
|
||||
content: '{"count":0,"next":null,"previous":null,"results":[]}'
|
||||
})
|
||||
expect(result).toMatchObject([])
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user