mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
Update tvarenasport.hr guide.
It is now derived from tvarenasport.com. Test: ```sh npm test -- tvarenasport.com > test > run-script-os tvarenasport.com > test:win32 > SET "TZ=Pacific/Nauru" && npx jest --runInBand tvarenasport.com PASS sites/tvarenasport.com/tvarenasport.com.test.js (5.391 s) √ can generate valid url (3 ms) √ can parse response (877 ms) √ can handle empty guide (1 ms) Test Suites: 1 passed, 1 total Tests: 3 passed, 3 total Snapshots: 0 total Time: 5.555 s, estimated 6 s Ran all test suites matching /tvarenasport.com/i. ``` ```sh npm test -- tvarenasport.hr > test > run-script-os tvarenasport.hr > test:win32 > SET "TZ=Pacific/Nauru" && npx jest --runInBand tvarenasport.hr PASS sites/tvarenasport.hr/tvarenasport.hr.test.js (5.578 s) √ can generate valid url (4 ms) √ can parse response (327 ms) √ can handle empty guide (1 ms) Test Suites: 1 passed, 1 total Tests: 3 passed, 3 total Snapshots: 0 total Time: 5.774 s Ran all test suites matching /tvarenasport.hr/i. ``` Grab: ```sh npm run grab -- --site=tvarenasport.hr > grab > npx tsx scripts/commands/epg/grab.ts --site=tvarenasport.hr starting... config: output: guide.xml maxConnections: 1 gzip: false site: tvarenasport.hr loading channels... found 10 channel(s) run #1: [1/20] tvarenasport.hr (hr) - ArenaSport1.hr - Dec 10, 2024 (17 programs) [2/20] tvarenasport.hr (hr) - ArenaSport1.hr - Dec 11, 2024 (17 programs) ... [19/20] tvarenasport.hr (hr) - ArenaSport2.hr - Dec 11, 2024 (12 programs) [20/20] tvarenasport.hr (hr) - ArenaSport2.hr - Dec 10, 2024 (12 programs) saving to "guide.xml"... done in 00h 00m 11s ``` Signed-off-by: Toha <tohenk@yahoo.com>
This commit is contained in:
parent
32c32206a0
commit
37505d391b
6 changed files with 5219 additions and 83 deletions
|
@ -9,10 +9,10 @@ dayjs.extend(utc)
|
|||
dayjs.extend(timezone)
|
||||
dayjs.extend(customParseFormat)
|
||||
|
||||
const tz = 'Europe/Belgrade'
|
||||
|
||||
module.exports = {
|
||||
site: 'tvarenasport.com',
|
||||
tz: 'Europe/Belgrade',
|
||||
lang: 'sr',
|
||||
days: 2,
|
||||
request: {
|
||||
cache: {
|
||||
|
@ -40,7 +40,7 @@ module.exports = {
|
|||
.siblings('.tv-scheme-new-slider-wrapper')
|
||||
.find('.tv-scheme-new-slider-item').toArray()
|
||||
.forEach((el, i) => {
|
||||
programs.push(...parseSchedules($(el), dates[i]))
|
||||
programs.push(...parseSchedules($(el), dates[i], module.exports.tz))
|
||||
})
|
||||
programs.forEach((s, i) => {
|
||||
if (i < programs.length - 2) {
|
||||
|
@ -57,7 +57,7 @@ module.exports = {
|
|||
async channels() {
|
||||
const channels = []
|
||||
const data = await axios
|
||||
.get('https://www.tvarenasport.com/tv-scheme')
|
||||
.get(this.url)
|
||||
.then(r => r.data)
|
||||
.catch(console.error)
|
||||
|
||||
|
@ -84,7 +84,7 @@ module.exports = {
|
|||
const [, id] = $(item).attr('src').match(/chanel-([a-z0-9]+)\.png/) || [null, null]
|
||||
if (id) {
|
||||
channels.push({
|
||||
lang: 'sr',
|
||||
lang: this.lang,
|
||||
site_id: id,
|
||||
name: names(id)
|
||||
})
|
||||
|
@ -96,18 +96,18 @@ module.exports = {
|
|||
}
|
||||
}
|
||||
|
||||
function parseSchedules($s, date) {
|
||||
function parseSchedules($s, date, tz) {
|
||||
const schedules = []
|
||||
const $ = $s._make
|
||||
$s.find('.slider-content').toArray()
|
||||
.forEach(el => {
|
||||
schedules.push(parseSchedule($(el), date))
|
||||
schedules.push(parseSchedule($(el), date, tz))
|
||||
})
|
||||
|
||||
return schedules
|
||||
}
|
||||
|
||||
function parseSchedule($s, date) {
|
||||
function parseSchedule($s, date, tz) {
|
||||
const time = $s.find('.slider-content-top span').text()
|
||||
const start = dayjs.tz(`${date.format('YYYY-MM-DD')} ${time}`, 'YYYY-MM-DD HH:mm', tz)
|
||||
const category = $s.find('.slider-content-middle span').text()
|
||||
|
|
|
@ -14,6 +14,10 @@ const channel = {
|
|||
xmltv_id: 'ArenaSport1Premium.rs'
|
||||
}
|
||||
|
||||
it('can generate valid url', () => {
|
||||
expect(url).toBe('https://www.tvarenasport.com/tv-scheme')
|
||||
})
|
||||
|
||||
it('can parse response', () => {
|
||||
const content = fs.readFileSync(path.join(__dirname, '__data__', 'content.html'))
|
||||
const result = parser({ channel, date, content }).map(p => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue