2 # BEGIN BPS TAGGED BLOCK {{{
6 # This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
7 # <sales@bestpractical.com>
9 # (Except where explicitly superseded by other copyright notices)
14 # This work is made available to you under the terms of Version 2 of
15 # the GNU General Public License. A copy of that license should have
16 # been provided with this software, but in any event can be snarfed
19 # This work is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 # General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 # 02110-1301 or visit their web page on the internet at
28 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
31 # CONTRIBUTION SUBMISSION POLICY:
33 # (The following paragraph is not intended to limit the rights granted
34 # to you to modify and distribute this software under the terms of
35 # the GNU General Public License and is only of importance to you if
36 # you choose to contribute your changes and enhancements to the
37 # community by submitting them to Best Practical Solutions, LLC.)
39 # By intentionally submitting any modifications, corrections or
40 # derivatives to this work, or any other work intended for use with
41 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
42 # you are the copyright holder for those contributions and you grant
43 # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
44 # royalty-free, perpetual, license to use, copy, create derivative
45 # works based on those contributions, and sublicense and distribute
46 # those contributions and any derivatives thereof.
48 # END BPS TAGGED BLOCK }}}
50 local $ENV{'PATH'} = '/bin:/usr/bin'; # or whatever you need
51 local $ENV{'CDPATH'} = '' if defined $ENV{'CDPATH'};
52 local $ENV{'SHELL'} = '/bin/sh' if defined $ENV{'SHELL'};
53 local $ENV{'ENV'} = '' if defined $ENV{'ENV'};
54 local $ENV{'IFS'} = '' if defined $ENV{'IFS'};
56 package HTML::Mason::Commands;
61 our ($Nobody, $SystemUser, $Handler, $r);
68 if ( !$protect_fd && $ENV{'MOD_PERL'} && exists $ENV{'MOD_PERL_API_VERSION'}
69 && $ENV{'MOD_PERL_API_VERSION'} >= 2 && fileno(STDOUT) != 1
71 # under mod_perl2, STDOUT gets closed and re-opened, however new STDOUT
72 # is not on FD #1. In this case next IO operation will occupy this FD
73 # and make all system() and open "|-" dangerouse, for example DBI
74 # can get this FD for DB connection and system() call will close
75 # by putting grabage into the socket
76 open $protect_fd, '>/dev/null' or die "Couldn't open /dev/null: $!";
77 unless ( fileno($protect_fd) == 1 ) {
78 warn "We opened /dev/null to protect FD #1, but descriptor #1 is already occupied";
84 RT::InitSignalHandlers();
86 if ($r->content_type =~ m/^httpd\b.*\bdirectory/i) {
88 # Our DirectoryIndex is always index.html, regardless of httpd settings
89 $r->filename( File::Spec::Unix->catfile( $r->filename, 'index.html' ) );
92 Module::Refresh->refresh if RT->Config->Get('DevelMode');
94 RT::ConnectToDatabase();
96 my (%session, $status);
99 $status = eval { $Handler->handle_request($r) };
100 $RT::Logger->crit( $@ ) if $@;
104 RT::Interface::Web::Handler->CleanupRequest();
111 # check mod_perl version if it's mod_perl
113 die "RT does not support mod_perl 1.99. Please upgrade to mod_perl 2.0"
115 and $ENV{'MOD_PERL'} =~ m{mod_perl/(?:1\.9)};
119 CGI->import(qw(-private_tempfiles));
121 # fix lib paths, some may be relative
124 my @libs = ("@RT_LIB_PATH@", "@LOCAL_LIB_PATH@");
127 for my $lib (@libs) {
128 unless ( File::Spec->file_name_is_absolute($lib) ) {
130 if ( File::Spec->file_name_is_absolute(__FILE__) ) {
131 $bin_path = ( File::Spec->splitpath(__FILE__) )[1];
136 $bin_path = $FindBin::Bin;
139 $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
147 die "Wrong version of RT $RT::Version found; need @RT_VERSION_MAJOR@.@RT_VERSION_MINOR@.*"
148 unless $RT::VERSION =~ /^@RT_VERSION_MAJOR@\.@RT_VERSION_MINOR@\./;
150 if ( RT->Config->Get('DevelMode') ) {
151 require Module::Refresh;
155 # check compatibility of the DB
157 my $dbh = $RT::Handle->dbh;
159 my ($status, $msg) = $RT::Handle->CheckCompatibility( $dbh, 'post' );
160 die $msg unless $status;
164 require RT::Interface::Web::Handler;
165 $RT::Mason::Handler = RT::Interface::Web::Handler->new(
166 RT->Config->Get('MasonParameters')
169 # load more for mod_perl before forking
170 RT::InitClasses( Heavy => 1 ) if $ENV{'MOD_PERL'} || $ENV{RT_WEBMUX_HEAVY_LOAD};
172 # we must disconnect DB before fork
173 $RT::Handle->dbh(undef);
176 if ( $ENV{'MOD_PERL'} && !RT->Config->Get('DevelMode')) {
177 # Under static_source, we need to purge the component cache
178 # each time we restart, so newer components may be reloaded.
180 # We can't do this in FastCGI or we'll blow away the component
181 # root _every_ time a new server starts which happens every few
186 my @files = File::Glob::bsd_glob("$RT::MasonDataDir/obj/*");
187 File::Path::rmtree([ @files ], 0, 1) if @files;