mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00

The guide now uses GET request and the language returned by api is detected by the referrer. Signed-off-by: Toha <tohenk@yahoo.com>
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
const timezone = require('dayjs/plugin/timezone')
|
|
|
|
dayjs.extend(utc)
|
|
dayjs.extend(timezone)
|
|
|
|
module.exports = {
|
|
site: 'osn.com',
|
|
days: 2,
|
|
url({ channel, date }) {
|
|
return `https://www.osn.com/api/TVScheduleWebService.asmx/GetTVChannelsProgramTimeTable?newDate=${
|
|
encodeURIComponent(date.format('MM/DD/YYYY'))
|
|
}&selectedCountry=AE&channelCode=${channel.site_id}&isMobile=false&hoursForMobile=0`
|
|
},
|
|
request: {
|
|
headers({ channel }) {
|
|
return {
|
|
Referer: `https://www.osn.com/${channel.lang}-ae/watch/tv-schedule`,
|
|
}
|
|
},
|
|
},
|
|
parser({ content, channel }) {
|
|
const programs = []
|
|
const items = parseItems(content)
|
|
items.forEach(item => {
|
|
const start = parseStart(item, channel)
|
|
const duration = parseDuration(item)
|
|
const stop = start.add(duration, 'm')
|
|
programs.push({
|
|
title: parseTitle(item, channel),
|
|
category: parseCategory(item, channel),
|
|
start: start.toString(),
|
|
stop: stop.toString()
|
|
})
|
|
})
|
|
|
|
return programs
|
|
},
|
|
async channels({lang = 'ar'}) {
|
|
const axios = require('axios')
|
|
const result = await axios
|
|
.get('https://www.osn.com/api/tvchannels.ashx?culture=en-US&packageId=3519&country=AE')
|
|
.then(response => response.data)
|
|
.catch(console.error)
|
|
|
|
const channels = result.map(channel => {
|
|
return {
|
|
lang: lang,
|
|
site_id: channel.channelCode,
|
|
name: channel.channeltitle
|
|
}
|
|
})
|
|
|
|
return channels
|
|
}
|
|
}
|
|
|
|
function parseTitle(item, channel) {
|
|
return channel.lang === 'ar' ? item.Arab_Title : item.Title
|
|
}
|
|
|
|
function parseCategory(item, channel) {
|
|
return channel.lang === 'ar' ? item.GenreArabicName : item.GenreEnglishName
|
|
}
|
|
|
|
function parseDuration(item) {
|
|
return parseInt(item.TotalDivWidth / 4.8)
|
|
}
|
|
|
|
function parseStart(item) {
|
|
const time = item.StartDateTime
|
|
|
|
return dayjs.tz(time, 'DD MMM YYYY, HH:mm', 'Asia/Dubai')
|
|
}
|
|
|
|
function parseItems(content) {
|
|
return content ? JSON.parse(content) : []
|
|
}
|