source: main/trunk/greenstone2/common-src/cgi-bin/gsdlCGI.pm@ 30624

Last change on this file since 30624 was 30624, checked in by ak19, 8 years ago

Using the new FileUtils method for filename_cat and rm_r instead of the old versions.

  • Property svn:keywords set to Author Date Id Revision
File size: 23.1 KB
RevLine 
[7956]1package gsdlCGI;
2
[16467]3# This file merges Michael Dewsnip's gsdlCGI.pm for GS2 and Quan Qiu's gsdlCGI4gs3.pm (GS3)
[14024]4
[16467]5use strict;
6no strict 'subs';
7no strict 'refs'; # allow filehandles to be variables and viceversa
[14024]8
[7956]9use CGI;
[10206]10use Cwd;
[19141]11use MIME::Base64;
[7956]12
[16467]13@gsdlCGI::ISA = ( 'CGI' );
[7956]14
[23468]15our $server_software;
16our $server_version;
17
18sub BEGIN {
19 $server_software = $ENV{'SERVER_SOFTWARE'};
20
21 if (defined $server_software) {
22 if ($server_software =~ m/^Microsoft-IIS\/(.*)$/) {
23 $server_version = $1;
24 }
25 }
26}
27
28
[23088]29sub prenew {
30 my $class = shift @_;
31
32 my $version;
33 if (-e "gsdl3site.cfg") {
34 $version = 3;
35 } else {
36 $version = 2;
37 }
38
39 my $self = {};
40
41 if ($version == 2) {
42 $self->{'site_filename'} = "gsdlsite.cfg";
43 $self->{'greenstone_version'} = 2;
44 }
45 elsif ($version == 3) {
46 $self->{'site_filename'} = "gsdl3site.cfg";
47 $self->{'greenstone_version'} = 3;
48 }
49
50 my $bself = bless $self, $class;
51
52 $bself->setup_gsdl();
53
54 return $bself;
55}
56
57
[7956]58sub new {
59 my $class = shift @_;
[16467]60
[23196]61 my $self;
[16467]62
63 # We'll determine the correct config file in this constructor itself
64 # and use it to determine the Greenstone server's version.
65 # Perhaps later, another test can be used for finding out what version
66 # of the Greenstone server we are working with.
67 my $version;
68 if (-e "gsdl3site.cfg") {
69 $version = 3;
70 } else {
71 $version = 2;
72 }
[7956]73
[23196]74 # POST that is URL-encoded (like a GET) is a line that needs to be read from STDIN
75 if ((defined $ENV{'CONTENT_TYPE'}) && ($ENV{'CONTENT_TYPE'} =~ m/form-urlencoded/)) {
76 my $line = <STDIN>;
77 if ((defined $line) && ($line ne "")) {
78 $self = new CGI($line);
79 }
80 }
[16467]81
[23196]82 # If the conditions above did not hold, then self=new CGI(@_)
83 if (!defined $self) {
84 # It's a GET, or else a POST with Multi-part body
85 $self = new CGI(@_);
86 }
[7956]87
[23070]88
[16467]89 if ($version == 2) {
90 $self->{'site_filename'} = "gsdlsite.cfg";
91 $self->{'greenstone_version'} = 2;
92 }
93 elsif ($version == 3) {
94 $self->{'site_filename'} = "gsdl3site.cfg";
95 $self->{'greenstone_version'} = 3;
96 }
97
[10583]98 return bless $self, $class;
99}
100
101
102sub parse_cgi_args
103{
104 my $self = shift @_;
[7956]105 my $xml = (defined $self->param("xml")) ? 1 : 0;
106
107 $self->{'xml'} = $xml;
108
109 my @var_names = $self->param;
110 my @arg_list = ();
111 foreach my $n ( @var_names ) {
112 my $arg = "$n=";
113 my $val = $self->param($n);
114 $arg .= $val if (defined $val);
115 push(@arg_list,$arg);
116 }
117
118 $self->{'args'} = join("&",@arg_list);
119}
120
121
122sub clean_param
123{
124 my $self = shift @_;
125 my ($param) = @_;
126
127 my $val = $self->SUPER::param($param);
128 $val =~ s/[\r\n]+$// if (defined $val);
129
130 return $val;
131}
132
133sub safe_val
134{
135 my $self = shift @_;
136 my ($val) = @_;
137
[20573]138 # convert any encoded entities to true form
139 $val =~ s/&amp;/&/osg;
140 $val =~ s/&lt;/</osg;
141 $val =~ s/&gt;/>/osg;
142 $val =~ s/&quot;/\"/osg;
143 $val =~ s/&nbsp;/ /osg;
144
145
[7956]146 # ensure only alpha-numeric plus a few other special chars remain
147
[9941]148 $val =~ s/[^[:alnum:]@\.\/\- :_]//g if (defined $val);
[7956]149
150 return $val;
151}
152
[16467]153sub generate_message
154{
155 my $self = shift @_;
156 my ($message) = @_;
[23756]157
158
159 binmode(STDOUT,":utf8");
160 print STDOUT "Content-type:text/plain\n\n$message";
[16467]161}
[7956]162
163sub generate_error
164{
165 my $self = shift @_;
166 my ($mess) = @_;
167
168 my $xml = $self->{'xml'};
169
170 my $full_mess;
171 my $args = $self->{'args'};
172
173 if ($xml) {
[13167]174 # Make $args XML safe
175 my $args_xml_safe = $args;
176 $args_xml_safe =~ s/&/&amp;/g;
177
[7956]178 $full_mess = "<Error>\n";
179 $full_mess .= " $mess\n";
[13167]180 $full_mess .= " CGI args were: $args_xml_safe\n";
[7956]181 $full_mess .= "</Error>\n";
182 }
183 else {
[10565]184 $full_mess = "ERROR: $mess\n ($args)\n";
[7956]185 }
186
[16467]187 $self->generate_message($full_mess);
[7956]188
[16467]189 die $full_mess;
[7956]190}
191
[10206]192sub generate_warning
193{
194 my $self = shift @_;
195 my ($mess) = @_;
196
197 my $xml = $self->{'xml'};
[7956]198
[10206]199 my $full_mess;
200 my $args = $self->{'args'};
201
202 if ($xml) {
[13167]203 # Make $args XML safe
204 my $args_xml_safe = $args;
205 $args_xml_safe =~ s/&/&amp;/g;
206
[10206]207 $full_mess = "<Warning>\n";
208 $full_mess .= " $mess\n";
[13167]209 $full_mess .= " CGI args were: $args_xml_safe\n";
[10206]210 $full_mess .= "</Warning>\n";
211 }
212 else {
213 $full_mess = "Warning: $mess ($args)\n";
214 }
215
[16467]216 $self->generate_message($full_mess);
[10206]217
218 print STDERR $full_mess;
219}
220
221
[7956]222sub generate_ok_message
223{
224 my $self = shift @_;
225 my ($mess) = @_;
226
227 my $xml = $self->{'xml'};
228
229 my $full_mess;
230
231 if ($xml) {
232 $full_mess = "<Accepted>\n";
233 $full_mess .= " $mess\n";
234 $full_mess .= "</Accepted>\n";
235 }
236 else {
[20573]237 $full_mess = "$mess";
[7956]238 }
[16467]239
240 $self->generate_message($full_mess);
[7956]241}
242
243
244
245sub get_config_info {
246 my $self = shift @_;
[16467]247 my ($infotype, $optional) = @_;
[7956]248
[16467]249 my $site_filename = $self->{'site_filename'};
[7956]250 open (FILEIN, "<$site_filename")
[16467]251 || $self->generate_error("Could not open $site_filename");
[7956]252
253 my $config_content = "";
254 while(defined (my $line = <FILEIN>)) {
255 $config_content .= $line;
256 }
257 close(FILEIN);
258
[10565]259 my ($loc) = ($config_content =~ m/^$infotype\s+((\".+\")|(\S+))\s*\n/m);
[16467]260 $loc =~ s/\"//g if defined $loc;
[7956]261
262 if ((!defined $loc) || ($loc =~ m/^\s*$/)) {
[16467]263 if((!defined $optional) || (!$optional)) {
264 $self->generate_error("$infotype is not set in $site_filename");
265 }
[7956]266 }
267
268 return $loc;
269}
270
[16467]271sub get_gsdl3_src_home{
272 my $self = shift @_;
273 if (defined $self->{'gsdl3srchome'}) {
274 return $self->{'gsdl3srchome'};
275 }
[10206]276
[16467]277 my $gsdl3srchome = $self->get_config_info("gsdl3srchome");
278
279 if(defined $gsdl3srchome) {
280 $gsdl3srchome =~ s/(\/|\\)$//; # remove trailing slash
281 }
282 $self->{'gsdl3srchome'} = $gsdl3srchome;
283
284 return $gsdl3srchome;
285}
286
287
[9941]288sub get_gsdl_home {
289 my $self = shift @_;
[10206]290
291 if (defined $self->{'gsdlhome'}) {
292 return $self->{'gsdlhome'};
293 }
[7956]294
[9941]295 my $gsdlhome = $self->get_config_info("gsdlhome");
[7956]296
[10206]297 $gsdlhome =~ s/(\/|\\)$//; # remove trailing slash
298
299 $self->{'gsdlhome'} = $gsdlhome;
300
[9941]301 return $gsdlhome;
302}
303
[16467]304sub get_gsdl3_home {
305 my $self = shift @_;
306 my ($optional) = @_;
307
308 if (defined $self->{'gsdl3home'}) {
309 return $self->{'gsdl3home'};
310 }
311
312 my $gsdl3home = $self->get_config_info("gsdl3home", $optional);
313
314 if(defined $gsdl3home) {
315 $gsdl3home =~ s/(\/|\\)$//; # remove trailing slash
316 $self->{'gsdl3home'} = $gsdl3home;
317 }
318 return $gsdl3home;
319}
320
321sub get_java_home {
322 my $self = shift @_;
323 my ($optional) = @_;
324
325 if (defined $self->{'javahome'}) {
326 return $self->{'javahome'};
327 }
328
329 my $javahome = $self->get_config_info("javahome", $optional);
330 if(defined $javahome) {
331 $javahome =~ s/(\/|\\)$//; # remove trailing slash
332 $self->{'javahome'} = $javahome;
333 }
334 return $javahome;
335}
336
337sub get_perl_path {
338 my $self = shift @_;
[16509]339 my ($optional) = @_;
[16467]340
341 if (defined $self->{'perlpath'}) {
342 return $self->{'perlpath'};
343 }
344
[16509]345 my $perlpath = $self->get_config_info("perlpath", $optional);
[16467]346
347 if(defined $perlpath) {
348 $perlpath =~ s/(\/|\\)$//; # remove trailing slash
349 $self->{'perlpath'} = $perlpath;
350 }
351 return $perlpath;
352}
353
[10206]354sub get_gsdl_os {
[7956]355 my $self = shift @_;
[10206]356
357 my $os = $^O;
[7956]358
[10206]359 if ($os =~ m/linux/i) {
360 return "linux";
361 }
[16467]362 elsif ($os =~ m/mswin/i) {
[10206]363 return "windows";
364 }
[16467]365 elsif ($os =~ m/macos/i) {
[10206]366 return "darwin";
367 }
368 else {
369 # return as is.
370 return $os;
371 }
372}
[7956]373
[16467]374sub get_library_url_suffix {
375 my $self = shift @_;
376
377 if (defined $self->{'library_url_suffix'}) {
378 return $self->{'library_url_suffix'};
379 }
380
381 my $optional = 1; # ignore absence of gwcgi if not found
382 my $library_url = $self->get_config_info("gwcgi", $optional);
383 if(defined $library_url) {
384 $library_url =~ s/(\/|\\)$//; # remove trailing slash
385 }
386 else {
387
388 if($self->{'greenstone_version'} == 2) {
[16971]389 $library_url = $self->get_config_info("httpprefix", $optional);
[18967]390 $library_url = "/greenstone" unless defined $library_url;
[18966]391 $library_url = "$library_url/cgi-bin/library.cgi"; # same extension for linux and windows
[16467]392 }
393 else { # greenstone 3 or later and gwcgi not defined
394 $library_url = "/greenstone3"; #"/greenstone3/library";
395 }
396 }
397
398 $self->{'library_url_suffix'} = $library_url;
399 return $library_url;
400}
401
402sub setup_fedora_homes {
403 my $self = shift @_;
404 my ($optional) = @_;
405
406 # The following will still allow the FEDORA_HOME and FEDORA_VERSION environment
407 # variables to have been set outside the gsdlsite.cfg file. Existing env vars
408 # are only overwritten if they've *also* been defined in gsdlsite.cfg.
409
410 if (!defined $self->{'fedora_home'}) # Don't need to go through it all again if we'd already done this before
411 {
412 # First look in the gsdlsite.cfg file for the fedora properties to be defined
413 # and set $ENV{FEDORA_HOME} and $ENV{FEDORA_VERSION} if values were provided
414 $self->{'fedora_home'} = $self->get_config_info("fedorahome", $optional);
415
416 if (defined $self->{'fedora_home'}) {
417 $ENV{'FEDORA_HOME'} = $self->{'fedora_home'};
418 }
419 elsif (defined $ENV{'FEDORA_HOME'}) { # check environment variable
420 $self->{'fedora_home'} = $ENV{'FEDORA_HOME'};
421 }
422
423 # if FEDORA_HOME is now defined, we can look for the fedora version that is being used
424 if (defined $ENV{'FEDORA_HOME'})
425 {
426 # first look in the file
427 $self->{'fedora_version'} = $self->get_config_info("fedoraversion", $optional);
428
429 if (defined $self->{'fedora_version'}) {
430 $ENV{'FEDORA_VERSION'} = $self->{'fedora_version'};
431 }
432 elsif (defined $ENV{'FEDORA_VERSION'}) { # then check environment variable
433 $self->{'fedora_version'} = $ENV{'FEDORA_VERSION'};
434 }
435 else { # finally, default to version 3 and warn the user
436 $ENV{'FEDORA_VERSION'} = "3";
437 $self->{'fedora_version'} = $ENV{'FEDORA_VERSION'};
438 #$self->generate_ok_message("FEDORA_HOME is set, but not FEDORA_VERSION, defaulted to: 3.");
439 }
440 }
441 }
442}
443
[23732]444# sets optional customisable values to do with Open Office
445sub setup_openoffice {
446 my $self = shift @_;
447 my ($optional) = @_;
448
449 if (!defined $self->{'soffice_home'}) # Don't need to go through it all again if we'd already done this before
450 {
[23734]451 # Look in gsdlsite.cfg for whether the openoffice
452 # and jodconverter properties have been defined
453 $self->{'soffice_home'} = $self->get_config_info("soffice_home", $optional);
454 $self->{'soffice_host'} = $self->get_config_info("soffice_host", $optional);
455 $self->{'soffice_port'} = $self->get_config_info("soffice_port", $optional);
456 $self->{'jodconverter_port'} = $self->get_config_info("jodconverter_port", $optional);
457
458 if (defined $self->{'soffice_home'}) {
459 $ENV{'SOFFICE_HOME'} = $self->{'soffice_home'};
460 }
461 if (defined $self->{'soffice_host'}) {
462 $ENV{'SOFFICE_HOST'} = $self->{'soffice_host'};
463 }
464 if (defined $self->{'soffice_port'}) {
465 $ENV{'SOFFICE_PORT'} = $self->{'soffice_port'};
466 }
467 if (defined $self->{'jodconverter_port'}) {
468 $ENV{'JODCONVERTER_PORT'} = $self->{'jodconverter_port'};
469 }
[23732]470 }
471}
472
[10206]473sub setup_gsdl {
474 my $self = shift @_;
[16467]475 my $optional = 1; # ignore absence of specified properties in gsdl(3)site.cfg if not found
[7956]476
[10212]477 my $gsdlhome = $self->get_gsdl_home();
478 my $gsdlos = $self->get_gsdl_os();
479 $ENV{'GSDLHOME'} = $gsdlhome;
480 $ENV{'GSDLOS'} = $gsdlos;
481
[23468]482 if (defined $server_software) {
483 if ($server_software =~ m/^Microsoft-IIS/) {
484 # Printing to STDERR, by default, goes to the web page in IIS
485 # Send it instead to Greenstone's error.txt
486
487 my $error_filename = "$gsdlhome/etc/error.txt"; # OK for Windows
488 open STDERR, ">> $error_filename"
489 or die "Can't write to $error_filename: $!\n";
490 binmode STDERR;
491 }
492 }
[19055]493
[16467]494 my $library_url = $self->get_library_url_suffix(); # best to have GSDLOS set beforehand
495 $self->{'library_url_suffix'} = $library_url;
496
[24872]497 my $cgibin = "cgi-bin/$ENV{'GSDLOS'}";
498 $cgibin = $cgibin.$ENV{'GSDLARCH'} if defined $ENV{'GSDLARCH'};
499
500 unshift(@INC, "$ENV{'GSDLHOME'}/$cgibin"); # This is OK on Windows
[19055]501 unshift(@INC, "$ENV{'GSDLHOME'}/perllib");
[19277]502 unshift(@INC, "$ENV{'GSDLHOME'}/perllib/cpan");
[23403]503 unshift(@INC, "$ENV{'GSDLHOME'}/perllib/cgiactions");
[19277]504
[19055]505 require util;
[14973]506
[16467]507 if($self->{'greenstone_version'} == 3) {
508 my $gsdl3srchome = $self->get_gsdl3_src_home();
509 $ENV{'GSDL3SRCHOME'} = $gsdl3srchome;
510
511 my $gsdl3home = $self->get_gsdl3_home($optional);
512 # if a specific location for GS3's web folder is not provided,
513 # assume the GS3 web folder is in the default location
514 if(!defined $gsdl3home) {
[30624]515 $gsdl3home = &FileUtils::filenameConcatenate($ENV{'GSDL3SRCHOME'}, "web");
[16467]516 $self->{'gsdl3home'} = $gsdl3home;
517 }
518 $ENV{'GSDL3HOME'} = $gsdl3home;
[26206]519 }
[16467]520
[30624]521 my $gsdl_bin_script = &FileUtils::filenameConcatenate($gsdlhome,"bin","script");
[23184]522 &util::envvar_prepend("PATH",$gsdl_bin_script);
[16467]523
[30624]524 my $gsdl_bin_os = &FileUtils::filenameConcatenate($gsdlhome,"bin",$gsdlos);
[23184]525 &util::envvar_prepend("PATH",$gsdl_bin_os);
[16467]526
[23236]527 # set up ImageMagick for the remote server in parallel to what setup.bash does
[30624]528 my $magick_home = &FileUtils::filenameConcatenate($gsdl_bin_os,"imagemagick");
[23236]529 if(-e $magick_home) {
[23756]530 &util::envvar_prepend("PATH", $magick_home);
531
532 # Doesn't look like 'bin' and 'lib' are used for Windows version anymore,
533 # but that might just be one particular installation pattern, and there's
534 # no harm (that I can see) in keeping them in
535
[30624]536 my $magick_bin = &FileUtils::filenameConcatenate($magick_home,"bin");
537 my $magick_lib = &FileUtils::filenameConcatenate($magick_home,"lib");
[23236]538
[23756]539 &util::envvar_prepend("PATH", $magick_bin);
[23236]540
541 if(!defined $ENV{'MAGICK_HOME'} || $ENV{'MAGICK_HOME'} eq "") {
542 $ENV{'MAGICK_HOME'} = $magick_home;
543 }
544
545 if($gsdlos eq "linux") {
546 &util::envvar_prepend("LD_LIBRARY_PATH", $magick_lib);
[23796]547 } elsif ($gsdlos eq "darwin") {
[23236]548 &util::envvar_prepend("DYLD_LIBRARY_PATH", $magick_lib);
549 }
550
551 }
552
553 # set up GhostScript for the remote server in parallel to what setup.bash does
[30624]554 my $ghostscript_home = &FileUtils::filenameConcatenate($gsdl_bin_os,"ghostscript");
[23236]555 if(-e $ghostscript_home) {
[30624]556 my $ghostscript_bin = &FileUtils::filenameConcatenate($ghostscript_home,"bin");
[23236]557 &util::envvar_prepend("PATH", $ghostscript_bin);
558
559 if(!defined $ENV{'GS_LIB'} || $ENV{'GS_LIB'} eq "") {
[30624]560 $ENV{'GS_LIB'} = &FileUtils::filenameConcatenate($ghostscript_home,"share","ghostscript","8.63","lib");
[23236]561 }
562 if(!defined $ENV{'GS_FONTPATH'} || $ENV{'GS_FONTPATH'} eq "") {
[30624]563 $ENV{'GS_FONTPATH'} = &FileUtils::filenameConcatenate($ghostscript_home,"share","ghostscript","8.63","Resource","Font");
[23236]564 }
565 }
566
[16509]567 # If the "perlpath" property is set in the gsdl(3)site.cfg config file, it is
568 # prepended to PATH only if the same perl bin dir path is not already on PATH env
569 my $perl_bin_dir = $self->get_perl_path($optional);
[21804]570 if(defined $perl_bin_dir)
[16509]571 {
[21804]572 &util::envvar_prepend("PATH", $perl_bin_dir);
573
574 #my ($perl_home) = ($perl_bin_dir =~ m/(.*)[\\|\/]bin[\\|\/]?$/);
575 my ($tailname,$perl_home) = File::Basename::fileparse($perl_bin_dir, "\\.(?:[^\\.]+?)\$");
[30624]576 $ENV{'PERL5LIB'} = &FileUtils::filenameConcatenate($perl_home, "lib");
[21804]577
578 if($gsdlos eq "darwin") {
[30624]579 &util::envvar_prepend("DYLD_LIBRARY_PATH", &FileUtils::filenameConcatenate($perl_home,"5.8.9","darwin-thread-multi-2level","CORE"));
[21804]580 } elsif($gsdlos eq "linux") {
[30624]581 &util::envvar_prepend("LD_LIBRARY_PATH", &FileUtils::filenameConcatenate($perl_home,"5.8.9","i686-linux-thread-multi","CORE"));
[21804]582 }
[16509]583 }
584 elsif ($gsdlos eq "windows")
585 {
586 # Perl comes installed with the GS Windows Release Kit. However, note that if GS
587 # is from SVN, the user must have their own Perl and put it on the PATH or set
588 # perlpath in the gsdl site config file.
[30624]589 $perl_bin_dir = &FileUtils::filenameConcatenate($gsdlhome, "bin", "windows", "perl", "bin");
[16467]590 if(-e $perl_bin_dir) {
591 &util::envvar_append("PATH", $perl_bin_dir);
592 }
[12707]593 }
[16467]594
[16509]595 # If javahome is explicitly set in the gsdl site config file then it will override
596 # any env variable JAVA_HOME. A GS2 server does not set JAVA_HOME, though java is on
597 # the path. Therefore, if Fedora is being used for FLI with GS2, then javahome must
598 # be set in gsdlsite.cfg or the JAVA_HOME env var must be explicitly set by the user.
599 my $java_home = $self->get_java_home($optional);
600 if(defined $java_home) {
601 $ENV{'JAVA_HOME'} = $java_home;
[16467]602 }
603
[25078]604
[23184]605 # Process any extension setup.pl files
[25078]606 my @ext_homes = ();
[23184]607
[30624]608 my $gsdl_ext_home = &FileUtils::filenameConcatenate($gsdlhome,"ext");
[25078]609 push(@ext_homes,$gsdl_ext_home);
[23184]610
[25078]611 if ($self->{'greenstone_version'} == 3) {
612 my $gsdl3srchome = $self->get_gsdl3_src_home();
[30624]613 my $gsdl3_ext_home = &FileUtils::filenameConcatenate($gsdl3srchome,"ext");
[25078]614 push(@ext_homes,$gsdl3_ext_home);
615 }
[23184]616
[25078]617 foreach my $ext_home (@ext_homes) {
618 # Should really think about making this a subroutine
[23184]619
[25078]620 if (opendir(EXTDIR,$ext_home) ) {
621 my @pot_ext_dir = grep { $_ !~ m/^\./ } readdir(EXTDIR);
622
623 closedir(EXTDIR);
624
625 foreach my $ed (@pot_ext_dir) {
[30624]626 my $full_ext_dir = &FileUtils::filenameConcatenate($ext_home,$ed);
[23184]627
[25078]628 if (-d $full_ext_dir) {
629
[30624]630 my $full_ext_perllib_dir = &FileUtils::filenameConcatenate($full_ext_dir,"perllib");
[25078]631 if (-d $full_ext_perllib_dir) {
632 unshift (@INC, $full_ext_perllib_dir);
633 }
634
[30624]635 my $full_inc_file = &FileUtils::filenameConcatenate($full_ext_dir,
[25078]636 "$ed-setup.pl");
637 if (-f $full_inc_file) {
638
639 my $store_cwd = Cwd::cwd();
640
641 chdir($full_ext_dir);
642 require "./$ed-setup.pl";
643 chdir($store_cwd);
644 }
[23184]645 }
646 }
647 }
648 }
649
[16509]650 # FEDORA_HOME and FEDORA_VERSION are needed (by scripts g2f-import and g2f-buildcol).
[16467]651 $self->setup_fedora_homes($optional);
[23732]652
653
654 # Check for any customisations to Open-Office if on Windows
655 if ($gsdlos eq "windows") {
656 $self->setup_openoffice($optional);
657 }
[10206]658}
[7956]659
[16467]660sub greenstone_version {
661 my $self = shift @_;
662 return $self->{'greenstone_version'};
663}
[7956]664
[16467]665sub library_url_suffix {
666 my $self = shift @_;
667 return $self->{'library_url_suffix'};
668}
669
670# Only useful to call this after calling setup_gsdl, as it uses some environment variables
671# Returns the Greenstone collect directory, or a specific collection directory inside collect
672sub get_collection_dir {
673 my $self = shift @_;
674 my ($site, $collection) = @_; # both may be undefined
[19202]675
[16467]676 my $collection_directory;
677 if($self->{'greenstone_version'} == 2 && defined $ENV{'GSDLHOME'}) {
678 if(defined $collection) {
[30624]679 $collection_directory = &FileUtils::filenameConcatenate($ENV{'GSDLHOME'}, "collect", $collection);
[16467]680 } else {
[30624]681 $collection_directory = &FileUtils::filenameConcatenate($ENV{'GSDLHOME'}, "collect");
[16467]682 }
683 }
[27158]684 elsif($self->{'greenstone_version'} == 3) {
685 if(defined $ENV{'GSDL3HOME'}) {
686 if(defined $collection) {
[30624]687 $collection_directory = &FileUtils::filenameConcatenate($ENV{'GSDL3HOME'}, "sites", $site, "collect", $collection);
[27158]688 } else {
[30624]689 $collection_directory = &FileUtils::filenameConcatenate($ENV{'GSDL3HOME'}, "sites", $site, "collect");
[27158]690 }
[16467]691 }
[27158]692 elsif(defined $ENV{'GSDL3SRCHOME'}) {
693 if(defined $collection) {
[30624]694 $collection_directory = &FileUtils::filenameConcatenate($ENV{'GSDL3SRCHOME'}, "web", "sites", $site, "collect", $collection);
[27158]695 } else {
[30624]696 $collection_directory = &FileUtils::filenameConcatenate($ENV{'GSDL3SRCHOME'}, "web", "sites", $site, "collect");
[27158]697 }
698 }
[16467]699 }
[27158]700 return $collection_directory;
[16467]701}
702
[10206]703sub local_rm_r
[9941]704{
705 my $self = shift @_;
[10206]706 my ($local_dir) = @_;
[9941]707
[10206]708 my $prefix_dir = getcwd();
[30624]709 my $full_path = &FileUtils::filenameConcatenate($prefix_dir,$local_dir);
[16467]710
[10206]711 if ($prefix_dir !~ m/collect/) {
[16467]712 $self->generate_error("Trying to delete outside of Greenstone collect: $full_path");
[10206]713 }
[9941]714
[10206]715 # Delete recursively
[16467]716 if (!-e $full_path) {
717 $self->generate_error("File/Directory does not exist: $full_path");
[10206]718 }
[9941]719
[30624]720 &FileUtils::removeFilesRecursive($full_path);
[9941]721}
722
[10206]723
[10584]724sub get_java_path()
[9941]725{
[10584]726 # Check the JAVA_HOME environment variable first
[9941]727 if (defined $ENV{'JAVA_HOME'}) {
728 my $java_home = $ENV{'JAVA_HOME'};
[10584]729 $java_home =~ s/\/$//; # Remove trailing slash if present (Unix specific)
[30624]730 return &FileUtils::filenameConcatenate($java_home, "bin", "java");
[10584]731 }
[10206]732
[10584]733 # Hope that Java is on the PATH
734 return "java";
735}
736
737
738sub check_java_home()
739{
[16467]740 # Return a warning unless the JAVA_HOME environment variable is set
[10584]741 if (!defined $ENV{'JAVA_HOME'}) {
742 return "JAVA_HOME environment variable not set. Might not be able to find Java unless in PATH (" . $ENV{'PATH'} . ")";
[9941]743 }
[10206]744
[10584]745 return "";
[9941]746}
747
[7956]748
749sub checked_chdir
750{
751 my $self = shift @_;
752 my ($dir) = @_;
753
754 if (!-e $dir) {
755 $self->generate_error("Directory '$dir' does not exist");
756 }
757
758 chdir $dir
759 || $self->generate_error("Unable to change to directory: $dir");
760}
761
[26206]762# used with old GS3 authentication
[16467]763sub rot13()
764{
765 my $self = shift @_;
766 my ($password)=@_;
767 my @password_arr=split(//,$password);
768
769 my @encrypt_password;
770 foreach my $str (@password_arr){
771 my $char=unpack("c",$str);
772 if ($char>=97 && $char<=109){
773 $char+=13;
774 }elsif ($char>=110 && $char<=122){
775 $char-=13;
776 }elsif ($char>=65 && $char<=77){
777 $char+=13;
778 }elsif ($char>=78 && $char<=90){
779 $char-=13;
780 }
781 $char=pack("c",$char);
782 push(@encrypt_password,$char);
783 }
784 return join("",@encrypt_password);
785}
786
[26206]787# used along with new GS3 authentication
788sub hash_pwd()
789{
790 my $self = shift @_;
791 my ($password)=@_;
792
793 my $gsdl3srchome = $ENV{'GSDL3SRCHOME'};
794
795 my $java = get_java_path();
[30624]796 my $java_gsdl3_classpath = &FileUtils::filenameConcatenate($gsdl3srchome, "web", "WEB-INF", "lib", "gsdl3.jar");
797 my $java_remaining_classpath = &FileUtils::filenameConcatenate($gsdl3srchome, "web", "WEB-INF", "lib", "*"); # log4j etc
[26206]798 my $java_classpath;
799 my $gsdlos = $ENV{'GSDLOS'};
800 if ($gsdlos !~ m/windows/){
801 $java_classpath = $java_gsdl3_classpath . ":" . $java_remaining_classpath;
802 }else{
803 $java_classpath = $java_gsdl3_classpath . ";" . $java_remaining_classpath;
[27318]804 } # can't use util::envvar_prepend(), since the $java_classpath here is not a $ENV type env variable
[26206]805
806 my $java_command="\"$java\" -classpath \"$java_classpath\" org.greenstone.gsdl3.service.Authentication \"$password\""; # 2>&1";
807 my $hashedpwd = `$java_command`;
808
809 return $hashedpwd;
810}
811
[27318]812sub encrypt_key
813{
814 my $self = shift @_;
815
816 # I think the encryption method used on the key may be the same for GS3 and GS2
817 # (The encryption method used on the pw definitely differs between the two GS versions)
818 if (defined $self->param("ky")) {
819 require "$self->{'gsdlhome'}/perllib/cpan/Crypt/UnixCrypt.pm"; # This is OK on Windows
820 $self->param('-name' => "ky", '-value' => &Crypt::UnixCrypt::crypt($self->clean_param("ky"), "Tp"));
821 }
822}
823
[16467]824sub encrypt_password
825{
826 my $self = shift @_;
827
828 if (defined $self->param("pw")) { ##
829 if ($self->{'greenstone_version'} == 3) { # GS3 is in Java, so needs different encryption
[26206]830 #$self->param('-name' => "pw", '-value' => $self->rot13($self->clean_param("pw"))); ## when using old GS3 authentication
831
832 my $hashedPwd = $self->hash_pwd($self->clean_param("pw")); # for GS3's new Authentication
833 $self->param('-name' => "pw", '-value' => $hashedPwd);
[16467]834 }
835 else { # GS2 (and versions of GS other than 3?)
836 #require "$self->{'gsdlhome'}/perllib/util.pm"; # This is OK on Windows
837 require "$self->{'gsdlhome'}/perllib/cpan/Crypt/UnixCrypt.pm"; # This is OK on Windows
838 $self->param('-name' => "pw", '-value' => &Crypt::UnixCrypt::crypt($self->clean_param("pw"), "Tp"));
839 }
840 }
841}
842
[18648]843
844sub decode {
845 my ($self, $text) = @_;
846 $text =~ s/\+/ /g;
847 $text = &MIME::Base64::decode_base64($text);
848
849 return $text;
850}
851
[7956]8521;
[10206]853
Note: See TracBrowser for help on using the repository browser.