-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.pl
457 lines (356 loc) · 13.3 KB
/
configure.pl
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
#!/usr/bin/perl
#
# Personal ReplayGuide Configuration Utility
# by Lee Thompson <[email protected]>
# with bits by Kanji T. Bates
# $Id: configure.pl,v 1.6 2003/07/19 13:33:44 pvanbaren Exp $
#
#------------------------------------------------------------------------------------
# This file is part of Personal ReplayGuide (C) 2003 by Lee Thompson
#
# Personal ReplayGuide is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Personal ReplayGuide is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Personal ReplayGuide; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#-----------------------------------------------------------------------------------
use POSIX qw( strftime getcwd );
use English;
use Time::Local;
require LWP::Simple;
require LWP::UserAgent;
require HTTP::Request;
require HTTP::Headers;
my $_version = "Personal ReplayGuide|ReplayTV Configure|1|0|17|Lee Thompson,Philip Van Baren,Kanji T. Bates";
#------------------------------------------------------------------------------------
# Determine Current Directory
#------------------------------------------------------------------------------------
$current_dir = getcwd;
$current_dir .= "/";
#------------------------------------------------------------------------------------
# Get script pathname, unfortunately on Apache on Win32 $0 is not reliable since
# for some reason it gets changed to an 8.3 pathname.
#
# IIS and Apache both provide long filename pathnames in environment variables so
# if it's an 8.3 we look there. If we don't find it, we just tough it out.
#------------------------------------------------------------------------------------
$script_pathname = $0;
if ($0 =~ /\~/) {
if (length($ENV{SCRIPT_FILENAME}) > 0 ) {
$script_pathname = $ENV{SCRIPT_FILENAME};
}
if (length($ENV{PATH_TRANSLATED}) > 0 ) {
$script_pathname = $ENV{PATH_TRANSLATED};
}
}
#------------------------------------------------------------------------------------
# Get the path that the script is in
#------------------------------------------------------------------------------------
(my $path,my $basename) = $script_pathname =~ m|^(.*[/\\])([^/\\]+?)$|;
#------------------------------------------------------------------------------------
# PRG_HOME is an override environment variable
#------------------------------------------------------------------------------------
if (length($ENV{PRG_HOME}) > 0) {
$path = $ENV{PRG_HOME};
}
#------------------------------------------------------------------------------------
# Normalize the path
#------------------------------------------------------------------------------------
$path =~ s/\\/\//g;
#------------------------------------------------------------------------------------
# If the current working directory is not where we need to be, change paths.
#------------------------------------------------------------------------------------
$changed_path = -1;
if (($current_dir ne $path) && ($path ne "")) {
if (chdir $path) {
$changed_path = 1;
}else{
$changed_path = 0;
}
}
#------------------------------------------------------------------------------------
# Load Libraries
#------------------------------------------------------------------------------------
require 'rg_config.pl'; # Load config functions
require 'rg_common.pl'; # Load common functions
require 'rg_database.pl'; # Load database functions
require 'rg_info.pl'; # Load database config
#------------------------------------------------------------------------------------
# Set up module identification
#------------------------------------------------------------------------------------
my $module_name = "";
(my $debug_package, my $debug_filename, my $debug_line, my $debug_subroutine, my $debug_hasargs, my $debug_wantarray, my $debug_evaltext, my $debug_isrequire) = caller(0);
if (length($debug_evaltext) > 0) {
$module_name = $debug_evaltext;
}else{
if ($path eq "") {
$basename = $script_pathname;
}
$module_name = $basename;
}
$prg_module{$module_name} = $_version;
#-----------------------------------------------------------------------------------
# Debug Options
#-----------------------------------------------------------------------------------
$do_not_drop_rows = 0; # Controls of replayunits gets replaced
$do_not_insert = 0; # Skip the DB insert
#-----------------------------------------------------------------------------------
# Define Options
#-----------------------------------------------------------------------------------
$debug = 0; # Debug Messages
$configfile = "configure.conf"; # This is optional
$configstatus = getConfig($configfile); # Read Configuration
$verbose = 1;
#-----------------------------------------------------------------------------------
# Set Constants
#-----------------------------------------------------------------------------------
$null = "";
(my $parent,my $desc,my $major,my $minor,my $build,my $authors) = parseModuleData($prg_module{$module_name});
$program_title = $parent;
$program_module = $desc;
$program_author = buildMultiWordList($authors);
$program_version = "$major.$minor";
$program_build = $build;
$now = strftime( "%Y-%m-%d", localtime ) . " " . strftime( "%H:%M:%S", localtime );
$started = time;
#----------------------------------------------------------------------------------
# Check to see if this is being run from the console
#----------------------------------------------------------------------------------
$RemoteAddress = $ENV{'REMOTE_ADDR'};
if ($RemoteAddress eq $null) {
$RemoteAddress = "127.0.0.1";
$remotemode = 0;
}else{
$remotemode = 1;
}
#-----------------------------------------------------------------------------------
# Display Header
#-----------------------------------------------------------------------------------
writeDebug("********************************************************");
writeDebug("$program_title\:$program_module v$program_version (Build $program_build)");
writeDebug("Running as $script_pathname with PID $$");
writeDebug("Remote Address: $RemoteAddress");
if ($verbose) {
writeDebug("Console Output: Enabled");
}else{
writeDebug("Console Output: Disabled");
}
identifyLoadedModules();
if ($debug) {
&writeOutput("Debug Messages are ON");
}
#-------------------------------------------------------------------
# Check to see if the IP Address in $RemoteAddress has access to RTV
#-------------------------------------------------------------------
if (hasAccess($RemoteAddress)) {
$remoteaccess = 0; # Disabled
}else{
$remoteaccess = 0;
}
if (($remotemode) && (!$remoteaccess)) {
&InitializeDisplay;
abend("$program_module runs in console mode only");
}else{
if ($remotemode) {
&InitializeDisplay;
}
}
#-------------------------------------------------------------------
$now = strftime( "%Y-%m-%d", localtime ) . " " . strftime( "%H:%M:%S", localtime );
$started = time;
writeDebug("Job started at $now");
#-------------------------------------------------------------------
# Set up Database
#-------------------------------------------------------------------
&InitDB;
&InitDSN;
#-------------------------------------------------------------------
# Start Database
#-------------------------------------------------------------------
$DSNLink = &StartDSN;
if ($DSNLink ne $null) {
writeDebug("Database Connection Established to $DATASOURCE{DSN} using handle $DSNLink");
}else{
writeDebug("Attempt to Connect to $DATASOURCE{DSN} Failed: " . &GetLastSQLError());
abend("Could not establish database connection!");
}
#----------------------------------------------------------------
# Set Defaults
#----------------------------------------------------------------
$inp_scriptdir = "";
#----------------------------------------------------------------
# Start
#----------------------------------------------------------------
writeDebug("Entering Interactive Mode");
print "\nWelcome to the $program_title configuration utility.\n";
#----------------------------------------------------------------
# Gather Information
#----------------------------------------------------------------
$inp_dortv = 1;
if ($inp_dortv) {
$choiceok = 0;
do {
print "\nHow many ReplayTV's do you want to use with $program_title?\n[default: 1] > ";
$inp_replaynum = int <STDIN>;
if ($inp_replaynum == 0) {
$inp_replaynum = 1;
}
if (($inp_replaynum > 0) && ($inp_replaynum < 99)) {
$choiceok = 1;
}
} while ($choiceok < 1);
$ctr = 1;
do {
print "\n\nReplay Number $ctr:\n";
$choiceok = 0;
do {
if ($ctr == 1) {
print "(This will be used as the default unit)\n";
}
print "\nWhat is the FQDN or IP address of this unit [eg. 192.168.0.1]?\n> ";
$inp_unitip = <STDIN>;
$inp_unitip =~ s/\r//g; # Eat LF
$inp_unitip =~ s/\n//g; # Eat CR
if (length($inp_unitip) > 0) {
$choiceok = 1;
}
} while ($choiceok < 1);
print "\nWhat http port does it use [default: 80]?\n> ";
$inp_unitport = <STDIN>;
$inp_unitport =~ s/\r//g; # Eat LF
$inp_unitport =~ s/\n//g; # Eat CR
if (length($inp_unitport) > 0) {
$inp_unitport = int $inp_unitport;
} else {
$inp_unitport = 80;
}
$choiceok = 0;
do {
print "\nWhat is the network name of this unit [eg. Bedroom]?\n> ";
$inp_unitname = <STDIN>;
$inp_unitname =~ s/\r//g; # Eat LF
$inp_unitname =~ s/\n//g; # Eat CR
if (length($inp_unitname) > 0) {
$choiceok = 1;
}
} while ($choiceok < 1);
$choiceok = 0;
do {
print "\nWhat quality level would you like (S)tandard, M)edium, H)igh)?\n[default: S] > ";
$inp_quality = uc <STDIN>;
$inp_quality =~ s/\r//g; # Eat LF
$inp_quality =~ s/\n//g; # Eat CR
if (length($inp_quality) < 1) {
$inp_quality = 2;
}
if ($inp_quality =~ 'S') {
$inp_quality = 2;
}
if ($inp_quality =~ 'M') {
$inp_quality = 1;
}
if ($inp_quality =~ 'H') {
$inp_quality = 0;
}
if (($inp_quality > -1) && ($inp_quality < 3)) {
$choiceok = 1;
}
} while ($choiceok < 1);
$choiceok = 0;
do {
print "\nHow many episodes would you like to keep?\n[default: 1] > ";
$inp_keep = int <STDIN>;
if ($inp_keep == 0) {
$inp_keep = int 1;
}
if (($inp_keep > 0) && ($inp_keep < 10)) {
$choiceok = 1;
}
} while ($choiceok < 1);
if ($ctr == 1) {
$replayunits = "$inp_unitip,$inp_unitport,$inp_unitname,$inp_quality,$inp_keep";
$defaultreplaytv = $inp_unitip;
}else{
$replayunits .= ";$inp_unitip,$inp_unitport,$inp_unitname,$inp_quality,$inp_keep";
}
$ctr++;
} while ($ctr < $inp_replaynum + 1);
}
print "\n";
writeDebug("Interactive Mode Completed");
#-------------------------------------------------------------------
# Clean ReplayTV Database
#-------------------------------------------------------------------
if ($do_not_drop_rows) {
writeDebug("Skipping Row Delete");
}else{
writeDebug("Purging old data from database");
$Stmt = "DELETE FROM $db_table_replayunits;";
if (sqlStmt($DSNLink,$Stmt)) {
writeDebug("Table $db_table_replayunits purged");
}else{
writeDebug("Failed: " . &GetLastSQLError() . " (" &GetLastSQLStmt() . ")");
abend("Failed to purge table $db_table_replayunits");
}
writeDebug("Purge Complete");
}
#-------------------------------------------------------------------
# Insert Rows
#-------------------------------------------------------------------
$rows = 0;
if ($do_not_insert) {
writeDebug("Database Insert Disabled");
}
for ( split /;/, $replayunits ) {
/;/;
($rtv_unit,$rtv_port,$rtv_label,$rtv_quality,$rtv_keep) = split(',', $_, 5);
if ($do_not_insert) {
writeDebug(">> $rtv_label ($rtv_unit:$rtv_port) [$rtv_quality, $rtv_keep]");
}else{
if (insertRTVRow($rtv_label,$rtv_unit,$rtv_port,$rtv_quality,$rtv_keep)) {
$rows++;
}
}
}
writeDebug("$rows added to $db_table_replayunits table.");
$finished = time;
$runtime = $finished - $started;
$now = strftime( "%Y-%m-%d", localtime ) . " " . strftime( "%H:%M:%S", localtime );
writeDebug("Terminating Database Connection from $DATASOURCE{DSN} ($DSNLink)");
endDSN("",$DSNLink);
writeDebug("Job finished at $now ($runtime seconds)");
writeDebug("********************************************************");
#-------------------------------------------------------------------
sub insertRTVRow {
#
# Inserts a Row Into the ReplayUnits DB
#
#-----------------------------------------------------------------------------
my $replayname = shift;
my $replayaddress = shift;
my $replayport = int shift;
my $replayquality = int shift;
my $replaykeep = int shift;
my $FieldNames = "";
my $FieldValues = "";
$FieldNames = $null;
$FieldNames .= "replayname, replayaddress, replayport, ";
$FieldNames .= "defaultquality, defaultkeep, lastsnapshot";
$FieldValues = $null;
$FieldValues .= "'$replayname', '$replayaddress', $replayport, ";
$FieldValues .= "$replayquality, $replaykeep, 0";
$Stmt = "INSERT INTO $db_table_replayunits ($FieldNames) VALUES ($FieldValues);";
if (sqlStmt($DSNLink,$Stmt)) {
return 1;
}else{
return 0;
}
}