initial setup
This commit is contained in:
parent
b75e298506
commit
ee647743dd
48
.gitea/action.yml
Normal file
48
.gitea/action.yml
Normal file
@ -0,0 +1,48 @@
|
||||
name: 'Build docker container'
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ${{ GITHUB_WORKSPACE }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Docker
|
||||
run: |
|
||||
echo "Checking docker installation"
|
||||
if command -v docker &> /dev/null; then
|
||||
echo "Docker installation found"
|
||||
else
|
||||
echo "Docker installation not found. Docker will be installed"
|
||||
curl -fsSL https://get.docker.com | sh
|
||||
fi
|
||||
- name: Set up Docker Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v3
|
||||
- name: Login to Gitea container registry
|
||||
uses: https://github.com/docker/login-action@v3
|
||||
with:
|
||||
registry: git.claeyscloud.com
|
||||
username: nologin
|
||||
password: ${{ secrets.PACKAGE_TOKEN }}
|
||||
- name: Extract metadata (tags, labels) for Docker
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
git.claeyscloud.com/david/pluto-tv-scraper
|
||||
tags: |
|
||||
type=semver,pattern={{raw}}
|
||||
type=sha
|
||||
- name: Build and push
|
||||
uses: https://github.com/docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
22
Dockerfile
Normal file
22
Dockerfile
Normal file
@ -0,0 +1,22 @@
|
||||
FROM node:23-alpine
|
||||
ARG BIN_FOLDER=/bin
|
||||
ARG PLUTO_FOLDER=pluto
|
||||
ARG FIXES_FOLDER_ARG=fixes
|
||||
ARG START_SCRIPT_ARG=$BIN_FOLDER/$PLUTO_FOLDER/start.sh
|
||||
ENV WORKDIR=${BIN_FOLDER}/${PLUTO_FOLDER}
|
||||
ENV START_SCRIPT=$START_SCRIPT_ARG
|
||||
COPY config.json /config/config.json
|
||||
RUN mkdir $(echo "${WORKDIR}") -p
|
||||
COPY start.sh $WORKDIR
|
||||
RUN apk update \
|
||||
&& apk upgrade --available \
|
||||
&& apk add tzdata bash \
|
||||
&& npm install -g npm@latest \
|
||||
&& npm install -g plutotv-scraper \
|
||||
&& ln -s /config/config.json $(echo "${WORKDIR}/config.json") \
|
||||
&& mkdir /public \
|
||||
&& chmod +x "$START_SCRIPT" \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
ENTRYPOINT bash $START_SCRIPT work-dir="$WORKDIR"
|
||||
EXPOSE 5050
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 david
|
||||
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:
|
||||
|
||||
|
39
README.md
39
README.md
@ -1,2 +1,41 @@
|
||||
# pluto_tv_scraper-docker
|
||||
|
||||
This repo builds and Docker image of [pluto_tv_scraper](https://github.com/4v3ngR/pluto_tv_scraper).
|
||||
The purpose is to make the deployment easier and more suitable for different environments.
|
||||
|
||||
## Dependencies
|
||||
[Node](https://nodejs.org/en)<br>
|
||||
|
||||
The image is based on `node:23-alpine` in order to be more lightweight.
|
||||
|
||||
## Docker image
|
||||
|
||||
|
||||
### Paths
|
||||
|
||||
#### Config
|
||||
|
||||
The settings file is located under `/config/config.json`.
|
||||
Under the `mapping` section you can specify which IP adresses are used to obtain the channels in a certain country.
|
||||
By default some IP adresses are provided in the default configuration file, however these might not work over time.
|
||||
You can use [ip2location by country](https://lite.ip2location.com/ip-address-ranges-by-country) and [ip2location lookup](https://www.iplocation.net/ip-lookup) to obtain an IP in a certain country.
|
||||
|
||||
For each country a `.m3u8` and `.xml` file will be generated.
|
||||
The expected formats are `plutotv_{country}.m3u8` and `plutotv_{country}.xml`.
|
||||
If you include more than one country in the mapping section `plutotv_all.m3u8` and `plutotv_all.xml` also will be generated.
|
||||
|
||||
##### Options:
|
||||
|
||||
| Variable | Description | Default |
|
||||
| outdir | The destination directory where the generated files will be stored. | `/public` |
|
||||
| clientID | Client id used to connect to the server | `00000000-0000-0000-0000-000000000000` |
|
||||
| all | Merge all regions into a single playlist and epg | true |
|
||||
| chno | Start channel numbering at the provided value, spans all regions | N/A |
|
||||
| group | Specify the grouping within the playlist | `genre` |
|
||||
| regionalize | Append the country code to the channel id | true |
|
||||
| excludeGroups | Exclude the groups that match the regular expression | false |
|
||||
| excludeChannels | Exclude the channels that match the regular expression | false |
|
||||
| uniqueClientid | Generate a unique id for each client requesting the playlist via the inbuilt server | true |
|
||||
| randomClientid | Generate a random id for each request of the playlist via the the inbuilt server | true |
|
||||
| refresh | Automatically refetch the files at the provided interval (in seconds) | 3600 |
|
||||
| xTvgUrl | Specify a custom x-tvg-url value in the EXTM3U header | false |
|
||||
|
23
config.json
Normal file
23
config.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"outdir": "/public",
|
||||
"clientID": "00000000-0000-0000-0000-000000000000",
|
||||
"mapping": {
|
||||
"es": "102.177.191.1",
|
||||
"us": "45.50.96.71",
|
||||
"uk": "109.74.192.2",
|
||||
"fr": "102.129.65.1",
|
||||
"de": "101.33.10.1",
|
||||
"it": "102.165.10.1",
|
||||
"br": "103.14.27.1",
|
||||
"ca": "102.129.158.1"
|
||||
},
|
||||
"all": true,
|
||||
"group": "genre",
|
||||
"regionalize": true,
|
||||
"excludeGroups": false,
|
||||
"excludeChannels": false,
|
||||
"uniqueClientid": true,
|
||||
"randomClientid": true,
|
||||
"refresh": 3600,
|
||||
"xTvgUrl": false
|
||||
}
|
14
start.sh
Normal file
14
start.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
for arg in "$@"; do
|
||||
case "$arg" in
|
||||
work-dir=*) work_dir="${arg#*=}" ;;
|
||||
esac
|
||||
done
|
||||
|
||||
cd $work_dir
|
||||
echo "working dir : " $(pwd)
|
||||
|
||||
#scrape at startup in order to generate files on bool
|
||||
plutotv-scraper --config /bin/pluto/config.json
|
||||
plutotv-scraper --config /bin/pluto/config.json --port 5050
|
Loading…
x
Reference in New Issue
Block a user