Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
e7b49898df | |||
99c7d0e2c6 | |||
a46995b833 |
18
README.md
18
README.md
@ -32,7 +32,19 @@ You can do this by creating a mapping in the `/config` folder.
|
|||||||
#### Custom fixes
|
#### Custom fixes
|
||||||
|
|
||||||
Through the `ENABLE_FIXES` variable custom provider fixes can be applied to the container.
|
Through the `ENABLE_FIXES` variable custom provider fixes can be applied to the container.
|
||||||
By default some fixes are available. If you have suggestions or a problem with them please submit an issue.
|
By default some fixes are available. These fixes have been validated before being added to this repo.
|
||||||
|
However this option is disabled by default since you might only want to run the unmodified source.
|
||||||
|
If you have suggestions or a problem with them please submit an issue.
|
||||||
|
|
||||||
|
This the list of the provided custom fixes :
|
||||||
|
|
||||||
|
| Provider | Author | Status |
|
||||||
|
|------------------|---------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| movistarplus.es | [davidclaeysquinones](https://github.com/davidclaeysquinones) | [PR](https://github.com/iptv-org/epg/pull/2440) pending approval |
|
||||||
|
| pickx.be | [davidclaeysquinones](https://github.com/davidclaeysquinones) | [PR](https://github.com/iptv-org/epg/pull/2430) pending approval |
|
||||||
|
| telenet.tv | [davidclaeysquinones](https://github.com/davidclaeysquinones) | [PR](https://github.com/iptv-org/epg/pull/2429) merged since commit [fd382db](https://github.com/iptv-org/epg/commit/fd382db08da7a96150928b8dcfef115e29e661d3) |
|
||||||
|
| web.magentatv.de | [klausellus-wallace](https://github.com/klausellus-wallace) | [PR](https://github.com/iptv-org/epg/pull/2458) pending approval |
|
||||||
|
|
||||||
If for some reason you want to include your own provider fixes this is possible by creation a mapping in the `/fixes` folder.<br>
|
If for some reason you want to include your own provider fixes this is possible by creation a mapping in the `/fixes` folder.<br>
|
||||||
The expected structure is */fixes/`provider_name`/`provider_name`.config.js*.<br>
|
The expected structure is */fixes/`provider_name`/`provider_name`.config.js*.<br>
|
||||||
It is recommended that you take existing provider code as a base for your customisations.
|
It is recommended that you take existing provider code as a base for your customisations.
|
||||||
@ -103,4 +115,6 @@ Sometimes a new version of this image will be bound to the same source commit. T
|
|||||||
- 1.0.12
|
- 1.0.12
|
||||||
[10-14-2024](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)<br>Fix Pickx.be url
|
[10-14-2024](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)<br>Fix Pickx.be url
|
||||||
- 1.0.13
|
- 1.0.13
|
||||||
[10-14-2024](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)<br>Add custom fix for web.magentatv.de
|
[10-14-2024](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)<br>Add custom fix for web.magentatv.de
|
||||||
|
- 1.0.14
|
||||||
|
[10-14-2024](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)<br>Change fix for movistarplus.es in order t owork with new API
|
@ -1,76 +1,73 @@
|
|||||||
// credit for this fix goes to davidclaeysquinones for his PR on https://github.com/iptv-org/epg/pull/2440
|
|
||||||
|
|
||||||
const { DateTime } = require('luxon')
|
const { DateTime } = require('luxon')
|
||||||
|
|
||||||
const API_PROD_ENDPOINT = 'https://www.movistarplus.es/programacion-tv'
|
const API_PROGRAM_ENDPOINT = 'https://comunicacion.movistarplus.es'
|
||||||
const API_IMAGE_ENDPOINT = 'https://www.movistarplus.es/recorte/n/caratulaH/';
|
const API_IMAGE_ENDPOINT = 'https://www.movistarplus.es/recorte/n/caratulaH/';
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
site: 'movistarplus.es',
|
site: 'movistarplus.es',
|
||||||
days: 2,
|
days: 2,
|
||||||
url: function ({ date }) {
|
url: function ({ channel, date }) {
|
||||||
return `${API_PROD_ENDPOINT}/${date.format('YYYY-MM-DD')}?v=json`
|
return `${API_PROGRAM_ENDPOINT}/wp-admin/admin-ajax.php`
|
||||||
|
},
|
||||||
|
request: {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
Origin: API_PROGRAM_ENDPOINT,
|
||||||
|
Referer: `${API_PROGRAM_ENDPOINT}/programacion/`,
|
||||||
|
"Content-Type" : 'application/x-www-form-urlencoded; charset=UTF-8',
|
||||||
|
},
|
||||||
|
data: function ({ channel, date }) {
|
||||||
|
return {
|
||||||
|
action: 'getProgramation',
|
||||||
|
day: date.format('YYYY-MM-DD'),
|
||||||
|
"channels[]": channel.site_id,
|
||||||
|
};
|
||||||
|
},
|
||||||
},
|
},
|
||||||
parser({ content, channel, date }) {
|
parser({ content, channel, date }) {
|
||||||
let programs = []
|
let programs = []
|
||||||
let items = parseItems(content, channel)
|
let items = parseItems(content, channel);
|
||||||
if (!items.length) return programs
|
if (!items.length) return programs;
|
||||||
let guideDate = date
|
|
||||||
|
|
||||||
items.forEach(item => {
|
items.forEach(item => {
|
||||||
let startTime = DateTime.fromFormat(
|
let startTime = DateTime.fromFormat(
|
||||||
`${guideDate.format('YYYY-MM-DD')} ${item.HORA_INICIO}`,
|
`${item.f_evento_rejilla}`,
|
||||||
'yyyy-MM-dd HH:mm',
|
'yyyy-MM-dd HH:mm:ss',
|
||||||
{
|
{ zone: 'Europe/Madrid' }
|
||||||
zone: 'Europe/Madrid'
|
).toUTC();
|
||||||
}
|
|
||||||
).toUTC()
|
|
||||||
let stopTime = DateTime.fromFormat(
|
let stopTime = DateTime.fromFormat(
|
||||||
`${guideDate.format('YYYY-MM-DD')} ${item.HORA_FIN}`,
|
`${item.f_fin_evento_rejilla}`,
|
||||||
'yyyy-MM-dd HH:mm',
|
'yyyy-MM-dd HH:mm:ss',
|
||||||
{
|
{ zone: 'Europe/Madrid' }
|
||||||
zone: 'Europe/Madrid'
|
|
||||||
}
|
|
||||||
).toUTC()
|
).toUTC()
|
||||||
|
|
||||||
|
// Adjust stop time if it's on the next day
|
||||||
if (stopTime < startTime) {
|
if (stopTime < startTime) {
|
||||||
guideDate = guideDate.add(1, 'd')
|
stopTime = stopTime.plus({ days: 1 });
|
||||||
stopTime = stopTime.plus({ days: 1 })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
programs.push({
|
programs.push({
|
||||||
title: item.TITULO,
|
title: item.des_evento_rejilla,
|
||||||
icon: parseIcon(item, channel),
|
icon: parseIcon(item, channel),
|
||||||
category: item.GENERO,
|
category: item.des_genero,
|
||||||
start: startTime,
|
start: startTime,
|
||||||
stop: stopTime
|
stop: stopTime,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
return programs
|
return programs
|
||||||
},
|
},
|
||||||
async channels() {
|
|
||||||
const axios = require('axios')
|
|
||||||
const dayjs = require('dayjs')
|
|
||||||
const data = await axios
|
|
||||||
.get(`${API_PROD_ENDPOINT}/${dayjs().format('YYYY-MM-DD')}?v=json`)
|
|
||||||
.then(r => r.data)
|
|
||||||
.catch(console.log)
|
|
||||||
|
|
||||||
return Object.values(data.data).map(item => {
|
|
||||||
return {
|
|
||||||
lang: 'es',
|
|
||||||
site_id: item.DATOS_CADENA.CODIGO,
|
|
||||||
name: item.DATOS_CADENA.NOMBRE
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseIcon(item, channel) {
|
function parseIcon(item, channel) {
|
||||||
return `${API_IMAGE_ENDPOINT}/M${channel.site_id}P${item.ELEMENTO}`;
|
return `${API_IMAGE_ENDPOINT}/M${channel.site_id}P${item.cod_evento_rejilla}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseItems(content, channel) {
|
function parseItems(content, channel) {
|
||||||
const json = typeof content === 'string' ? JSON.parse(content) : content
|
const json = typeof content === 'string' ? JSON.parse(content) : content;
|
||||||
if (!(`${channel.site_id}-CODE` in json.data)) return []
|
const data = json.channelsProgram;
|
||||||
const data = json.data[`${channel.site_id}-CODE`]
|
|
||||||
return data ? data.PROGRAMAS : []
|
if (data.length !== 1) return [];
|
||||||
|
return data[0];
|
||||||
}
|
}
|
Reference in New Issue
Block a user