communigate provisioning phase 2: add svc_domain.trailer -> communigate TrailerText...
[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-2009 Best Practical Solutions, LLC
7 #                                          <jesse@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
51 BEGIN {
52     $ENV{'PATH'}   = '/bin:/usr/bin';                     # or whatever you need
53     $ENV{'CDPATH'} = '' if defined $ENV{'CDPATH'};
54     $ENV{'SHELL'}  = '/bin/sh' if defined $ENV{'SHELL'};
55     $ENV{'ENV'}    = '' if defined $ENV{'ENV'};
56     $ENV{'IFS'}    = '' if defined $ENV{'IFS'};
57
58     use CGI qw(-private_tempfiles);    #bring this in before mason, to make sure we
59                                    #set private_tempfiles
60
61     die "RT does not support mod_perl 1.99. Please upgrade to mod_perl 2.0"
62       if $ENV{'MOD_PERL'}
63       and $ENV{'MOD_PERL'} =~ m{mod_perl/(?:1\.9)};
64
65 }
66
67 # fix lib paths, some may be relative
68 BEGIN {
69     require File::Spec;
70     my @libs = ("@RT_LIB_PATH@", "@LOCAL_LIB_PATH@");
71     my $bin_path;
72
73     for my $lib (@libs) {
74         unless ( File::Spec->file_name_is_absolute($lib) ) {
75             unless ($bin_path) {
76                 if ( File::Spec->file_name_is_absolute(__FILE__) ) {
77                     $bin_path = ( File::Spec->splitpath(__FILE__) )[1];
78                 }
79                 else {
80                     require FindBin;
81                     no warnings "once";
82                     $bin_path = $FindBin::Bin;
83                 }
84             }
85             $lib = File::Spec->catfile( $bin_path, File::Spec->updir, $lib );
86         }
87         unshift @INC, $lib;
88     }
89
90 }
91 use RT;
92
93 package RT::Mason;
94
95 use vars qw($Nobody $SystemUser $Handler $r);
96
97 #This drags in RT's config.pm
98 BEGIN {
99     RT::LoadConfig();
100     if (RT->Config->Get('DevelMode')) { require Module::Refresh; }
101     RT->InitPluginPaths();
102 }
103
104 {
105     require RT::Handle;
106     my $dsn = RT::Handle->DSN;
107     my $user = RT->Config->Get('DatabaseUser');
108     my $pass = RT->Config->Get('DatabasePassword');
109
110     my $dbh = DBI->connect(
111         $dsn, $user, $pass,
112         { RaiseError => 0, PrintError => 0 },
113     );
114     if ( $dbh ) {
115         my ($status, $msg) = RT::Handle->CheckCompatibility( $dbh, 'post' );
116         die $msg unless $status;
117     }
118 }
119
120 {
121     package HTML::Mason::Commands;
122     use vars qw(%session);
123 }
124
125 use RT::Interface::Web;
126 use RT::Interface::Web::Handler;
127
128 if ($ENV{'MOD_PERL'} && !RT->Config->Get('DevelMode')) {
129     # Under static_source, we need to purge the component cache
130     # each time we restart, so newer components may be reloaded.
131     #
132     # We can't do this in FastCGI or we'll blow away the component root _every_ time a new server starts
133     # which happens every few hits.
134     
135     use File::Path qw( rmtree );
136     use File::Glob qw( bsd_glob );
137     my @files = bsd_glob("$RT::MasonDataDir/obj/*");
138     rmtree([ @files ], 0, 1) if @files;
139 }
140
141 sub handler {
142     ($r) = @_;
143
144     local $SIG{__WARN__};
145     local $SIG{__DIE__};
146
147     if ($r->content_type =~ m/^httpd\b.*\bdirectory/i) {
148         use File::Spec::Unix;
149         # Our DirectoryIndex is always index.html, regardless of httpd settings
150         $r->filename( File::Spec::Unix->catfile( $r->filename, 'index.html' ) );
151     }
152 #    elsif (defined( $r->content_type )) {
153         #$r->content_type !~ m!(^text/|\bxml\b)!i or return -1;
154 #    }
155
156     Module::Refresh->refresh if RT->Config->Get('DevelMode');
157
158     RT::Init();
159
160     $Handler ||= RT::Interface::Web::Handler->new(
161         RT->Config->Get('MasonParameters')
162     );
163
164     my %session;
165     my $status;
166     eval { $status = $Handler->handle_request($r) };
167     if ($@) {
168         $RT::Logger->crit($@);
169     }
170
171     undef(%session);
172
173     RT::Interface::Web::Handler->CleanupRequest();
174
175     return $status;
176 }
177
178 1;