mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
Create epg.telemach.me.config.js
This commit is contained in:
parent
b884b2942c
commit
19c9c61fd4
1 changed files with 101 additions and 0 deletions
101
sites/epg.telemach.me/epg.telemach.me.config.js
Normal file
101
sites/epg.telemach.me/epg.telemach.me.config.js
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
const dayjs = require('dayjs')
|
||||||
|
const axios = require('axios')
|
||||||
|
|
||||||
|
const BASIC_TOKEN =
|
||||||
|
'MjdlMTFmNWUtODhlMi00OGU0LWJkNDItOGUxNWFiYmM2NmY1OjEyejJzMXJ3bXdhZmsxMGNkdzl0cjloOWFjYjZwdjJoZDhscXZ0aGc='
|
||||||
|
|
||||||
|
let session
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
site: 'epg.telemach.me',
|
||||||
|
days: 3,
|
||||||
|
url({ channel, date }) {
|
||||||
|
return `https://api-web.ug-be.cdn.united.cloud/v1/public/events/epg?fromTime=${date.format(
|
||||||
|
'YYYY-MM-DDTHH:mm:ss-00:00'
|
||||||
|
)}&toTime=${date
|
||||||
|
.add(1, 'days')
|
||||||
|
.subtract(1, 's')
|
||||||
|
.format('YYYY-MM-DDTHH:mm:ss-00:00')}&communityId=5&languageId=10001&cid=${channel.site_id}`
|
||||||
|
},
|
||||||
|
request: {
|
||||||
|
async headers() {
|
||||||
|
if (!session) {
|
||||||
|
session = await loadSessionDetails()
|
||||||
|
if (!session || !session.access_token) return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
Authorization: `Bearer ${session.access_token}`,
|
||||||
|
Referer: 'https://epg.telemach.me/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
parser({ content }) {
|
||||||
|
try {
|
||||||
|
const programs = []
|
||||||
|
const data = JSON.parse(content)
|
||||||
|
for (const channelId in data) {
|
||||||
|
if (Array.isArray(data[channelId])) {
|
||||||
|
data[channelId].forEach(item => {
|
||||||
|
programs.push({
|
||||||
|
title: item.title,
|
||||||
|
description: item.shortDescription,
|
||||||
|
image: parseImage(item),
|
||||||
|
season: item.seasonNumber,
|
||||||
|
episode: item.episodeNumber,
|
||||||
|
start: dayjs(item.startTime),
|
||||||
|
stop: dayjs(item.endTime)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return programs
|
||||||
|
} catch {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async channels() {
|
||||||
|
const session = await loadSessionDetails()
|
||||||
|
if (!session || !session.access_token) return null
|
||||||
|
|
||||||
|
const data = await axios
|
||||||
|
.get(
|
||||||
|
'https://api-web.ug-be.cdn.united.cloud/v1/public/channels?channelType=TV&communityId=5&languageId=10001&imageSize=L',
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
Authorization: `Bearer ${session.access_token}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(r => r.data)
|
||||||
|
.catch(console.error)
|
||||||
|
|
||||||
|
return data.map(item => ({
|
||||||
|
lang: 'bs',
|
||||||
|
site_id: item.id,
|
||||||
|
name: item.name
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseImage(item) {
|
||||||
|
const baseURL = 'https://images-web.ug-be.cdn.united.cloud'
|
||||||
|
|
||||||
|
return Array.isArray(item?.images) && item.images[0] ? `${baseURL}${item.images[0].path}` : null
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadSessionDetails() {
|
||||||
|
return axios
|
||||||
|
.post(
|
||||||
|
'https://api-web.ug-be.cdn.united.cloud/oauth/token?grant_type=client_credentials',
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
Authorization: `Basic ${BASIC_TOKEN}`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(r => r.data)
|
||||||
|
.catch(console.log)
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue