From 988dfa6cfb5ca5a0c894488eba8988186728e77f Mon Sep 17 00:00:00 2001 From: catSIXe Date: Mon, 12 Oct 2020 00:30:19 +0200 Subject: [PATCH] added the evil script --- cache/.gitempty | 0 channelsToM3U.php | 25 ++++++++++ config.php | 15 ++++++ fetchData.php | 115 ++++++++++++++++++++++++++++++++++++++++++++++ run.sh | 4 ++ 5 files changed, 159 insertions(+) create mode 100644 cache/.gitempty create mode 100644 channelsToM3U.php create mode 100644 config.php create mode 100644 fetchData.php create mode 100644 run.sh diff --git a/cache/.gitempty b/cache/.gitempty new file mode 100644 index 0000000..e69de29 diff --git a/channelsToM3U.php b/channelsToM3U.php new file mode 100644 index 0000000..02b6a55 --- /dev/null +++ b/channelsToM3U.php @@ -0,0 +1,25 @@ + diff --git a/config.php b/config.php new file mode 100644 index 0000000..e595f13 --- /dev/null +++ b/config.php @@ -0,0 +1,15 @@ + diff --git a/fetchData.php b/fetchData.php new file mode 100644 index 0000000..63de02e --- /dev/null +++ b/fetchData.php @@ -0,0 +1,115 @@ +
')); + $html=substr($html, strpos($html, 'FEC
')+strlen('FEC')); + $html=explode('"clear: both;"', $html); + unset($html[0]); + $re = '/
(\s?\d+\.)<\/div>
([0-9.]+)<\/div> ([0-9.]*)<\/a><\/div>
(H|V)<\/div>
([0-9.]+)<\/div>
(\d+\/\d+)<\/div>
(DVB-S\d?)<\/div>
([0-9A-Za-z]+)<\/div>
([0-9.]*)<\/div>
<\/div>
(\d+)<\/div>
(.*)<\/div>/im'; + foreach($html as $transponder) { + $transponderM=preg_first($re, $transponder); + unset($transponderM[0]); + $transponder=array( + "transponder" => intval($transponderM[2]), + "tsid" => intval($transponderM[10]), + "freq" => intval($transponderM[3]), + "pol" => $transponderM[4], + "rate" => intval($transponderM[5]), + "fec" => $transponderM[6], + "type" => $transponderM[7], + "modulation" => $transponderM[8], + ); + $db[intval($transponder["freq"])] = $transponder; + } + return $db; +} +function processChannel($channelLink) { + $pageLink = "https://www.satindex.de".$channelLink; + $pageCache = "cache/".urlencode(base64_encode($pageLink)); + if (!file_exists($pageCache)) { file_put_contents($pageCache, file_get_contents($pageLink)); } + $html = file_get_contents($pageCache); + $pmtID = preg_first('/class="cell_l"\s+>PMT Pid:<\/div>(\d+)<\/div>/m', $html)[1]; + return array($pmtID); +} +function processTransponder($transponder) { + global $channels; + + $pageLink = "https://www.satindex.de/frequenz/".$transponder["freq"]; + $pageCache = "cache/".urlencode(base64_encode($pageLink)); + if (!file_exists($pageCache)) { file_put_contents($pageCache, file_get_contents($pageLink)); } + $html = file_get_contents($pageCache); + $html = trim(preg_replace('/\s\s+/', ' ', $html)); + $html = substr($html, strpos($html, '
$channelM[1], + "name" => $channelM[2], + "kategorie" => $channelM[3], + "transponder" => $transponder, + "pids" => $pids, + ); + print_r($channel); + array_push($channels, $channel); + } + } +} + + +$transponder = getTransponders($transponderDB); +foreach($transponder as $t) { + processTransponder($t); +} +file_put_contents("channels.json", json_encode($channels)); +?> diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..43f609d --- /dev/null +++ b/run.sh @@ -0,0 +1,4 @@ +#!/bin/sh +php -f fetchData.php +php channelsToM3U.php > playlist.m3u8 +echo "done, furk the payware"