Compare commits
28 Commits
Author | SHA1 | Date | |
---|---|---|---|
8e448d6c57 | |||
31eb8abddf | |||
6acb07ed4e | |||
02133f0692 | |||
6543f2ce6c | |||
e7b49898df | |||
99c7d0e2c6 | |||
a46995b833 | |||
1a73bc2b25 | |||
f15b5c36da | |||
ac6aed6aa4 | |||
c0905a30f0 | |||
8555fae94a | |||
a4575ccf18 | |||
abc9f19ac3 | |||
5e40ec15af | |||
aa9ddceb06 | |||
8f58693ef5 | |||
fd12d6508f | |||
b078fd94ae | |||
30fdcd055d | |||
14526d29e2 | |||
7dd9fab7e6 | |||
65c94b6585 | |||
c95f6abf4f | |||
26db08b189 | |||
57501829c1 | |||
a7e52a2952 |
@ -11,7 +11,7 @@ jobs:
|
|||||||
working-directory: ${{ GITHUB_WORKSPACE }}
|
working-directory: ${{ GITHUB_WORKSPACE }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Install Docker
|
- name: Install Docker
|
||||||
run: |
|
run: |
|
||||||
echo "Checking docker installation"
|
echo "Checking docker installation"
|
||||||
@ -23,17 +23,24 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: https://github.com/docker/setup-buildx-action@v3
|
uses: https://github.com/docker/setup-buildx-action@v3
|
||||||
- name: Docker login
|
- name: Login to Gitea container registry
|
||||||
uses: https://github.com/docker/login-action@v3
|
uses: https://github.com/docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: git.claeyscloud.com
|
registry: git.claeyscloud.com
|
||||||
username: nologin
|
username: nologin
|
||||||
password: ${{ secrets.PACKAGE_TOKEN }}
|
password: ${{ secrets.PACKAGE_TOKEN }}
|
||||||
|
- name: Login to DockerHub container registry
|
||||||
|
uses: https://github.com/docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_HUB_USERNAME}}
|
||||||
|
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||||
- name: Extract metadata (tags, labels) for Docker
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
images: git.claeyscloud.com/david/epg-info
|
images: |
|
||||||
|
davidquinonescl/epg-info
|
||||||
|
git.claeyscloud.com/david/epg-info
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{raw}}
|
type=semver,pattern={{raw}}
|
||||||
type=sha
|
type=sha
|
||||||
|
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
github: davidclaeysquinones
|
17
Dockerfile
17
Dockerfile
@ -2,6 +2,7 @@ FROM node:21-alpine
|
|||||||
ARG GIT_REPO=https://github.com/iptv-org/epg.git
|
ARG GIT_REPO=https://github.com/iptv-org/epg.git
|
||||||
ARG GIT_BRANCH=master
|
ARG GIT_BRANCH=master
|
||||||
ENV CRON_SCHEDULE="0 0,12 * * *"
|
ENV CRON_SCHEDULE="0 0,12 * * *"
|
||||||
|
ENV API_URL="https://iptv-org.github.io/api"
|
||||||
ENV DAYS=14
|
ENV DAYS=14
|
||||||
ENV MAX_CONNECTIONS=10
|
ENV MAX_CONNECTIONS=10
|
||||||
ENV ENABLE_FIXES=false
|
ENV ENABLE_FIXES=false
|
||||||
@ -16,15 +17,12 @@ COPY channels.xml /config/channels.xml
|
|||||||
ADD $FIXES_FOLDER /fixes
|
ADD $FIXES_FOLDER /fixes
|
||||||
RUN apk update \
|
RUN apk update \
|
||||||
&& apk upgrade --available \
|
&& apk upgrade --available \
|
||||||
&& apk add curl \
|
&& apk add curl git tzdata bash \
|
||||||
&& apk add git \
|
|
||||||
&& apk add tzdata \
|
|
||||||
&& apk add bash \
|
|
||||||
&& npm install -g npm@latest \
|
&& npm install -g npm@latest \
|
||||||
&& npm install pm2 -g \
|
&& npm install pm2 -g \
|
||||||
&& mkdir $(echo "${BIN_FOLDER}/${EPG_FOLDER}") -p \
|
&& mkdir $(echo "${BIN_FOLDER}/${EPG_FOLDER}") -p \
|
||||||
&& git -C $(echo "${BIN_FOLDER}") clone --depth 1 -b $(echo "${GIT_BRANCH} ${GIT_REPO}") \
|
&& git -C $(echo "${BIN_FOLDER}") clone --depth 1 -b $(echo "${GIT_BRANCH} ${GIT_REPO}") \
|
||||||
&& cd $WORKDIR cat && npm install && npm update \
|
&& cd $WORKDIR && npm install && npm update \
|
||||||
&& rm .eslintrc.json \
|
&& rm .eslintrc.json \
|
||||||
&& rm -rf .github \
|
&& rm -rf .github \
|
||||||
&& rm -rf .git \
|
&& rm -rf .git \
|
||||||
@ -37,6 +35,13 @@ RUN apk update \
|
|||||||
&& rm sites/**/readme.md \
|
&& rm sites/**/readme.md \
|
||||||
&& rm -rf sites/**/__data__ \
|
&& rm -rf sites/**/__data__ \
|
||||||
&& rm sites/**/**.test.js \
|
&& rm sites/**/**.test.js \
|
||||||
|
&& rm -rf node_modules/**/.package-lock.json \
|
||||||
|
&& rm -rf node_modules/**/.tsconfig.json \
|
||||||
|
&& rm -rf node_modules/**/.tsconfig.tsbuildinfo.json \
|
||||||
|
&& rm -rf node_modules/**/.github \
|
||||||
|
&& rm -rf node_modules/**/docs \
|
||||||
|
&& rm -rf node_modules/**/LICENSE \
|
||||||
|
&& rm -rf node_modules/**/**.md \
|
||||||
&& ln -s /config/channels.xml $(echo "${WORKDIR}/channels.xml") \
|
&& ln -s /config/channels.xml $(echo "${WORKDIR}/channels.xml") \
|
||||||
&& mkdir /public
|
&& mkdir /public
|
||||||
COPY start.sh $WORKDIR
|
COPY start.sh $WORKDIR
|
||||||
@ -45,5 +50,5 @@ RUN chmod +x "$START_SCRIPT" \
|
|||||||
&& apk del git curl \
|
&& apk del git curl \
|
||||||
&& rm -rf /var/cache/apk/*
|
&& rm -rf /var/cache/apk/*
|
||||||
SHELL ["/bin/bash", "-c"]
|
SHELL ["/bin/bash", "-c"]
|
||||||
ENTRYPOINT bash $START_SCRIPT chron-schedule="$CRON_SCHEDULE" work-dir="$WORKDIR" days="$DAYS" max_connections="$MAX_CONNECTIONS" enable_fixes="$ENABLE_FIXES"
|
ENTRYPOINT bash $START_SCRIPT chron-schedule="$CRON_SCHEDULE" work-dir="$WORKDIR" days="$DAYS" max_connections="$MAX_CONNECTIONS" enable_fixes="$ENABLE_FIXES" api_url="$API_URL"
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
9
LICENSE
Normal file
9
LICENSE
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 David Claeys
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
76
README.md
76
README.md
@ -32,19 +32,32 @@ 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(s) | 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) and [BellezaEmporium](https://github.com/BellezaEmporium) | [PR](https://github.com/iptv-org/epg/pull/2480) 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.
|
||||||
|
|
||||||
### Environment Variables
|
### Environment Variables
|
||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|-------------------------------|----------------------------------------------------------------------------|------------------|
|
|-------------------------------|----------------------------------------------------------------------------|----------------------------------|
|
||||||
| CRON_SCHEDULE | CRON expression describing the recurrence for epg retrieval. | `0 0,12 * * *` |
|
| CRON_SCHEDULE | CRON expression describing the recurrence for epg retrieval. | `0 0,12 * * *` |
|
||||||
| DAYS | Describes the desired amount of days in the future for for epg retrieval. | 14 |
|
| DAYS | Describes the desired amount of days in the future for for epg retrieval. | 14 |
|
||||||
| MAX_CONNECTIONS | The maximum amount of parallel connections that can be established | 10 |
|
| MAX_CONNECTIONS | The maximum amount of parallel connections that can be established | 10 |
|
||||||
| ENABLE_FIXES | Some fixes to providers take a long time to be merged into the main branch.<br>When this option is enabled some of these fixes will also be included.<br>The source code for these fixes can be seen under the `fixes` folder.<br> Recreate the container when changing this variable in order for it to take effect | false |
|
| ENABLE_FIXES | Some fixes to providers take a long time to be merged into the main branch.<br>When this option is enabled some of these fixes will also be included.<br>The source code for these fixes can be seen under the `fixes` folder.<br> Recreate the container when changing this variable in order for it to take effect | false |
|
||||||
|
| API_URL | The endpoint where channel information will be grabbed | `https://iptv-org.github.io/api` |
|
||||||
|
|
||||||
### Compose file
|
### Compose file
|
||||||
|
|
||||||
@ -53,7 +66,8 @@ version: '3.3'
|
|||||||
services:
|
services:
|
||||||
epg:
|
epg:
|
||||||
image: git.claeyscloud.com/david/epg-info:latest
|
image: git.claeyscloud.com/david/epg-info:latest
|
||||||
#image: image: git.claeyscloud.com/david/epg-info:latest:latest
|
#image: ghcr.io/davidclaeysquinones/epg-info:latest
|
||||||
|
#image: davidquinonescl/epg-info:latest
|
||||||
volumes:
|
volumes:
|
||||||
# add a mapping in order to add the channels file
|
# add a mapping in order to add the channels file
|
||||||
- /docker/epg:/config
|
- /docker/epg:/config
|
||||||
@ -62,22 +76,54 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
# specify the time zone for the server
|
# specify the time zone for the server
|
||||||
- TZ=Etc/UTC
|
- TZ=Etc/UTC
|
||||||
|
# uncomment the underlying line if you want to enable custom fixes
|
||||||
|
#- ENABLE_FIXES=true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
```
|
```
|
||||||
|
|
||||||
### Versions
|
### Versions
|
||||||
|
|
||||||
- 1.0.0
|
This image is bound to the content of the [iptv-org/epg](https://github.com/iptv-org/epg) repository. In the underlying list you can see to which commit each version of the docker image is bound.
|
||||||
|
|
||||||
|
Normally when a change is made in the source repository the documentation is updated and a new tag is created in this repository. This is completely normal since the source repository is only cloned during the build process of the docker image.
|
||||||
|
|
||||||
|
Sometimes a new version of this image will be bound to the same source commit. This will happen when improvements are made to the image.
|
||||||
|
|
||||||
|
- 1.0.0
|
||||||
[08-01-2024](https://github.com/iptv-org/epg/commit/793c74ca397504fc2afc8fbfa998e0b8e4ca45d9)
|
[08-01-2024](https://github.com/iptv-org/epg/commit/793c74ca397504fc2afc8fbfa998e0b8e4ca45d9)
|
||||||
- 1.0.1
|
- 1.0.1
|
||||||
[08-14-2024](https://github.com/iptv-org/epg/commit/270e85cfae6f0f691c2e6ab7ce511d60fd687565)
|
[08-14-2024](https://github.com/iptv-org/epg/commit/270e85cfae6f0f691c2e6ab7ce511d60fd687565)
|
||||||
- 1.0.2
|
- 1.0.2
|
||||||
[09-07-2024](https://github.com/iptv-org/epg/commit/4e3b06a86e225cdd1b9362a683e6770fb68ff28f)
|
[09-07-2024](https://github.com/iptv-org/epg/commit/4e3b06a86e225cdd1b9362a683e6770fb68ff28f)
|
||||||
- 1.0.3
|
- 1.0.3
|
||||||
[09-14-2024](https://github.com/iptv-org/epg/commit/c69f3c93b1123ddf0fecc62c7067fced59ae4e99)
|
[09-14-2024](https://github.com/iptv-org/epg/commit/c69f3c93b1123ddf0fecc62c7067fced59ae4e99)
|
||||||
- 1.0.4
|
- 1.0.4
|
||||||
[09-30-2024](https://github.com/iptv-org/epg/commit/d90c7a54b941238cb92391b33d80a75e746d3002)
|
[09-30-2024](https://github.com/iptv-org/epg/commit/d90c7a54b941238cb92391b33d80a75e746d3002)
|
||||||
- 1.0.5
|
- 1.0.5
|
||||||
[10-02-2024](https://github.com/iptv-org/epg/commit/713dbf60a1cb9623ffcab6ab370ee9a78b32102b)
|
[10-02-2024](https://github.com/iptv-org/epg/commit/713dbf60a1cb9623ffcab6ab370ee9a78b32102b)
|
||||||
- 1.0.6
|
- 1.0.6
|
||||||
[10-02-2024](https://github.com/iptv-org/epg/commit/713dbf60a1cb9623ffcab6ab370ee9a78b32102b)<br>Adds possibility to enable custom fixes
|
[10-02-2024](https://github.com/iptv-org/epg/commit/713dbf60a1cb9623ffcab6ab370ee9a78b32102b)<br>Adds possibility to enable custom fixes
|
||||||
|
- 1.0.7
|
||||||
|
[10-02-2024](https://github.com/iptv-org/epg/commit/713dbf60a1cb9623ffcab6ab370ee9a78b32102b)<br>Adds improvement to the docker image size
|
||||||
|
- 1.0.8
|
||||||
|
[10-10-2024](https://github.com/iptv-org/epg/commit/2241bc261fd37b8b16e036a0b61167030a5ce2e6)
|
||||||
|
- 1.0.9
|
||||||
|
[10-12-2024](https://github.com/iptv-org/epg/commit/fd382db08da7a96150928b8dcfef115e29e661d3)
|
||||||
|
- 1.0.10
|
||||||
|
[10-14-2024 12:50](https://github.com/iptv-org/epg/commit/a3e7661f95103cbee4bcb78bd483396680e9abfc)
|
||||||
|
- 1.0.11
|
||||||
|
[10-14-2024 17:34](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)
|
||||||
|
- 1.0.12
|
||||||
|
[10-14-2024](https://github.com/iptv-org/epg/commit/7610f7b9f5cc1ccab8d17f3408a95d31b36ace7c)<br>Fix Pickx.be url
|
||||||
|
- 1.0.13
|
||||||
|
[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 to work with new API
|
||||||
|
- 1.0.15
|
||||||
|
[11-26-2024](https://github.com/iptv-org/epg/commit/d15911006e163262c0c7f267deae28160c0d7a8f)<br>Add option to customize channel endpoint
|
||||||
|
- 1.0.16
|
||||||
|
[11-26-2024](https://github.com/iptv-org/epg/commit/d15911006e163262c0c7f267deae28160c0d7a8f)<br>Fix icons for movistarplus.es
|
||||||
|
- 1.0.17
|
||||||
|
[11-26-2024](https://github.com/iptv-org/epg/commit/d15911006e163262c0c7f267deae28160c0d7a8f)<br>Update fix for pickx.be
|
||||||
|
- 1.0.18
|
||||||
|
[11-27-2024](https://github.com/iptv-org/epg/commit/78dad4cfb4fc16f078c3b44b5534779c7c645b6b)
|
@ -1,74 +1,78 @@
|
|||||||
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/externov';
|
||||||
|
|
||||||
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}`;
|
if(item.cod_elemento_emision)
|
||||||
|
{
|
||||||
|
return `${API_IMAGE_ENDPOINT}/M${channel.site_id}P${item.cod_elemento_emision}`
|
||||||
|
}
|
||||||
|
|
||||||
|
return ''
|
||||||
}
|
}
|
||||||
|
|
||||||
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];
|
||||||
}
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
// credit for this fix goes to davidclaeysquinones for his PR on https://github.com/iptv-org/epg/pull/2430 and to BellezaEmporium for his PR on https://github.com/iptv-org/epg/pull/2480
|
||||||
|
|
||||||
const axios = require('axios')
|
const axios = require('axios')
|
||||||
const dayjs = require('dayjs')
|
const dayjs = require('dayjs')
|
||||||
const utc = require('dayjs/plugin/utc')
|
const utc = require('dayjs/plugin/utc')
|
||||||
@ -139,39 +141,56 @@ module.exports = {
|
|||||||
function fetchApiVersion() {
|
function fetchApiVersion() {
|
||||||
return new Promise(async (resolve, reject) => {
|
return new Promise(async (resolve, reject) => {
|
||||||
try {
|
try {
|
||||||
// https://px-epg.azureedge.net/version is deprecated
|
// load pickx bundle and get react version hash (regex).
|
||||||
// probably the version url will be changed around over time
|
// it's not the best way to get the version but it's the only way to get it.
|
||||||
|
|
||||||
//history of used version urls
|
// find bundle version
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-3b36540f3cef64510112f3f95c2c0cdca321997ed2b1042ad778523235e155eb'
|
const minBundleVer = "https://www.pickx.be/minimal-bundle-version"
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-671f172425e1bc74cd0440fd67aaa6cbe68b582f3f401186c2f46ae97e80516b'
|
const bundleVerData = await axios.get(minBundleVer, {
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-a6b4b4fefaa20e438523a6167e63b8504d96b9df8303473349763c4418cffe30'
|
headers: {
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-8546c5fd136241d42aab714d2fe3ccc5671fd899035efae07cd0b8f4eb23994e'
|
Origin: 'https://www.pickx.be',
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-64464ad9a3bc117af5dca620027216ecade6a51c230135a0f134c0ee042ff407';
|
Referer: 'https://www.pickx.be/'
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-626d8fdabfb1d44e5a614cd69f4b45d6843fdb63566fc80ea4f97f40e4ea3152';
|
}
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-cefaf96e249e53648c4895c279e7a621233c50b4357d62b0bdf6bff45f31b5c0';
|
|
||||||
//const versionUrl = 'https://www.pickx.be/api/s-7fa35253080e9665f9c7d9d85e707d6fb1d1bf07ede11965e859fcb57c723949';
|
|
||||||
//the new strategy to break the provider is to leave old version url's available and to return invalid results on those endpoints
|
|
||||||
|
|
||||||
const versionUrl = 'https://www.pickx.be/api/s-0e58be3938175b6b900dfb5233bd5cfc0bcf915b633fe57b935f7ce8dbe5f6eb';
|
|
||||||
|
|
||||||
|
|
||||||
const response = await axios.get(versionUrl, {
|
|
||||||
headers: {
|
|
||||||
Origin: 'https://www.pickx.be',
|
|
||||||
Referer: 'https://www.pickx.be/'
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
if (response.status === 200) {
|
if (bundleVerData.status !== 200) {
|
||||||
apiVersion = response.data.version
|
console.error(`Failed to fetch bundle version. Status: ${bundleVerData.status}`)
|
||||||
resolve()
|
reject(`Failed to fetch bundle version. Status: ${bundleVerData.status}`)
|
||||||
} else {
|
} else {
|
||||||
console.error(`Failed to fetch API version. Status: ${response.status}`)
|
const bundleVer = bundleVerData.data.version
|
||||||
reject(`Failed to fetch API version. Status: ${response.status}`)
|
// get the minified JS app bundle
|
||||||
|
const bundleUrl = `https://components.pickx.be/pxReactPlayer/${bundleVer}/bundle.min.js`
|
||||||
|
|
||||||
|
// now, find the react hash inside the bundle URL
|
||||||
|
const bundle = await axios.get(bundleUrl).then(r => {
|
||||||
|
const re = /REACT_APP_VERSION_HASH:"([^"]+)"/
|
||||||
|
const match = r.data.match(re)
|
||||||
|
if (match && match[1]) {
|
||||||
|
return match[1]
|
||||||
|
} else {
|
||||||
|
throw new Error('React app version hash not found')
|
||||||
|
}
|
||||||
|
}).catch(console.error)
|
||||||
|
|
||||||
|
const versionUrl = `https://www.pickx.be/api/s-${bundle.replace('/REACT_APP_VERSION_HASH:"', '')}`
|
||||||
|
|
||||||
|
const response = await axios.get(versionUrl, {
|
||||||
|
headers: {
|
||||||
|
Origin: 'https://www.pickx.be',
|
||||||
|
Referer: 'https://www.pickx.be/'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
if (response.status === 200) {
|
||||||
|
apiVersion = response.data.version
|
||||||
|
resolve()
|
||||||
|
} else {
|
||||||
|
console.error(`Failed to fetch API version. Status: ${response.status}`)
|
||||||
|
reject(`Failed to fetch API version. Status: ${response.status}`)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error fetching API version:', error.message)
|
console.error('Error during fetchApiVersion:', error)
|
||||||
reject(error)
|
reject(error)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// credit for this fix goes to davidclaeysquinones for his PR on https://github.com/iptv-org/epg/pull/2429
|
||||||
|
|
||||||
const axios = require('axios')
|
const axios = require('axios')
|
||||||
const dayjs = require('dayjs')
|
const dayjs = require('dayjs')
|
||||||
|
|
||||||
|
232
fixes/web.magentatv.de/web.magentatv.de.config.js
Normal file
232
fixes/web.magentatv.de/web.magentatv.de.config.js
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
// credit for this fix goes to klausellus-wallace for his PR on https://github.com/iptv-org/epg/pull/2458
|
||||||
|
|
||||||
|
const axios = require('axios')
|
||||||
|
const dayjs = require('dayjs')
|
||||||
|
const utc = require('dayjs/plugin/utc')
|
||||||
|
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||||
|
const fetch = require('node-fetch')
|
||||||
|
const { upperCase } = require('lodash')
|
||||||
|
|
||||||
|
let X_CSRFTOKEN
|
||||||
|
let COOKIE
|
||||||
|
const cookiesToExtract = ['JSESSIONID', 'CSESSIONID', 'CSRFSESSION']
|
||||||
|
const extractedCookies = {}
|
||||||
|
|
||||||
|
dayjs.extend(utc)
|
||||||
|
dayjs.extend(customParseFormat)
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
site: 'web.magentatv.de',
|
||||||
|
days: 2,
|
||||||
|
url: 'https://api.prod.sngtv.magentatv.de/EPG/JSON/PlayBillList',
|
||||||
|
request: {
|
||||||
|
method: 'POST',
|
||||||
|
headers: function () {
|
||||||
|
return setHeaders()
|
||||||
|
},
|
||||||
|
|
||||||
|
data({ channel, date }) {
|
||||||
|
return {
|
||||||
|
count: -1,
|
||||||
|
isFillProgram: 1,
|
||||||
|
offset: 0,
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
include: 'endtime,genres,id,name,starttime,channelid,pictures,introduce,subName,seasonNum,subNum,cast,country,producedate,externalIds',
|
||||||
|
name: 'playbill'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
type: 2,
|
||||||
|
begintime: date.format('YYYYMMDD000000'),
|
||||||
|
channelid: channel.site_id,
|
||||||
|
endtime: date.add(1, 'd').format('YYYYMMDD000000')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
parser: function ({ content }) {
|
||||||
|
let programs = []
|
||||||
|
const items = parseItems(content)
|
||||||
|
items.forEach(item => {
|
||||||
|
programs.push({
|
||||||
|
title: item.name,
|
||||||
|
description: item.introduce,
|
||||||
|
image: parseImage(item),
|
||||||
|
category: parseCategory(item),
|
||||||
|
start: parseStart(item),
|
||||||
|
stop: parseStop(item),
|
||||||
|
sub_title: item.subName,
|
||||||
|
season: item.seasonNum,
|
||||||
|
episode: item.subNum,
|
||||||
|
directors: parseDirectors(item),
|
||||||
|
producers: parseProducers(item),
|
||||||
|
adapters: parseAdapters(item),
|
||||||
|
country: upperCase(item.country),
|
||||||
|
date: item.producedate,
|
||||||
|
urls: parseUrls(item)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
return programs
|
||||||
|
},
|
||||||
|
async channels() {
|
||||||
|
const url = 'https://api.prod.sngtv.magentatv.de/EPG/JSON/AllChannel'
|
||||||
|
const body = {
|
||||||
|
channelNamespace: 2,
|
||||||
|
filterlist: [
|
||||||
|
{
|
||||||
|
key: 'IsHide',
|
||||||
|
value: '-1'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
metaDataVer: 'Channel/1.1',
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
include: '/channellist/logicalChannel/contentId,/channellist/logicalChannel/name',
|
||||||
|
name: 'logicalChannel'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
returnSatChannel: 0
|
||||||
|
}
|
||||||
|
const params = {
|
||||||
|
headers: await setHeaders()
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await axios
|
||||||
|
.post(url, body, params)
|
||||||
|
.then(r => r.data)
|
||||||
|
.catch(console.log)
|
||||||
|
|
||||||
|
return data.channellist.map(item => {
|
||||||
|
return {
|
||||||
|
lang: 'de',
|
||||||
|
site_id: item.contentId,
|
||||||
|
name: item.name
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseCategory(item) {
|
||||||
|
return item.genres
|
||||||
|
? item.genres
|
||||||
|
.replace('und', ',')
|
||||||
|
.split(',')
|
||||||
|
.map(i => i.trim())
|
||||||
|
: []
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseDirectors(item) {
|
||||||
|
if (!item.cast || !item.cast.director) return [];
|
||||||
|
return item.cast.director
|
||||||
|
.replace('und', ',')
|
||||||
|
.split(',')
|
||||||
|
.map(i => i.trim());
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseProducers(item) {
|
||||||
|
if (!item.cast || !item.cast.producer) return [];
|
||||||
|
return item.cast.producer
|
||||||
|
.replace('und', ',')
|
||||||
|
.split(',')
|
||||||
|
.map(i => i.trim())
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseAdapters(item) {
|
||||||
|
if (!item.cast || !item.cast.adaptor) return [];
|
||||||
|
return item.cast.adaptor
|
||||||
|
.replace('und', ',')
|
||||||
|
.split(',')
|
||||||
|
.map(i => i.trim())
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseUrls(item) {
|
||||||
|
// currently only a imdb id is returned by the api, thus we can construct the url here
|
||||||
|
if (!item.externalIds) return [];
|
||||||
|
return JSON.parse(item.externalIds)
|
||||||
|
.filter(externalId => externalId.type === 'imdb' && externalId.id)
|
||||||
|
.map(externalId => ({ system: 'imdb', value: `https://www.imdb.com/title/${externalId.id}` }))
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseImage(item) {
|
||||||
|
if (!Array.isArray(item.pictures) || !item.pictures.length) return null
|
||||||
|
|
||||||
|
return item.pictures[0].href
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseStart(item) {
|
||||||
|
return dayjs.utc(item.starttime, 'YYYY-MM-DD HH:mm:ss')
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseStop(item) {
|
||||||
|
return dayjs.utc(item.endtime, 'YYYY-MM-DD HH:mm:ss')
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseItems(content) {
|
||||||
|
const data = JSON.parse(content)
|
||||||
|
if (!data || !Array.isArray(data.playbilllist)) return []
|
||||||
|
|
||||||
|
return data.playbilllist
|
||||||
|
}
|
||||||
|
|
||||||
|
// Function to try to fetch COOKIE and X_CSRFTOKEN
|
||||||
|
function fetchCookieAndToken() {
|
||||||
|
return fetch(
|
||||||
|
'https://api.prod.sngtv.magentatv.de/EPG/JSON/Authenticate?SID=firstup&T=Windows_chrome_118',
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
accept: 'application/json, text/javascript, */*; q=0.01',
|
||||||
|
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
||||||
|
'sec-fetch-dest': 'empty',
|
||||||
|
'sec-fetch-mode': 'cors',
|
||||||
|
'sec-fetch-site': 'same-origin',
|
||||||
|
'x-requested-with': 'XMLHttpRequest',
|
||||||
|
Referer: 'https://web.magentatv.de/',
|
||||||
|
'Referrer-Policy': 'strict-origin-when-cross-origin'
|
||||||
|
},
|
||||||
|
body: '{"terminalid":"00:00:00:00:00:00","mac":"00:00:00:00:00:00","terminaltype":"WEBTV","utcEnable":1,"timezone":"Etc/GMT0","userType":3,"terminalvendor":"Unknown"}',
|
||||||
|
method: 'POST'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(response => {
|
||||||
|
// Check if the response status is OK (2xx)
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error('HTTP request failed')
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract the set-cookie header
|
||||||
|
const setCookieHeader = response.headers.raw()['set-cookie']
|
||||||
|
|
||||||
|
// Extract the cookies specified in cookiesToExtract
|
||||||
|
cookiesToExtract.forEach(cookieName => {
|
||||||
|
const regex = new RegExp(`${cookieName}=(.+?)(;|$)`)
|
||||||
|
const match = setCookieHeader.find(header => regex.test(header))
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
const cookieValue = regex.exec(match)[1]
|
||||||
|
extractedCookies[cookieName] = cookieValue
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return response.json()
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
if (data.csrfToken) {
|
||||||
|
X_CSRFTOKEN = data.csrfToken
|
||||||
|
COOKIE = `JSESSIONID=${extractedCookies.JSESSIONID}; CSESSIONID=${extractedCookies.CSESSIONID}; CSRFSESSION=${extractedCookies.CSRFSESSION}; JSESSIONID=${extractedCookies.JSESSIONID};`
|
||||||
|
} else {
|
||||||
|
console.log('csrfToken not found in the response.')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error(error)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function setHeaders() {
|
||||||
|
return fetchCookieAndToken().then(() => {
|
||||||
|
return {
|
||||||
|
X_CSRFTOKEN: X_CSRFTOKEN,
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
Cookie: COOKIE
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
4
start.sh
4
start.sh
@ -8,6 +8,7 @@ for arg in "$@"; do
|
|||||||
days=*) days="${arg#*=}" ;;
|
days=*) days="${arg#*=}" ;;
|
||||||
max_connections=*) max_connections="${arg#*=}" ;;
|
max_connections=*) max_connections="${arg#*=}" ;;
|
||||||
enable_fixes=*) enable_fixes="${arg#*=}" ;;
|
enable_fixes=*) enable_fixes="${arg#*=}" ;;
|
||||||
|
api_url=*) api_url="${arg#*=}" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -17,11 +18,14 @@ echo "working dir : " $(pwd)
|
|||||||
echo "days : ${days}"
|
echo "days : ${days}"
|
||||||
echo "max_connections : ${max_connections}"
|
echo "max_connections : ${max_connections}"
|
||||||
echo "enable_fixes : ${enable_fixes}"
|
echo "enable_fixes : ${enable_fixes}"
|
||||||
|
echo "api url : ${api_url}"
|
||||||
|
|
||||||
if [ "$enable_fixes" = true ] ; then
|
if [ "$enable_fixes" = true ] ; then
|
||||||
cp -R /fixes/* /bin/epg/sites/
|
cp -R /fixes/* /bin/epg/sites/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
sed -i -E "s/(https:\x2f\x2fiptv-org.github.io\x2fapi)/$api_url/g" $work_dir/scripts/core/apiClient.ts
|
||||||
|
|
||||||
pm2 --name epg start npm -- run serve
|
pm2 --name epg start npm -- run serve
|
||||||
npm run grab -- --channels=channels.xml --maxConnections=$max_connections --days=$days --gzip
|
npm run grab -- --channels=channels.xml --maxConnections=$max_connections --days=$days --gzip
|
||||||
ln -s $work_dir/guide.xml /public/guide.xml
|
ln -s $work_dir/guide.xml /public/guide.xml
|
||||||
|
Reference in New Issue
Block a user