blob: 897dcd3cff817ae74898ba0885b585449c4b9a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#!/bin/sh
# Written by :
# Viking / vdrportal.de
# cjac AT ich-habe-fertig.com
#
# Call with one of these parameters
# a. Master-Timer Done-file
#
# Parameter :
# --sid X = use S-ID X instead of default (see below)
#------------------------------------------------------------------------------
# Should wo only test what is done ?
TEST=yes
# should the script ask for S-ID for each recording ?
# The script shows a list of possible S-ID's at the beginning
ASK_SID=no
# What S-ID should be used if no other selected
DEFAULT_SID=0
# adjust the following lines to your path to svdrpsend.pl
SVDRPSEND=/usr/local/bin/svdrpsend.pl
# Home of EPGsearch
EPGSEARCH_HOME="/etc/vdr/plugins"
# do not edit below this line
#------------------------------------------------------------------------------
EPGSEARCHDONE_FILE="$EPGSEARCH_HOME/epgsearchdone.data"
EPGSEARCH_FILE="$EPGSEARCH_HOME/epgsearch.conf"
PrevTitle=""
Count=0
function ShowUsableSIDs()
{
printf "\n"
grep -v "^#" $EPGSEARCH_FILE | sort -t':' -k2 | awk -F':' '{ print $1"\t"$2 }'
printf "\n"
}
function AddRecToDone()
{
Rec=$1
Title=$(echo $Rec|cut -f1 -d'|')
Subtitle=$(echo $Rec|cut -f2 -d'|')
[ "$Subtitle" = "NoSub" ] && Subtitle=""
if [ "$ASK_SID" = "yes" ]; then
if [ "$Title" != "$PrevTitle" ]; then
[ $Count -gt 10 ] && Count=1 || let Count++
[ $Count -eq 1 ] && ShowUsableSIDs
printf "Adding \"%s, %s\".\n" "$Title" "$Subtitle"
printf "Enter S-ID (s=skip, ENTER=$DEFAULT_SID): "
read NEW_SID </dev/tty
if [ "$NEW_SID" != "s" ]; then
[ -z "$NEW_SID" ] && NEW_SID=$DEFAULT_SID
printf "S-ID is set to $NEW_SID for \"$Title\"\n\n"
fi
else
let Count++
printf "Adding \"%s, %s\".\n" "$Title" "$Subtitle"
printf "Title matches, using same S-ID as before : $NEW_SID\n\n"
fi
PrevTitle=$Title
else
printf "Adding \"%s, %s\".\n" "$Title" "$Subtitle"
NEW_SID=$DEFAULT_SID
fi
if [ "$NEW_SID" != "s" ]; then
echo "R 0 0 $NEW_SID" >> $EPGSEARCHDONE_FILE
echo "T $Title" >> $EPGSEARCHDONE_FILE
[ ! -z "$Subtitle" ] && echo "S $Subtitle" >> $EPGSEARCHDONE_FILE
echo "D " >> $EPGSEARCHDONE_FILE
echo "r" >> $EPGSEARCHDONE_FILE
else
printf "SKIP \"%s, %s\"\n\n" "$Title" "$Subtitle"
fi
}
if [ "$1" = "--sid" ]; then
shift
if [ -z "$1" ]; then
printf "\nS-ID as parameter expected\n\n"
else
DEFAULT_SID=$1
shift
printf "\nFound parameter \"--sid\", Default S-ID is now set to $DEFAULT_SID\n\n"
fi
fi
if [ -z "$1" ]; then
printf "\nERROR : Parameter 1 should be a Master-Timer done-file\n\n"
exit 1
fi
[ "$TEST" = "yes" ] && EPGSEARCHDONE_FILE=$EPGSEARCHDONE_FILE.test || cp $EPGSEARCHDONE_FILE $EPGSEARCHDONE_FILE.bak
[ "$ASK_SID" = "yes" ] && ShowUsableSIDs
printf "Default S-ID: $DEFAULT_SID\n\n"
while read i; do AddRecToDone "$i" ; done <$1
if [ "$TEST" = "yes" ]; then
printf "\n\nTEST run !!!!\nNow take a look at the File $EPGSEARCHDONE_FILE to see if everything is OK.\n\n"
else
# Tell epgsearch that done-file was changed
echo "$SVDRPSEND PLUG epgsearch UPDD >/dev/null 2>&1" | at now >/dev/null 2>&1
fi
|