-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlconfig.pl
446 lines (336 loc) · 12.9 KB
/
sqlconfig.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
#!/usr/bin/perl
#
# Personal ReplayGuide Configuration Utility
# by Lee Thompson <thompsonl@logh.net>
# with bits by Kanji T. Bates
#
#------------------------------------------------------------------------------------
# This file is part of Personal ReplayGuide (C) 2004 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|SQL Configure|1|0|14|Lee Thompson,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
#-----------------------------------------------------------------------------------
$debug = 0; # Debug Messages
#-----------------------------------------------------------------------------------
# Define Options
#-----------------------------------------------------------------------------------
$allow_create_database = 1;
$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;
#----------------------------------------------------------------------------------
# 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;
#----------------------------------------------------------------
# Set Defaults
#----------------------------------------------------------------
$inp_scriptdir = "";
#----------------------------------------------------------------
# Start
#----------------------------------------------------------------
writeDebug("Entering Interactive Mode");
print "\nWelcome to the $program_title configuration utility.\n";
#----------------------------------------------------------------
# Warn about DBMS packages that do not support ALTER TABLE
#----------------------------------------------------------------
if ($db_driver eq "SQLite") {
print "\n";
print "Warning! $db_driver does not support commands needed to update table so\n";
print " any data in any tables involved in an upgrade will be lost.\n";
print "\n";
print " $db_driver will automatically create the database if it does not exist.\n";
$allow_create_database = 0;
}
if ($db_driver eq "ODBC") {
# $allow_create_database = 0;
}
#----------------------------------------------------------------
# Gather Information
#----------------------------------------------------------------
$inp_dortv = 1;
$inp_createdb = 0;
$inp_isupgrade = "no";
if ($inp_dortv) {
$choiceok = 0;
do {
print "\nIs this an upgrade?\n[default: no] > ";
$inp_isupgrade = <STDIN>;
$inp_isupgrade =~ s/\r//g; # Eat LF
$inp_isupgrade =~ s/\n//g; # Eat CR
if ($inp_isupgrade =~ /Y/i) {
$inp_isupgrade = 1;
}else{
$inp_isupgrade = 0;
}
if (($inp_isupgrade > -1) && ($inp_isupgrade < 2)) {
$choiceok = 1;
}
} while ($choiceok < 1);
if ((!$inp_isupgrade) && ($allow_create_database)) {
$choiceok = 0;
do {
print "\nCreate the $db_name database?\n[default: no] > ";
$inp_createdb = <STDIN>;
$inp_createdb =~ s/\r//g; # Eat LF
$inp_createdb =~ s/\n//g; # Eat CR
if ($inp_createdb =~ /Y/i) {
$inp_createdb = 1;
}
if (($inp_createdb > -1) && ($inp_createdb < 2)) {
$choiceok = 1;
}
} while ($choiceok < 1);
}
}
print "\n\n";
writeDebug("Interactive Mode Completed");
writeDebug("Option Selected: isupgrade: $inp_isupgrade");
if ($allow_create_database) {
writeDebug("Option Selected: createdb: $inp_createdb");
}
#-------------------------------------------------------------------
# Create Database (Untested)
#-------------------------------------------------------------------
if ($inp_createdb) {
writeDebug("Creating Database ($db_name)");
$retcode = CreateDatabase();
&InitDSN;
$db_link = &StartDSN;
$sth = sqlStmt($db_link,"CREATE DATABASE $db_name;");
endDSN($sth,$db_link);
}
&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());
writeDebug("Make sure $db_name database or ODBC DSN exists and check prg.conf [database] section!");
abend("Could not establish database connection!");
}
#-------------------------------------------------------------------
# Create Tables
#-------------------------------------------------------------------
if (!$inp_isupgrade) {
$sql_scriptname = "tvlistings";
$sql_type = "";
if ($db_driver eq "ODBC") {
$sql_type = "mssql";
}
if ($db_driver eq "mysql") {
$sql_type = "mysql";
}
if ($db_driver eq "SQLite") {
$sql_type = "sqlite";
}
if ($sql_type eq "") {
writeDebug("Error! $db_driver has not been tested with $program_title. You will need to configure your database manually.");
abend("Unsupported Driver");
}
$sql_scriptname .= "_$sql_type";
$sql_scriptname .= ".sql";
writeDebug("Creating Tables ($sql_scriptname)");
$retcode = runSQLScript($sql_scriptname);
if ($retcode) {
writeDebug("Tables created successfully");
}else{
my $lastsqlerror = &GetLastSQLError();
my $lastsqlstmt = &GetLastSQLStmt();
writeDebug("Attempt to execute $sql_scriptname failed: $lastsqlerror ($lastsqlstmt)");
abend("Aborted");
}
}
#-------------------------------------------------------------------
# Update Tables
#-------------------------------------------------------------------
if ($inp_isupgrade) {
$sql_scriptname = "update";
$sql_type = "";
if ($db_driver eq "ODBC") {
$sql_type = "mssql";
}
if ($db_driver eq "mysql") {
$sql_type = "mysql";
}
if ($db_driver eq "SQLite") {
$sql_type = "sqlite";
writeDebug("Warning! SQLite does not support ALTER TABLE. Will DROP TABLE first.");
}
if ($sql_type eq "") {
writeDebug("Error! $db_driver has not been tested with $program_title. You will need to configure your database manually.");
abend("Unsupported Driver");
}
$sql_scriptname .= "_$sql_type";
$sql_scriptname .= ".sql";
writeDebug("Updating Tables ($sql_scriptname)");
$retcode = runSQLScript($sql_scriptname);
writeDebug("runSQLScript returned $retcode");
if ($retcode) {
writeDebug("Tables updated successfully");
}else{
my $lastsqlerror = &GetLastSQLError();
my $lastsqlstmt = &GetLastSQLStmt();
writeDebug("Attempt to execute $sql_scriptname failed: $lastsqlerror ($lastsqlstmt)");
abend("Aborted");
}
}
#-------------------------------------------------------------------
# Finish Up
#-------------------------------------------------------------------
$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("********************************************************");
exit(1);