mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-11 01:20:08 -04:00
93 lines
2.4 KiB
JavaScript
93 lines
2.4 KiB
JavaScript
const axios = require('axios')
|
|
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: 'transvision.co.id',
|
|
days: 2,
|
|
url: 'https://www.transvision.co.id/jadwalacara/epg',
|
|
request: {
|
|
method: 'POST',
|
|
data: function ({ channel, date }) {
|
|
const formData = new URLSearchParams()
|
|
formData.append('ValidateEPG[channel_name]', channel.site_id)
|
|
formData.append('ValidateEPG[tanggal]', date.format('YYYY-MM-DD'))
|
|
formData.append('ValidateEPG[sinopsis]', '')
|
|
formData.append('yt0', 'PROSES')
|
|
|
|
return formData
|
|
},
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
}
|
|
},
|
|
parser({ content, date }) {
|
|
const programs = []
|
|
const items = parseItems(content)
|
|
for (const item of items) {
|
|
const prev = programs[programs.length - 1]
|
|
const start = parseStart(item, date)
|
|
if (prev) prev.stop = start
|
|
const stop = start.add(30, 'm')
|
|
programs.push({
|
|
title: parseTitle(item),
|
|
description: parseDescription(item),
|
|
start,
|
|
stop
|
|
})
|
|
}
|
|
|
|
return programs
|
|
},
|
|
async channels() {
|
|
const data = await axios
|
|
.get('https://www.transvision.co.id/jadwalacara/epg')
|
|
.then(response => response.data)
|
|
.catch(console.log)
|
|
|
|
const $ = cheerio.load(data)
|
|
const items = $('#ValidateEPG_channel_name option').toArray()
|
|
const channels = items.map(item => {
|
|
const $item = cheerio.load(item)
|
|
|
|
return {
|
|
lang: 'id',
|
|
site_id: $item('*').attr('value'),
|
|
name: $item('*').text()
|
|
}
|
|
})
|
|
|
|
return channels
|
|
}
|
|
}
|
|
|
|
function parseDescription(item) {
|
|
return cheerio.load(item)('td:last-child').text()
|
|
}
|
|
|
|
function parseStart(item, date) {
|
|
const $ = cheerio.load(item)
|
|
let time = $('th').text()
|
|
time = `${date.format('DD/MM/YYYY')} ${time}`
|
|
|
|
return dayjs.tz(time, 'DD/MM/YYYY HH:mm', 'Asia/Jakarta')
|
|
}
|
|
|
|
function parseTitle(item) {
|
|
const $ = cheerio.load(item)
|
|
|
|
return $('td:first-of-type').text()
|
|
}
|
|
|
|
function parseItems(content) {
|
|
const $ = cheerio.load(content)
|
|
|
|
return $('table tbody tr').toArray()
|
|
}
|