]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/support-scripts/settings-tester.pl
Enable strict throughout, clean up one more warning
[Evergreen.git] / Open-ILS / src / support-scripts / settings-tester.pl
1 #!/usr/bin/perl
2 # vim:noet:ts=4:
3 use strict;
4 use warnings;
5
6 BEGIN {
7         eval "use OpenSRF::Utils::Config;";
8         die "Please ensure that /openils/lib/perl5 is in your PERL5LIB environment variable.
9         You must run this script as the 'opensrf' user.\n" if ($@);
10         eval "use Error qw/:try/;";
11         die "Please install Error.pm.\n" if ($@);
12         eval "use UNIVERSAL::require;";
13         die "Please install the UNIVERSAL::require perl module.\n" if ($@);
14         eval "use Getopt::Long;";
15         die "Please install the Getopt::Long perl module.\n" if ($@);
16         eval "use Net::Domain;";
17         die "Please install the Net::Domain perl module.\n" if ($@);
18 }
19
20 my $output = '';
21 my $perloutput = '';
22 my $result;
23
24 my ($gather, $hostname, $core_config, $tmpdir) =
25         (0, Net::Domain::hostfqdn(), '/openils/conf/opensrf_core.xml', '/tmp/');
26
27 GetOptions(
28         'gather' => \$gather,
29         'hostname=s' => \$hostname,
30         'config_file=s' => \$core_config,
31         'tempdir=s' => \$tmpdir,
32 );
33
34 while (my $mod = <DATA>) {
35         chomp $mod;
36         my @list = split / /, $mod;
37
38         my $ok = 0;
39         for my $m (@list) {
40                 if ($m->use) {
41                         $ok++;
42                         my $version = $m->VERSION;
43                         print "$m version $version\n" if ($version);
44                 }
45         }
46
47         unless ($ok) {
48                 if (@list == 1) {
49                         warn "Please install $mod\n";
50                         $perloutput .= "Please install the $mod Perl module.\n";
51                 } else {
52                         warn "Please install one of the following modules: $mod\n";
53                         $perloutput .= "Please install one of the following modules: $mod\n";
54                 }
55         }
56                         
57 }
58
59 use OpenSRF::Transport::SlimJabber::Client;
60 use OpenSRF::Utils::SettingsParser;
61 use OpenSRF::Utils::SettingsClient;
62 use Data::Dumper;
63 use DBI;
64
65 (my $conf_dir = $core_config) =~ s#(.*)/.*#$1#;
66
67
68 OpenSRF::Utils::Config->load(config_file => $core_config);
69 my $conf = OpenSRF::Utils::Config->current;
70 my $j_username    = $conf->bootstrap->username;
71 my $j_password    = $conf->bootstrap->passwd;
72 my $j_port    = $conf->bootstrap->port;
73 my $j_domain    = $conf->bootstrap->domains->[0];
74 my $settings_config = $conf->bootstrap->settings_config;
75 my $logfile    = $conf->bootstrap->logfile;
76 (my $log_dir = $logfile) =~ s#(.*)/.*#$1#;
77
78
79 print "\nChecking Jabber connection\n";
80 # connect to jabber 
81 my $client = OpenSRF::Transport::SlimJabber::Client->new(
82     port => $j_port, 
83     username => $j_username, 
84     password => $j_password,
85     host => $j_domain,
86     resource => 'test123'
87 );
88
89
90 my $je = undef;
91 try {
92     unless($client->initialize()) {
93         $je = "* Unable to connect to jabber server $j_domain\n";
94         warn "* Unable to connect to jabber server $j_domain\n";
95     }
96 } catch Error with {
97     $je = "* Error connecting to jabber:\n" . shift() . "\n";
98     warn "* Error connecting to jabber:\n" . shift() . "\n";
99 };
100
101 print "* Jabber successfully connected\n" unless ($je);
102 $output .= ($je) ? $je : "* Jabber successfully connected\n";
103
104 my $xmlparser = XML::LibXML->new();
105 my $osrfxml = $xmlparser->parse_file($settings_config);
106
107 print "\nChecking database connections\n";
108 # Check database connections
109 my @databases = $osrfxml->findnodes('//database');
110 foreach my $database (@databases) {
111         my $db_name = $database->findvalue("./db");     
112         if (!$db_name) {
113                 $db_name = $database->findvalue("./name");      
114         }
115         my $db_host = $database->findvalue("./host");   
116         my $db_port = $database->findvalue("./port");   
117         my $db_user = $database->findvalue("./user");   
118         my $db_pw = $database->findvalue("./pw");       
119     if (!$db_pw && $database->parentNode->parentNode->nodeName eq 'reporter') {
120         $db_pw = $database->findvalue("./password");
121         warn "* WARNING: Deprecated <password> element used for the <reporter> entry.  ".
122             "Please use <pw> instead.\n" if ($db_pw);
123     }
124
125         my $osrf_xpath;
126         foreach my $node ($database->findnodes("ancestor::node()")) {
127                 next unless $node->nodeType == XML::LibXML::XML_ELEMENT_NODE;
128                 $osrf_xpath .= "/" . $node->nodeName;
129         }
130         $output .= test_db_connect($db_name, $db_host, $db_port, $db_user, $db_pw, $osrf_xpath);
131 }
132
133 print "\nChecking database drivers to ensure <driver> matches <language>\n";
134 # Check database drivers
135 # if language eq 'C', driver eq 'pgsql'
136 # if language eq 'perl', driver eq 'Pg'
137 my @drivers = $osrfxml->findnodes('//driver');
138 foreach my $driver_node (@drivers) {
139         my $language;
140         my $driver_xpath;
141         my @driver_xpath_nodes;
142         foreach my $node ($driver_node->findnodes("ancestor::node()")) {
143                 next unless $node->nodeType == XML::LibXML::XML_ELEMENT_NODE;
144                 $driver_xpath .= "/" . $node->nodeName;
145                 push @driver_xpath_nodes, $node->nodeName;
146         }
147         my $lang_xpath;
148         my $driver = $driver_node->findvalue("child::text()");
149         while (pop(@driver_xpath_nodes) && scalar(@driver_xpath_nodes) > 0 && !$language) {
150                 $lang_xpath = "/" . join('/', @driver_xpath_nodes) . "/language";
151                 my @lang_nodes = $osrfxml->findnodes($lang_xpath);
152                 next unless scalar(@lang_nodes > 0);
153                 $language = $lang_nodes[0]->findvalue("child::text()");
154         }
155         if ($driver eq "pgsql") {
156                 if ($language eq "C") {
157                         $result = "* OK: $driver language is $language in $lang_xpath\n";
158                 } else {
159                         $result = "* ERROR: $driver language is $language in $lang_xpath\n";
160                         warn $result;
161                 }
162         } elsif ($driver eq "Pg") {
163                 if ($driver_xpath =~ /reporter/) {
164                         $result = "* OK: $driver language is undefined for reporter base configuration\n";
165                 } elsif ($language eq "perl") {
166                         $result = "* OK: $driver language is $language in $lang_xpath\n";
167                 } else {
168                         $result = "* ERROR: $driver language is $language in $lang_xpath\n";
169                         warn $result;
170                 }
171         } else {
172                 $result = "* ERROR: Unknown driver $driver in $driver_xpath\n";
173                 warn $result;
174         }
175         print $result;
176         $output .= $result;
177 }
178
179 print "\nChecking libdbi and libdbi-drivers\n";
180 $output .= check_libdbd();
181
182 print "\nChecking hostname\n";
183 my @hosts = $osrfxml->findnodes('/opensrf/hosts/*');
184 foreach my $host (@hosts) {
185         next unless $host->nodeType == XML::LibXML::XML_ELEMENT_NODE;
186         my $osrfhost = $host->nodeName;
187         my $he;
188         if ($osrfhost ne $hostname && $osrfhost ne "localhost") {
189                 $result = " * ERROR: expected hostname '$hostname', found '$osrfhost' in <hosts> section of opensrf.xml\n";
190                 warn $result;
191                 $he = 1;
192         } elsif ($osrfhost eq "localhost") {
193                 $result = " * OK: found hostname 'localhost' in <hosts> section of opensrf.xml\n";
194         } else {
195                 $result = " * OK: found hostname '$hostname' in <hosts> section of opensrf.xml\n";
196         }
197         print $result unless $he;
198         $output .= $result;
199 }
200
201
202 if ($gather) {
203         get_debug_info( $tmpdir, $log_dir, $conf_dir, $perloutput, $output );
204 }
205
206 sub test_db_connect {
207         my ($db_name, $db_host, $db_port, $db_user, $db_pw, $osrf_xpath) = @_;
208
209         my $dsn = "dbi:Pg:dbname=$db_name;host=$db_host;port=$db_port";
210         my $de = undef;
211         my ($dbh, $encoding);
212         try {
213                 $dbh = DBI->connect($dsn, $db_user, $db_pw);
214                 unless($dbh) {
215                         $de = "* $osrf_xpath :: Unable to connect to database $dsn, user=$db_user, password=$db_pw\n";
216                         warn "* $osrf_xpath :: Unable to connect to database $dsn, user=$db_user, password=$db_pw\n";
217                 }
218                 my $sth = $dbh->prepare("show server_encoding");
219                 $sth->execute;
220                 $sth->bind_col(1, \$encoding);
221                 $sth->fetch;
222                 $sth->finish;
223                 $dbh->disconnect;
224         } catch Error with {
225                 $de = "* $osrf_xpath :: Unable to connect to database $dsn, user=$db_user, password=$db_pw\n" . shift() . "\n";
226                 warn "* $osrf_xpath :: Unable to connect to database $dsn, user=$db_user, password=$db_pw\n" . shift() . "\n";
227         };
228         print "* $osrf_xpath :: Successfully connected to database $dsn\n" unless ($de);
229         if ($encoding !~ m/(utf-?8|unicode)/i) {
230                 $de .= "* ERROR: $osrf_xpath :: Database $dsn has encoding $encoding instead of UTF8 or UNICODE.\n";
231                 warn "* ERROR: $osrf_xpath :: Database $dsn has encoding $encoding instead of UTF8 or UNICODE.\n";
232         } else {
233                 print "  * Database has the expected server encoding $encoding.\n";
234         }
235         return ($de) ? $de : "* $osrf_xpath :: Successfully connected to database $dsn with encoding $encoding\n";
236
237 }
238
239 sub check_libdbd {
240         my $results = '';
241         my @location = `locate libdbdpgsql.so |grep -v home`; # simple(ton) attempt to filter out build versions
242         if (scalar(@location) > 1) {
243
244                 my $res = "Found more than one location for libdbdpgsql.so.
245   We have found that system packages don't link against libdbi.so;
246   therefore, we strongly recommend compiling libdbi and libdbi-drivers from source.\n";
247                 $results .= $res;
248                 print $res;
249         }
250         foreach my $loc (@location) {
251                 my @linkage = `ldd $loc`;
252                 if (!grep(/libdbi/, @linkage)) {
253                         my $res = "$loc was not linked against libdbi - you probably need to compile libdbi-drivers from source with the --enable-libdbi configure switch.\n";
254                         $results .= $res;
255                         print $res;
256                 }
257         }
258         return $results;
259 }
260
261 sub get_debug_info {
262   my $temp_dir = shift; # place we can write files
263   my $log = shift; # location of the log directory
264   my $config = shift; # location of the config files
265   my $perl_test = shift; # output from the Perl prereq testing
266   my $config_test = shift; # output from the config file testing
267
268   my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
269   my $oils_time = sprintf("%04d-%02d-%02d_%02dh-%02d-%02d", $year+1900, $mon, $mday, $hour, $min, $sec);
270   
271   # evil approach that requires no other Perl dependencies
272   chdir($temp_dir);
273   my $oils_debug_dir = "$temp_dir/oils_$oils_time";
274
275   # Replace with something Perlish
276   mkdir($oils_debug_dir) or die $!;
277
278   # Replace with File::Copy
279   system("cp $log/*log $oils_debug_dir");
280
281   # Passwords will go through in the clear for now
282   system("cp $config/*xml $oils_debug_dir");
283
284   # Get Perl output
285   open(FH, ">", "$oils_debug_dir/perl_test.out") or die $!;
286   print FH $perl_test;
287   close(FH);
288
289   # Get XML output
290   open(FH, ">", "$oils_debug_dir/xml_test.out") or die $!;
291   print FH $config_test;
292   close(FH);
293   
294   # Tar this up - does any system not have tar?
295   system("tar czf oils_$oils_time.tar.gz oils_$oils_time");
296
297   # Clean up after ourselves, somewhat dangerously
298   system("rm -fr $oils_debug_dir");
299
300   print "Wrote your debug information to $temp_dir/oils_$oils_time.tar.gz.\n";
301 }
302
303 __DATA__
304 LWP::UserAgent
305 XML::LibXML
306 XML::LibXSLT
307 Net::Server::PreFork
308 Cache::Memcached
309 Class::DBI
310 Class::DBI::AbstractSearch
311 Template
312 DBD::Pg
313 Net::Z3950 Net::Z3950::ZOOM
314 MARC::Record
315 MARC::Charset
316 MARC::File::XML
317 Text::Aspell
318 CGI
319 DateTime::TimeZone
320 DateTime
321 DateTime::Format::ISO8601
322 Unix::Syslog
323 GD::Graph3d
324 JavaScript::SpiderMonkey
325 Log::Log4perl
326 Email::Send
327 Text::CSV
328 Text::CSV_XS
329 Spreadsheet::WriteExcel::Big
330 Tie::IxHash