-
-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathtvim.tv.config.js
61 lines (52 loc) · 1.36 KB
/
tvim.tv.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const dayjs = require('dayjs')
module.exports = {
site: 'tvim.tv',
days: 2,
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`
},
parser: function ({ content }) {
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
},
async channels() {
const axios = require('axios')
const data = await axios
.get('https://www.tvim.tv/script/epg/category_channels?category=all&filter=playable')
.then(r => r.data)
.catch(console.log)
let channels = []
data.data.forEach(item => {
channels.push({
lang: 'sq',
site_id: item.epg_id,
name: item.name
})
})
return channels
}
}
function parseStart(item) {
return dayjs.unix(item.from_utc)
}
function parseStop(item) {
return dayjs.unix(item.end_utc)
}
function parseItems(content) {
const parsed = JSON.parse(content)
return parsed.data.prog || []
}