mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Create wavve.com.config.js
This commit is contained in:
parent
57d2becc65
commit
dd86383517
1 changed files with 69 additions and 0 deletions
69
sites/wavve.com/wavve.com.config.js
Normal file
69
sites/wavve.com/wavve.com.config.js
Normal file
|
@ -0,0 +1,69 @@
|
|||
const axios = require('axios')
|
||||
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: 'wavve.com',
|
||||
url: function ({ channel, date }) {
|
||||
return `https://apis.pooq.co.kr/live/epgs/channels/${channel.site_id}?startdatetime=${date
|
||||
.tz('Asia/Seoul')
|
||||
.format('YYYY-MM-DD')}%2000%3A00&enddatetime=${date
|
||||
.tz('Asia/Seoul')
|
||||
.add(1, 'd')
|
||||
.format('YYYY-MM-DD')}%2000%3A00&apikey=E5F3E0D30947AA5440556471321BB6D9&limit=500`
|
||||
},
|
||||
parser: function ({ content }) {
|
||||
let programs = []
|
||||
const items = parseItems(content)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: item.title,
|
||||
start: parseStart(item),
|
||||
stop: parseStop(item)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels({ country }) {
|
||||
const channels = []
|
||||
|
||||
const data = await axios
|
||||
.get(
|
||||
`https://apis.pooq.co.kr/live/epgs?enddatetime=2022-04-17%2019%3A00&genre=all&limit=500&startdatetime=2022-04-17%2016%3A00&apikey=E5F3E0D30947AA5440556471321BB6D9`
|
||||
)
|
||||
.then(r => r.data)
|
||||
.catch(console.log)
|
||||
|
||||
data.list.forEach(i => {
|
||||
channels.push({
|
||||
name: i.channelname,
|
||||
site_id: i.channelid,
|
||||
lang: 'ko'
|
||||
})
|
||||
})
|
||||
|
||||
return channels
|
||||
}
|
||||
}
|
||||
|
||||
function parseStart(item) {
|
||||
return dayjs.tz(item.starttime, 'YYYY-MM-DD HH:mm', 'Asia/Seoul')
|
||||
}
|
||||
|
||||
function parseStop(item) {
|
||||
return dayjs.tz(item.endtime, 'YYYY-MM-DD HH:mm', 'Asia/Seoul')
|
||||
}
|
||||
|
||||
function parseItems(content) {
|
||||
const data = JSON.parse(content)
|
||||
if (!data || !Array.isArray(data.list)) return []
|
||||
|
||||
return data.list
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue