Initial Commit
This commit is contained in:
103
sites/transvision.co.id/transvision.co.id.config.js
Normal file
103
sites/transvision.co.id/transvision.co.id.config.js
Normal file
@@ -0,0 +1,103 @@
|
||||
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 parseDuration(item) {
|
||||
const $ = cheerio.load(item)
|
||||
let duration = $('th').text()
|
||||
const match = duration.match(/(\d{2}):(\d{2}):\d{2}/)
|
||||
const hours = parseInt(match[1])
|
||||
const minutes = parseInt(match[2])
|
||||
|
||||
return hours * 60 + minutes
|
||||
}
|
||||
|
||||
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()
|
||||
}
|
||||
Reference in New Issue
Block a user