This commit was generated by cvs2svn to compensate for changes in r4407,
[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-2005 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., 675 Mass Ave, Cambridge, MA 02139, USA.
27
28
29 # CONTRIBUTION SUBMISSION POLICY:
30
31 # (The following paragraph is not intended to limit the rights granted
32 # to you to modify and distribute this software under the terms of
33 # the GNU General Public License and is only of importance to you if
34 # you choose to contribute your changes and enhancements to the
35 # community by submitting them to Best Practical Solutions, LLC.)
36
37 # By intentionally submitting any modifications, corrections or
38 # derivatives to this work, or any other work intended for use with
39 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
40 # you are the copyright holder for those contributions and you grant
41 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
42 # royalty-free, perpetual, license to use, copy, create derivative
43 # works based on those contributions, and sublicense and distribute
44 # those contributions and any derivatives thereof.
45
46 # END BPS TAGGED BLOCK }}}
47 use strict;
48
49 BEGIN {
50     $ENV{'PATH'}   = '/bin:/usr/bin';                     # or whatever you need
51     $ENV{'CDPATH'} = '' if defined $ENV{'CDPATH'};
52     $ENV{'SHELL'}  = '/bin/sh' if defined $ENV{'SHELL'};
53     $ENV{'ENV'}    = '' if defined $ENV{'ENV'};
54     $ENV{'IFS'}    = '' if defined $ENV{'IFS'};
55
56     use CGI qw(-private_tempfiles);    #bring this in before mason, to make sure we
57                                    #set private_tempfiles
58
59     die "RT does not support mod_perl 1.99. Please upgrade to mod_perl 2.0"
60       if $ENV{'MOD_PERL'}
61       and $ENV{'MOD_PERL'} =~ m{mod_perl/(?:1\.9)};
62
63 }
64
65 use lib ( "@LOCAL_LIB_PATH@", "@RT_LIB_PATH@" );
66 use RT;
67
68 package RT::Mason;
69
70 use vars qw($Nobody $SystemUser $Handler $r);
71
72 #This drags in RT's config.pm
73 BEGIN {
74     RT::LoadConfig();
75     if ($RT::DevelMode) { require Module::Refresh; }
76 }
77
78
79 {
80
81     package HTML::Mason::Commands;
82     use vars qw(%session);
83 }
84
85 use RT::Interface::Web;
86 use RT::Interface::Web::Handler;
87 $Handler = RT::Interface::Web::Handler->new(@RT::MasonParameters);
88
89 if ($ENV{'MOD_PERL'} && !$RT::DevelMode) {
90     # Under static_source, we need to purge the component cache
91     # each time we restart, so newer components may be reloaded.
92     #
93     # We can't do this in FastCGI or we'll blow away the component root _every_ time a new server starts
94     # which happens every few hits.
95     
96     use File::Path qw( rmtree );
97     use File::Glob qw( bsd_glob );
98     rmtree([ bsd_glob("$RT::MasonDataDir/obj/*") ], 0, 1);
99 }
100
101 sub handler {
102     ($r) = @_;
103
104     local $SIG{__WARN__};
105     local $SIG{__DIE__};
106
107     # We don't need to handle non-text, non-xml items
108     if ($r->content_type =~ m/^httpd\b.*\bdirectory/i) {
109         use File::Spec::Unix;
110         # Our DirectoryIndex is always index.html, regardless of httpd settings
111         $r->filename( File::Spec::Unix->catfile( $r->filename, 'index.html' ) );
112     }
113     elsif (defined( $r->content_type )) {
114         $r->content_type =~ m!(^text/|\bxml\b)!i or return -1;
115     }
116
117     Module::Refresh->refresh if $RT::DevelMode;
118
119     RT::Init();
120
121     my %session;
122     my $status;
123     eval { $status = $Handler->handle_request($r) };
124     if ($@) {
125         $RT::Logger->crit($@);
126     }
127
128     undef(%session);
129
130     RT::Interface::Web::Handler->CleanupRequest();
131
132     return $status;
133 }
134
135 1;