sync rt-mailgate in tree
[freeside.git] / rt / bin / webmux.pl.in
1 #!@PERL@
2 # BEGIN BPS TAGGED BLOCK {{{
3 #
4 # COPYRIGHT:
5 #
6 # This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
7 #                                          <sales@bestpractical.com>
8 #
9 # (Except where explicitly superseded by other copyright notices)
10 #
11 #
12 # LICENSE:
13 #
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
17 # from www.gnu.org.
18 #
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.
23 #
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.
29 #
30 #
31 # CONTRIBUTION SUBMISSION POLICY:
32 #
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.)
38 #
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.
47 #
48 # END BPS TAGGED BLOCK }}}
49 use strict;
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'};
55
56 package HTML::Mason::Commands;
57 our %session;
58
59 package RT::Mason;
60
61 our ($Nobody, $SystemUser, $Handler, $r);
62
63 my $protect_fd;
64
65 sub handler {
66     ($r) = @_;
67
68     if ( !$protect_fd && $ENV{'MOD_PERL'} && exists $ENV{'MOD_PERL_API_VERSION'}
69         && $ENV{'MOD_PERL_API_VERSION'} >= 2 && fileno(STDOUT) != 1
70     ) {
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";
79         }
80     }
81
82     local $SIG{__WARN__};
83     local $SIG{__DIE__};
84     RT::InitSignalHandlers();
85
86     if ($r->content_type =~ m/^httpd\b.*\bdirectory/i) {
87         use File::Spec::Unix;
88         # Our DirectoryIndex is always index.html, regardless of httpd settings
89         $r->filename( File::Spec::Unix->catfile( $r->filename, 'index.html' ) );
90     }
91
92     Module::Refresh->refresh if RT->Config->Get('DevelMode');
93
94     RT::ConnectToDatabase();
95
96     my (%session, $status);
97     {
98         local $@;
99         $status = eval { $Handler->handle_request($r) };
100         $RT::Logger->crit( $@ ) if $@;
101     }
102     undef %session;
103
104     RT::Interface::Web::Handler->CleanupRequest();
105
106     return $status;
107 }
108
109 package main;
110
111 # check mod_perl version if it's mod_perl
112 BEGIN {
113     die "RT does not support mod_perl 1.99. Please upgrade to mod_perl 2.0"
114         if $ENV{'MOD_PERL'}
115         and $ENV{'MOD_PERL'} =~ m{mod_perl/(?:1\.9)};
116 }
117
118 require CGI;
119 CGI->import(qw(-private_tempfiles));
120
121 # fix lib paths, some may be relative
122 BEGIN {
123     require File::Spec;
124     my @libs = ("@RT_LIB_PATH@", "@LOCAL_LIB_PATH@");
125     my $bin_path;
126
127     for my $lib (@libs) {
128         unless ( File::Spec->file_name_is_absolute($lib) ) {
129             unless ($bin_path) {
130                 if ( File::Spec->file_name_is_absolute(__FILE__) ) {
131                     $bin_path = ( File::Spec->splitpath(__FILE__) )[1];
132                 }
133                 else {
134                     require FindBin;
135                     no warnings "once";
136                     $bin_path = $FindBin::Bin;
137                 }
138             }
139             $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
140         }
141         unshift @INC, $lib;
142     }
143
144 }
145
146 require RT;
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@\./;
149 RT::LoadConfig();
150 if ( RT->Config->Get('DevelMode') ) {
151     require Module::Refresh;
152 }
153 RT::Init();
154
155 # check compatibility of the DB
156 {
157     my $dbh = $RT::Handle->dbh;
158     if ( $dbh ) {
159         my ($status, $msg) = $RT::Handle->CheckCompatibility( $dbh, 'post' );
160         die $msg unless $status;
161     }
162 }
163
164 require RT::Interface::Web::Handler;
165 $RT::Mason::Handler = RT::Interface::Web::Handler->new(
166     RT->Config->Get('MasonParameters')
167 );
168
169 # load more for mod_perl before forking
170 RT::InitClasses( Heavy => 1 ) if $ENV{'MOD_PERL'} || $ENV{RT_WEBMUX_HEAVY_LOAD};
171
172 # we must disconnect DB before fork
173 $RT::Handle->dbh(undef);
174 undef $RT::Handle;
175
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.
179     #
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
182     # hits.
183     
184     require File::Path;
185     require File::Glob;
186     my @files = File::Glob::bsd_glob("$RT::MasonDataDir/obj/*");
187     File::Path::rmtree([ @files ], 0, 1) if @files;
188 }
189
190 1;