mirror of
https://github.com/iptv-org/epg
synced 2026-04-30 14:36:58 -04:00
CRLF ?
This commit is contained in:
@@ -1,99 +1,99 @@
|
||||
const cheerio = require('cheerio')
|
||||
const axios = require('axios')
|
||||
const dayjs = require('dayjs')
|
||||
const utc = require('dayjs/plugin/utc')
|
||||
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||
const debug = require('debug')('site:tvplus.com.tr')
|
||||
|
||||
dayjs.extend(utc)
|
||||
dayjs.extend(customParseFormat)
|
||||
|
||||
const channelsUrl = 'https://tvplus.com.tr/canli-tv/yayin-akisi'
|
||||
|
||||
module.exports = {
|
||||
site: 'tvplus.com.tr',
|
||||
days: 2,
|
||||
request: {
|
||||
cache: {
|
||||
ttl: 24 * 60 * 60 * 1000 // 1 day
|
||||
}
|
||||
},
|
||||
async url({ channel }) {
|
||||
if (module.exports.buildId === undefined) {
|
||||
module.exports.buildId = await module.exports.fetchBuildId()
|
||||
debug('Got build id', module.exports.buildId)
|
||||
}
|
||||
const channelId = channel.site_id.replace('/', '--')
|
||||
return `https://tvplus.com.tr/_next/data/${module.exports.buildId}/${channel.lang}/canli-tv/yayin-akisi/${channelId}.json?title=${channelId}`
|
||||
},
|
||||
parser({ content, date }) {
|
||||
const programs = []
|
||||
if (content) {
|
||||
const data = JSON.parse(content)
|
||||
if (Array.isArray(data?.pageProps?.allPlaybillList)) {
|
||||
data.pageProps.allPlaybillList
|
||||
.filter(i => i.length && i[0].starttime.startsWith(date.format('YYYY-MM-DD')))
|
||||
.forEach(i => {
|
||||
for (const schedule of i) {
|
||||
const [, season, episode] = schedule.seasonInfo?.match(
|
||||
/(\d+)\. Sezon - (\d+)\. Bölüm/
|
||||
) || [null, null, null]
|
||||
programs.push({
|
||||
title: schedule.name,
|
||||
description: schedule.introduce,
|
||||
category: schedule.genres,
|
||||
image: schedule.picture,
|
||||
season: season ? parseInt(season) : null,
|
||||
episode: episode ? parseInt(episode) : null,
|
||||
start: dayjs.utc(schedule.starttime),
|
||||
stop: dayjs.utc(schedule.endtime)
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels() {
|
||||
const channels = []
|
||||
const data = await axios
|
||||
.get(channelsUrl)
|
||||
.then(r => r.data)
|
||||
.catch(console.error)
|
||||
|
||||
const $ = cheerio.load(data)
|
||||
$('.channel-list-item a')
|
||||
.toArray()
|
||||
.forEach(el => {
|
||||
const a = $(el)
|
||||
channels.push({
|
||||
lang: 'tr',
|
||||
name: a
|
||||
.attr('title')
|
||||
.replace(/Yayın Akışı/, '')
|
||||
.trim(),
|
||||
site_id: a
|
||||
.attr('href')
|
||||
.replace(/\/canli-tv\/yayin-akisi\//, '')
|
||||
.replace('--', '/') // change -- to / as it used in xml comment
|
||||
})
|
||||
})
|
||||
|
||||
return channels
|
||||
},
|
||||
async fetchBuildId() {
|
||||
const data = await axios
|
||||
.get(channelsUrl)
|
||||
.then(r => r.data)
|
||||
.catch(console.error)
|
||||
|
||||
if (data) {
|
||||
const $ = cheerio.load(data)
|
||||
const nextData = JSON.parse($('#__NEXT_DATA__').text())
|
||||
return nextData?.buildId || null
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
}
|
||||
const cheerio = require('cheerio')
|
||||
const axios = require('axios')
|
||||
const dayjs = require('dayjs')
|
||||
const utc = require('dayjs/plugin/utc')
|
||||
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||
const debug = require('debug')('site:tvplus.com.tr')
|
||||
|
||||
dayjs.extend(utc)
|
||||
dayjs.extend(customParseFormat)
|
||||
|
||||
const channelsUrl = 'https://tvplus.com.tr/canli-tv/yayin-akisi'
|
||||
|
||||
module.exports = {
|
||||
site: 'tvplus.com.tr',
|
||||
days: 2,
|
||||
request: {
|
||||
cache: {
|
||||
ttl: 24 * 60 * 60 * 1000 // 1 day
|
||||
}
|
||||
},
|
||||
async url({ channel }) {
|
||||
if (module.exports.buildId === undefined) {
|
||||
module.exports.buildId = await module.exports.fetchBuildId()
|
||||
debug('Got build id', module.exports.buildId)
|
||||
}
|
||||
const channelId = channel.site_id.replace('/', '--')
|
||||
return `https://tvplus.com.tr/_next/data/${module.exports.buildId}/${channel.lang}/canli-tv/yayin-akisi/${channelId}.json?title=${channelId}`
|
||||
},
|
||||
parser({ content, date }) {
|
||||
const programs = []
|
||||
if (content) {
|
||||
const data = JSON.parse(content)
|
||||
if (Array.isArray(data?.pageProps?.allPlaybillList)) {
|
||||
data.pageProps.allPlaybillList
|
||||
.filter(i => i.length && i[0].starttime.startsWith(date.format('YYYY-MM-DD')))
|
||||
.forEach(i => {
|
||||
for (const schedule of i) {
|
||||
const [, season, episode] = schedule.seasonInfo?.match(
|
||||
/(\d+)\. Sezon - (\d+)\. Bölüm/
|
||||
) || [null, null, null]
|
||||
programs.push({
|
||||
title: schedule.name,
|
||||
description: schedule.introduce,
|
||||
category: schedule.genres,
|
||||
image: schedule.picture,
|
||||
season: season ? parseInt(season) : null,
|
||||
episode: episode ? parseInt(episode) : null,
|
||||
start: dayjs.utc(schedule.starttime),
|
||||
stop: dayjs.utc(schedule.endtime)
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels() {
|
||||
const channels = []
|
||||
const data = await axios
|
||||
.get(channelsUrl)
|
||||
.then(r => r.data)
|
||||
.catch(console.error)
|
||||
|
||||
const $ = cheerio.load(data)
|
||||
$('.channel-list-item a')
|
||||
.toArray()
|
||||
.forEach(el => {
|
||||
const a = $(el)
|
||||
channels.push({
|
||||
lang: 'tr',
|
||||
name: a
|
||||
.attr('title')
|
||||
.replace(/Yayın Akışı/, '')
|
||||
.trim(),
|
||||
site_id: a
|
||||
.attr('href')
|
||||
.replace(/\/canli-tv\/yayin-akisi\//, '')
|
||||
.replace('--', '/') // change -- to / as it used in xml comment
|
||||
})
|
||||
})
|
||||
|
||||
return channels
|
||||
},
|
||||
async fetchBuildId() {
|
||||
const data = await axios
|
||||
.get(channelsUrl)
|
||||
.then(r => r.data)
|
||||
.catch(console.error)
|
||||
|
||||
if (data) {
|
||||
const $ = cheerio.load(data)
|
||||
const nextData = JSON.parse($('#__NEXT_DATA__').text())
|
||||
return nextData?.buildId || null
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user