# # TWiki Enterprise Collaboration Platform, http://TWiki.org/ # # Copyright (C) 2000-2006 TWiki Contributors. # # This program 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. For # more details read LICENSE in the root of this distribution. # # This program 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. # # As per the GPL, removal of this notice is prohibited. # use strict; package TWiki::Configure::Checkers::BasicSanity; use base 'TWiki::Configure::Checker'; sub new { my ($class, $item) = @_; my $this = $class->SUPER::new($item); $this->{LocalSiteDotCfg} = undef; $this->{errors} = 0; return $this; } # return true if we have fatal errors sub insane() { my $this = shift; return $this->{errors}; } sub ui { my $this = shift; my $result = ''; my $badLSC = 0; $this->{LocalSiteDotCfg} = TWiki::findFileOnPath('LocalSite.cfg'); unless ($this->{LocalSiteDotCfg}) { $this->{LocalSiteDotCfg} = TWiki::findFileOnPath('TWiki.spec') || ''; $this->{LocalSiteDotCfg} =~ s/TWiki\.spec/LocalSite.cfg/; } # Get default settings by reading .spec files TWiki::Configure::Load::readDefaults(); $TWiki::defaultCfg = _copy( \%TWiki::cfg ); if (!$this->{LocalSiteDotCfg} ) { $this->{errors}++; $result .= $this->ERROR(<{LocalSiteDotCfg} ) { eval { TWiki::Configure::Load::readConfig(); }; if ($@) { $result .= $this->WARN(<$@ You can continue, but configure will not pick up any of the existing settings from this file unless you correct the perl error. HERE $badLSC = 1; } elsif (!-w $this->{LocalSiteDotCfg} ) { $result .= $this->WARN(< $this->{LocalSiteDotCfg} is not writable. You can view the configuration, but you will not be able to save. Check the file permissions. HERE } } else { # Doesn't exist (yet) my $errs = $this->checkCanCreateFile( $this->{LocalSiteDotCfg}); if ($errs) { $result .= $this->WARN(<{LocalSiteDotCfg} does not exist, and I cannot write a new configuration file due to these errors:
$errs
You can view the default configuration, but you will not be able to save.
HERE
            $badLSC = 1;
        } else {
            $result .= $this->WARN(<{LocalSiteDotCfg}.
This may be because this is the first time you have run configure. In this case you can simply ignore this warning until you have filled in your General path settings. HERE $badLSC = 1; } } # If we got this far without definitions for key variables, then # we need to default them. otherwise we get peppered with # 'uninitialised variable' alerts later. foreach my $var qw( DataDir DefaultUrlHost PubUrlPath PubDir TemplateDir ScriptUrlPath LocalesDir ) { # NOT SET tells the checker to try and guess the value later on $TWiki::cfg{$var} ||= 'NOT SET'; } # Make %ENV safer for CGI (should reflect TWiki.pm) $TWiki::cfg{DETECTED}{originalPath} = $ENV{PATH} || ''; if( $TWiki::cfg{SafeEnvPath} ) { # SMELL: this untaint probably isn't needed my $ut = $TWiki::cfg{SafeEnvPath}; $ut =~ /^(.*)$/; $ENV{PATH} = $1; } delete @ENV{ qw( IFS CDPATH ENV BASH_ENV ) }; return $result; } sub _copy { my $n = shift; return undef unless defined( $n ); if (UNIVERSAL::isa($n, 'ARRAY')) { my @new; for ( 0..$#$n ) { push(@new, _copy( $n->[$_] )); } return \@new; } elsif (UNIVERSAL::isa($n, 'HASH')) { my %new; for ( keys %$n ) { $new{$_} = _copy( $n->{$_} ); } return \%new; } elsif (UNIVERSAL::isa($n, 'Regexp')) { return qr/$n/; } elsif (UNIVERSAL::isa($n, 'REF') || UNIVERSAL::isa($n, 'SCALAR')) { $n = _copy($$n); return \$n; } else { return $n; } } 1;