Changeset 44502


Ignore:
Timestamp:
01/08/20 22:17:14 (3 years ago)
Author:
obi
Message:

optimize tithek start

Location:
titan/mediathek
Files:
30 edited

Legend:

Unmodified
Added
Removed
  • titan/mediathek/localparser_free/clipfish.sh

    r42464 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510
    16 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT $PAGE2"
    17 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    18 PICNAME=`echo $FILENAME`
    19 
    20 if [ -z "$FILENAME" ]; then
    21         FILENAME=none
    22 fi
    23 
    2411URL=http://www.clipfish.de
    2512NAME="ClipFish"
    2613
    27 mkdir $TMP > /dev/null 2>&1
     14case $2 in
     15        init) echo skip load hoster.sh;;
     16        *)      . /tmp/localhoster/hoster.sh
     17                mkdir $TMP > /dev/null 2>&1
     18                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     19                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     20                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     21                PICNAME="$FILENAME"
     22                ;;
     23esac
    2824
    2925if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_free/dmax.sh

    r44051 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    138PAGE=$5
    149
    15 FILENAME=`echo $PAGE | tr '/' '.'`
    16 FILENAME=`echo $FILENAME | tr '&' '.'`
    17 
    18 if [ -z "$PAGE" ]; then
    19         FILENAME=none
    20 fi
    21 
    2210URL=https://www.dmax.de
    2311PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2412NAME="DMAX"
    2513
    26 mkdir $TMP > /dev/null 2>&1
     14case $2 in
     15        init) echo skip load hoster.sh;;
     16        *)      . /tmp/localhoster/hoster.sh
     17                mkdir $TMP > /dev/null 2>&1
     18                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     19                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     20                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     21                PICNAME="$FILENAME"
     22                ;;
     23esac
    2724
    2825if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_free/giga.sh

    r42464 r44502  
    11#!/bin/bash
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    1510NAME=Giga
    1611
    17 rm -rf $TMP > /dev/null 2>&1
    18 mkdir $TMP > /dev/null 2>&1
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
    1922
    2023if [ "$SRC" = "/mnt/parser" ];then
  • titan/mediathek/localparser_free/mediathekdirect.sh

    r42935 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510
    16 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT"
    17 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    18 PICNAME=`echo $FILENAME`
    19 
    20 if [ -z "$FILENAME" ]; then
    21         FILENAME=none
    22 fi
    23 
    2411URL=http://www.mediathekdirekt.de
    2512#PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2613NAME=MediathekDirekt
    2714
    28 #rm -rf $TMP > /dev/null 2>&1
    29 mkdir $TMP > /dev/null 2>&1
     15case $2 in
     16        init) echo skip load hoster.sh;;
     17        *)      . /tmp/localhoster/hoster.sh
     18                mkdir $TMP > /dev/null 2>&1
     19                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     20                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     21                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     22                PICNAME="$FILENAME"
     23                ;;
     24esac
    3025
    3126if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_free/sixx.sh

    r42594 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510NAME=Sixx
    16 FILENAME="$PARSER $INPUT $PAGE"
    17 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    1811
    19 #rm -rf $TMP > /dev/null 2>&1
    20 mkdir $TMP > /dev/null 2>&1
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
    2122
    2223if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_free/watchbox.sh

    r44051 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    138PAGE=$5
    149
    15 FILENAME=`echo $PAGE | tr '/' '.'`
    16 FILENAME=`echo $FILENAME | tr '&' '.'`
    17 
    18 if [ -z "$PAGE" ]; then
    19         FILENAME=none
    20 fi
    21 
    2210URL=https://www.watchbox.de
    2311PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2412NAME="Watchbox"
    2513
    26 mkdir $TMP > /dev/null 2>&1
    27 #TMP=/tmp/localcache
     14case $2 in
     15        init) echo skip load hoster.sh;;
     16        *)      . /tmp/localhoster/hoster.sh
     17                mkdir $TMP > /dev/null 2>&1
     18                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     19                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     20                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     21                PICNAME="$FILENAME"
     22                ;;
     23esac
     24
    2825if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
    2926        TYPE="$SRC - Shell script"
  • titan/mediathek/localparser_free/youtube.sh

    r44377 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    138PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    149
    15 FILENAME="$PARSER $INPUT $PAGE $NEXT"
    16 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr ';' '.' | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    17 
    18 if [ -z "$FILENAME" ]; then
    19         FILENAME=none
    20 fi
    21 
    2210URL=https://www.googleapis.com
    2311NAME=Youtube
    2412
    25 mkdir $TMP > /dev/null 2>&1
     13case $2 in
     14        init) echo skip load hoster.sh;;
     15        *)      . /tmp/localhoster/hoster.sh
     16                mkdir $TMP > /dev/null 2>&1
     17                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     18                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     19                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     20                PICNAME="$FILENAME"
     21                ;;
     22esac
    2623
    2724if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/7tv.sh

    r43639 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510NAME=7tv
    16 FILENAME="$PARSER $INPUT $PAGE"
    17 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    1811
    19 #rm -rf $TMP > /dev/null 2>&1
    20 mkdir $TMP > /dev/null 2>&1
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
     22
    2123
    2224if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/beeg.sh

    r42731 r44502  
    11#!/bin/bash
    22# box parser for titannit
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149NAME=`echo -n ${PARSER:0:1} | tr '[a-z]' '[A-Z]'`${PARSER:1}
    1510
    16 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PARAM"
    17 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    18 PICNAME=`echo $FILENAME`
    19 
    20 rm -rf $TMP > /dev/null 2>&1
    21 mkdir $TMP > /dev/null 2>&1
     11case $2 in
     12        init) echo skip load hoster.sh;;
     13        *)      . /tmp/localhoster/hoster.sh
     14                mkdir $TMP > /dev/null 2>&1
     15                FILENAME="$PARSER $INPUT $PAGE $PARAM"
     16                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     17                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     18                PICNAME="$FILENAME"
     19                ;;
     20esac
    2221
    2322if [ `echo $SRC | grep ^"/mnt/parser" |wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/bs.sh

    r42731 r44502  
    11#!/bin/bash
     2
    23# titannit box parser for burning series
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    94SRC=$1
    105INPUT=$2
     
    1510NAME="burningseries"
    1611
    17 #rm -rf $TMP > /dev/null 2>&1
    18 mkdir $TMP > /dev/null 2>&1
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE $PARAM $PARAM2"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
    1922
    2023if [ `echo $SRC | grep ^"/mnt/parser" |wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/cricfree.sh

    r44051 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510NAME=CricFree
    16 FILENAME="$PARSER $INPUT $PAGE"
    17 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    1811
    19 #rm -rf $TMP > /dev/null 2>&1
    20 mkdir $TMP > /dev/null 2>&1
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
    2122
    2223if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/foxx.sh

    r43356 r44502  
    1414PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1515
    16 FILENAME="$PARSER $INPUT $CURPAGE $MAXPAGE $PAGE"
    17 FILENAME=`echo $FILENAME | tr '+' '.' | sed 's/https://' | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    18 
    19 if [ -z "$CURPAGE" ]; then
    20         FILENAME=none
    21 fi
    22 
    2316URL=http://foxx.to
    2417PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2518NAME="Foxx HD"
    2619
    27 mkdir $TMP > /dev/null 2>&1
    28 #TMP=/tmp/localcache
     20case $2 in
     21        init) echo skip load hoster.sh;;
     22        *)      . /tmp/localhoster/hoster.sh
     23                mkdir $TMP > /dev/null 2>&1
     24                FILENAME="$PARSER $INPUT $CURPAGE $MAXPAGE $PAGE"
     25                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     26                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     27                PICNAME="$FILENAME"
     28                ;;
     29esac
     30
    2931if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
    3032        TYPE="$SRC - Shell script"
  • titan/mediathek/localparser_secret/goldesel.sh

    r42464 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    116PAGE=$3
    127
    13 FILENAME=`echo $PAGE | tr '/' '.'`
    14 FILENAME=`echo $FILENAME | tr '&' '.'`
    15 
    16 if [ -z "$PAGE" ]; then
    17         FILENAME=none
    18 fi
    19 
    208URL=http://goldesel.to
    219PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2210NAME=Goldesel
    2311
    24 mkdir $TMP > /dev/null 2>&1
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
    2522
    2623if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/kinox.sh

    r44042 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    9 #SRC=$1
    10 #INPUT=$2
    11 #PAGE=$3
    12 #NEXT=$4
    13 #
    14 #FILENAME=`echo $PAGE | tr '/' '.'`
    15 #FILENAME=`echo $FILENAME | tr '&' '.'`
    16 #
    17 #if [ -z "$PAGE" ]; then
    18 #       FILENAME=none
    19 #fi
    203
    214SRC=$1
     
    269PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2710
    28 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    29 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    30 
    31 if [ -z "$FILENAME" ]; then
    32         FILENAME=none
    33 fi
    34 
    35 URL=`cat /mnt/config/titan.cfg | grep tithek_kinox_url | grep -v "#" | cut -d "=" -f2`
    36 if [ -z "$URL" ];then
    37         URL=https://kinox.pub
    38 fi
    39 
    4011#KinoX.to Alternativ Adressen: http://kinoS.TO - http://kinox.TV - http://kinox.ME - http://kinox.SI - http://kinox.IO
    4112#Mirrors: http://kinox.SX - http://kinox.AM - http://kinox.NU - http://kinox.SG - http://kinox.GRATIS - http://kinox.MOBI
     
    4718NAME=KinoX
    4819
    49 if [ `cat /mnt/config/titan.cfg | grep tithek_kinox_localhoster=1 | wc -l` -eq 1 ];then
    50         ACTIVEBIN="$curlbin"
    51 elif [ `cat /mnt/config/titan.cfg | grep tithek_kinox_localhoster=2 | wc -l` -eq 1 ];then
    52         ACTIVEBIN="$BIN /tmp/localhoster/cloudflare.py"
    53 else
    54         ACTIVEBIN="$curlbin"
    55         URL=`echo $URL | sed 's/https:/http:/'`
    56 fi
    57 
    58 mkdir $TMP > /dev/null 2>&1
     20case $2 in
     21        init) echo skip load hoster.sh;;
     22        *)      . /tmp/localhoster/hoster.sh
     23                mkdir $TMP > /dev/null 2>&1
     24                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     25                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     26                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     27                PICNAME="$FILENAME"
     28                URL=`cat /mnt/config/titan.cfg | grep tithek_kinox_url | grep -v "#" | cut -d "=" -f2`
     29                if [ -z "$URL" ];then URL=https://kinoz.to; fi
     30                if [ `cat /mnt/config/titan.cfg | grep tithek_kinox_localhoster=1 | wc -l` -eq 1 ];then
     31                        ACTIVEBIN="$curlbin"
     32                elif [ `cat /mnt/config/titan.cfg | grep tithek_kinox_localhoster=2 | wc -l` -eq 1 ];then
     33                        ACTIVEBIN="$BIN /tmp/localhoster/cloudflare.py"
     34                else
     35                        ACTIVEBIN="$curlbin"
     36                fi
     37           ;;
     38esac
    5939
    6040if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/kinoxsu.sh

    r44059 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    9 #SRC=$1
    10 #INPUT=$2
    11 #PAGE=$3
    12 #NEXT=$4
    13 #
    14 #FILENAME=`echo $PAGE | tr '/' '.'`
    15 #FILENAME=`echo $FILENAME | tr '&' '.'`
    16 #
    17 #if [ -z "$PAGE" ]; then
    18 #       FILENAME=none
    19 #fi
    203
    214SRC=$1
     
    269PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2710
    28 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    29 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    30 
    31 if [ -z "$FILENAME" ]; then
    32         FILENAME=none
    33 fi
    34 
    3511# curl https://kinox.su/779-meine-teuflisch-gute-freundin-2018.
    3612
     
    4016NAME=KinoXsu
    4117
    42 mkdir $TMP > /dev/null 2>&1
     18case $2 in
     19        init) echo skip load hoster.sh;;
     20        *)      . /tmp/localhoster/hoster.sh
     21                mkdir $TMP > /dev/null 2>&1
     22                FILENAME="$PARSER $INPUT $CURPAGE $MAXPAGE $PAGE"
     23                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     24                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     25                PICNAME="$FILENAME"
     26                ;;
     27esac
    4328
    4429if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/kkiste.sh

    r42464 r44502  
    11#!/bin/bash
    22# box parser for titannit
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    127NEXT=$4
    138
    14 FILENAME=`echo $PAGE | tr '/' '.' | tr '?' '.'  | tr '=' '.'`
    15 FILENAME=`echo $FILENAME | tr '&' '.'`
    16 
    17 if [ -z "$FILENAME" ]; then
    18         FILENAME=none
    19 fi
    20 
    219URL="http://kkiste.to/"
    2210PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2311NAME=`echo -n ${PARSER:0:2} | tr '[a-z]' '[A-Z]'`${PARSER:2}
    2412
    25 mkdir $TMP > /dev/null 2>&1
     13case $2 in
     14        init) echo skip load hoster.sh;;
     15        *)      . /tmp/localhoster/hoster.sh
     16                mkdir $TMP > /dev/null 2>&1
     17                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     18                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     19                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     20                PICNAME="$FILENAME"
     21                ;;
     22esac
    2623
    2724if [ `echo $SRC | grep ^"/mnt/parser" |wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/meinkino.sh

    r42464 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510
    16 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    17 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    18 
    1911if [ -z "$FILENAME" ]; then
    2012        FILENAME=none
     
    2416NAME=MeinKino
    2517
    26 mkdir $TMP > /dev/null 2>&1
     18case $2 in
     19        init) echo skip load hoster.sh;;
     20        *)      . /tmp/localhoster/hoster.sh
     21                mkdir $TMP > /dev/null 2>&1
     22                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     23                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     24                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     25                PICNAME="$FILENAME"
     26                ;;
     27esac
    2728
    2829if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/movie2kag.sh

    r43356 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    9 #SRC=$1
    10 #INPUT=$2
    11 #PAGE=$3
    12 #NEXT=$4
    13 #
    14 #FILENAME=`echo $PAGE | tr '/' '.'`
    15 #FILENAME=`echo $FILENAME | tr '&' '.'`
    16 #
    17 #if [ -z "$PAGE" ]; then
    18 #       FILENAME=none
    19 #fi
    203
    214SRC=$1
     
    269PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2710
    28 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    29 FILENAME=`echo $FILENAME  | sed -e 's/\-\+/./g' | sed -e 's/\+\+/./g' | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    30 
    31 if [ -z "$FILENAME" ]; then
    32         FILENAME=none
    33 fi
    34 
    3511URL=http://www.movie2k.ag/
    3612PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    3713NAME=movie2k.ag
    3814
    39 mkdir $TMP > /dev/null 2>&1
     15case $2 in
     16        init) echo skip load hoster.sh;;
     17        *)      . /tmp/localhoster/hoster.sh
     18                mkdir $TMP > /dev/null 2>&1
     19                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     20                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     21                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     22                PICNAME="$FILENAME"
     23                ;;
     24esac
    4025
    4126if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/movie4k.sh

    r44501 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    9 #SRC=$1
    10 #INPUT=$2
    11 #PAGE=$3
    12 #NEXT=$4
    13 #
    14 #FILENAME=`echo $PAGE | tr '/' '.'`
    15 #FILENAME=`echo $FILENAME | tr '&' '.'`
    16 #
    17 #if [ -z "$PAGE" ]; then
    18 #       FILENAME=none
    19 #fi
    203
    214SRC=$1
     
    269PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2710
    28 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    29 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    30 
    31 if [ -z "$FILENAME" ]; then
    32         FILENAME=none
    33 fi
    34 
    3511#URL=http://movie4k.to
    3612URL=https://www2.movie4k.org/
     
    3915NAME=Movie4k
    4016
    41 mkdir $TMP > /dev/null 2>&1
     17case $2 in
     18        init) echo skip load hoster.sh;;
     19        *)      . /tmp/localhoster/hoster.sh
     20                mkdir $TMP > /dev/null 2>&1
     21                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     22                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     23                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     24                PICNAME="$FILENAME"
     25                ;;
     26esac
    4227
    4328if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/movie4kio.sh

    r43087 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    9 #SRC=$1
    10 #INPUT=$2
    11 #PAGE=$3
    12 #NEXT=$4
    13 #
    14 #FILENAME=`echo $PAGE | tr '/' '.'`
    15 #FILENAME=`echo $FILENAME | tr '&' '.'`
    16 #
    17 #if [ -z "$PAGE" ]; then
    18 #       FILENAME=none
    19 #fi
    203
    214SRC=$1
     
    269PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2710
    28 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    29 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    30 
    31 if [ -z "$FILENAME" ]; then
    32         FILENAME=none
    33 fi
    34 
    3511#URL=http://movie4k.to
    3612URL=https://movie4k.io
     
    3814NAME=Movie4kio
    3915
    40 mkdir $TMP > /dev/null 2>&1
     16case $2 in
     17        init) echo skip load hoster.sh;;
     18        *)      . /tmp/localhoster/hoster.sh
     19                mkdir $TMP > /dev/null 2>&1
     20                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     21                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     22                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     23                PICNAME="$FILENAME"
     24                ;;
     25esac
    4126
    4227if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/myspass.sh

    r44471 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    138PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    149
    15 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT"
    16 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    17 PICNAME=`echo $FILENAME`
    18 
    19 if [ -z "$FILENAME" ]; then
    20         FILENAME=none
    21 fi
    22 
    2310#URL=http://www.myspass.de
    2411URL=http://m.myspass.de
    2512NAME="MySpass"
    2613
    27 mkdir $TMP > /dev/null 2>&1
     14case $2 in
     15        init) echo skip load hoster.sh;;
     16        *)      . /tmp/localhoster/hoster.sh
     17                mkdir $TMP > /dev/null 2>&1
     18                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     19                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     20                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     21                PICNAME="$FILENAME"
     22                ;;
     23esac
    2824
    2925if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/openloadmovie.sh

    r44051 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510
    16 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT"
    17 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    18 PICNAME=`echo $FILENAME`
    19 
    20 if [ -z "$FILENAME" ]; then
    21         FILENAME=none
    22 fi
    23 
    2411URL=http://openloadmovie.co
    2512#PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2613NAME=OpenloadMovie
    2714
    28 #rm -rf $TMP > /dev/null 2>&1
    29 mkdir $TMP > /dev/null 2>&1
     15case $2 in
     16        init) echo skip load hoster.sh;;
     17        *)      . /tmp/localhoster/hoster.sh
     18                mkdir $TMP > /dev/null 2>&1
     19                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     20                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     21                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     22                PICNAME="$FILENAME"
     23                ;;
     24esac
    3025
    3126if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/pornhub.sh

    r43491 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    138PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    149
    15 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT"
    16 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    17 PICNAME=`echo $FILENAME`
    18 
    19 if [ -z "$FILENAME" ]; then
    20         FILENAME=none
    21 fi
    22 
    2310URL=http://www.pornhub.com
    2411NAME="Pornhub"
    2512
    26 mkdir $TMP > /dev/null 2>&1
     13case $2 in
     14        init) echo skip load hoster.sh;;
     15        *)      . /tmp/localhoster/hoster.sh
     16                mkdir $TMP > /dev/null 2>&1
     17                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     18                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     19                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     20                PICNAME="$FILENAME"
     21                ;;
     22esac
    2723
    2824if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/serienstream.sh

    r43491 r44502  
    3838NAME=SerienStream
    3939
    40 mkdir $TMP > /dev/null 2>&1
     40case $2 in
     41        init) echo skip mkdir $TMP;;
     42        *) if [ ! -e $TMP ];then mkdir $TMP;fi > /dev/null 2>&1;;
     43esac
    4144
    4245if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/sportsondemand.sh

    r44481 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510
    16 FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT"
    17 FILENAME="`echo $FILENAME | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
    18 PICNAME=`echo $FILENAME`
    19 
    20 if [ -z "$FILENAME" ]; then
    21         FILENAME=none
    22 fi
    23 
    2411URL=http://livetv.sx
    2512#PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2613NAME=Sports-On-Demand
    2714
    28 #rm -rf $TMP > /dev/null 2>&1
    29 mkdir $TMP > /dev/null 2>&1
     15case $2 in
     16        init) echo skip load hoster.sh;;
     17        *)      . /tmp/localhoster/hoster.sh
     18                mkdir $TMP > /dev/null 2>&1
     19                FILENAME="$PARSER $INPUT $PAGE $NEXT"
     20                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     21                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     22                PICNAME="$FILENAME"
     23                ;;
     24esac
    3025
    3126if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/streamcloud.sh

    r43357 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    8 
    9 #SRC=$1
    10 #INPUT=$2
    11 #PAGE=$3
    12 #NEXT=$4
    13 #
    14 #FILENAME=`echo $PAGE | tr '/' '.'`
    15 #FILENAME=`echo $FILENAME | tr '&' '.'`
    16 #
    17 #if [ -z "$PAGE" ]; then
    18 #       FILENAME=none
    19 #fi
    203
    214SRC=$1
     
    269PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2710
    28 FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    29 FILENAME=`echo $FILENAME  | sed -e 's/\-\+/./g' | sed -e 's/\+\+/./g' | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    30 
    31 if [ -z "$FILENAME" ]; then
    32         FILENAME=none
    33 fi
    34 
    3511URL=http://streamcloud.me
    3612PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    3713NAME=Streamcloud.me
    3814
    39 mkdir $TMP > /dev/null 2>&1
     15case $2 in
     16        init) echo skip load hoster.sh;;
     17        *)      . /tmp/localhoster/hoster.sh
     18                mkdir $TMP > /dev/null 2>&1
     19                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     20                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     21                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     22                PICNAME="$FILENAME"
     23                ;;
     24esac
    4025
    4126if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/streamlive.sh

    r42594 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    127PAGE=$4
    138
    14 FILENAME=`echo $PAGE | tr '/' '.'`
    15 FILENAME=`echo $FILENAME | tr '&' '.'`
    16 
    17 if [ -z "$PAGE" ]; then
    18         FILENAME=none
    19 fi
    20 
    219URL=www.streamlive.to
    2210PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2311NAME=StreamLive
    2412
    25 mkdir $TMP > /dev/null 2>&1
     13case $2 in
     14        init) echo skip load hoster.sh;;
     15        *)      . /tmp/localhoster/hoster.sh
     16                mkdir $TMP > /dev/null 2>&1
     17                FILENAME="$PARSER $INPUT $FROM $PAGE"
     18                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     19                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     20                PICNAME="$FILENAME"
     21                ;;
     22esac
    2623
    2724if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/tata.sh

    r42937 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    116PAGE=$3
    127
    13 FILENAME=`echo $PAGE | tr '/' '.'`
    14 FILENAME=`echo $FILENAME | tr '&' '.'`
    15 
    16 if [ -z "$PAGE" ]; then
    17         FILENAME=none
    18 fi
    19 
    208URL=https://www.tata.to
    219PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2210NAME="Tata"
    2311
    24 mkdir $TMP > /dev/null 2>&1
    25 #TMP=/tmp/localcache
     12case $2 in
     13        init) echo skip load hoster.sh;;
     14        *)      . /tmp/localhoster/hoster.sh
     15                mkdir $TMP > /dev/null 2>&1
     16                FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
     17                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     18                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     19                PICNAME="$FILENAME"
     20                ;;
     21esac
     22
    2623if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
    2724        TYPE="$SRC - Shell script"
  • titan/mediathek/localparser_secret/thesolarmovie.sh

    r42464 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    138NEXT=$5
    149
    15 FILENAME=`echo $PAGE | tr '/' '.'`
    16 FILENAME=`echo $FILENAME | tr '&' '.'`
    17 
    18 if [ -z "$PAGE" ]; then
    19         FILENAME=none
    20 fi
    21 
    2210URL=http://thesolarmoviehd.com
    2311PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    2412NAME=TheSolarMovie
    2513
    26 mkdir $TMP > /dev/null 2>&1
     14case $2 in
     15        init) echo skip load hoster.sh;;
     16        *)      . /tmp/localhoster/hoster.sh
     17                mkdir $TMP > /dev/null 2>&1
     18                FILENAME="$PARSER $INPUT $FROM $PAGE $NEXT"
     19                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     20                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     21                PICNAME="$FILENAME"
     22                ;;
     23esac
    2724
    2825if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
  • titan/mediathek/localparser_secret/tvnow.sh

    r42464 r44502  
    11#!/bin/sh
    22# first sh box parser for titannit mfg obi
    3 
    4 case $2 in
    5         init) echo skip load hoster.sh;;
    6         *) . /tmp/localhoster/hoster.sh;;
    7 esac
    83
    94SRC=$1
     
    149PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    1510
    16 ## start filename work, filename to long
    17 LIST="5B 1896 500 page Id 7B 22 5D 7D filter containsNotIn Disabled maxPerPage v3 formats? fields= id, title, station, title, titleGroup, seoUrl, icon, hasFreeEpisodes, hasPayEpisodes, categoryId, searchAliasName, genres fields= formatTabs. formatTabPages. container. annualNavigation"
    18 TMPPAGE="$PAGE"
    19 for ROUND in $LIST; do
    20         TMPPAGE=$(echo $TMPPAGE | sed "s/$ROUND/./g")
    21 done
    22 TMPPAGE=`echo $TMPPAGE | tr ':' '.' | tr '*' '.' | tr ',' '.' | tr '-' '.' | tr '%' '.' | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    23 ## done
    24 
    25 #FILENAME="$PARSER $INPUT $PAGE $NEXT $PAGE2"
    26 FILENAME="$PARSER $INPUT $TMPPAGE $NEXT $PAGE2"
    27 FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
    28 
    29 if [ -z "$FILENAME" ]; then
    30         FILENAME=none
    31 fi
    32 
    3311URL=https://api.tvnow.de
    3412PARSER=`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'`
    3513NAME="TvNow"
    3614
    37 mkdir $TMP > /dev/null 2>&1
    38 #TMP=/tmp/localcache
     15case $2 in
     16        init) echo skip load hoster.sh;;
     17        *)      . /tmp/localhoster/hoster.sh
     18                mkdir $TMP > /dev/null 2>&1
     19                ## start filename work, filename to long
     20                LIST="5B 1896 500 page Id 7B 22 5D 7D filter containsNotIn Disabled maxPerPage v3 formats? fields= id, title, station, title, titleGroup, seoUrl, icon, hasFreeEpisodes, hasPayEpisodes, categoryId, searchAliasName, genres fields= formatTabs. formatTabPages. container. annualNavigation"
     21                TMPPAGE="$PAGE"
     22                for ROUND in $LIST; do
     23                        TMPPAGE=$(echo $TMPPAGE | sed "s/$ROUND/./g")
     24                done
     25                TMPPAGE=`echo $TMPPAGE | tr ':' '.' | tr '*' '.' | tr ',' '.' | tr '-' '.' | tr '%' '.' | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
     26                ## done
     27
     28                FILENAME="$PARSER $INPUT $TMPPAGE $NEXT $PAGE2"
     29                FILENAME=`echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.'  | tr '=' '.' | sed 's/ \+/./g' | sed 's/\.\+/./g'`
     30
     31                FILENAME=$(echo $FILENAME | tr '&' '.' | tr '/' '.' | tr '?' '.' | tr '=' '.' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g')
     32                if [ -z "$FILENAME" ]; then FILENAME=none;fi
     33                PICNAME="$FILENAME"
     34                ;;
     35esac
     36
    3937if [ `echo $SRC | grep ^"/mnt/parser" | wc -l` -gt 0 ];then
    4038        TYPE="$SRC - Shell script"
Note: See TracChangeset for help on using the changeset viewer.