import rt 3.2.2
[freeside.git] / rt / bin / mason_handler.fcgi.in
1 #!@PERL@
2 # {{{ BEGIN BPS TAGGED BLOCK
3
4 # COPYRIGHT:
5 #  
6 # This software is Copyright (c) 1996-2004 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 package RT::Mason;
48
49 use strict;
50 use vars '$Handler';
51 use File::Basename;
52 require ('@RT_BIN_PATH@/webmux.pl');
53
54 # Enter CGI::Fast mode, which should also work as a vanilla CGI script.
55 require CGI::Fast;
56
57 RT::Init();
58
59 while ( my $cgi = CGI::Fast->new ) {
60     # the whole point of fastcgi requires the env to get reset here..
61     # So we must squash it again
62     $ENV{'PATH'}   = '/bin:/usr/bin';
63     $ENV{'CDPATH'} = '' if defined $ENV{'CDPATH'};
64     $ENV{'SHELL'}  = '/bin/sh' if defined $ENV{'SHELL'};
65     $ENV{'ENV'}    = '' if defined $ENV{'ENV'};
66     $ENV{'IFS'}    = '' if defined $ENV{'IFS'};
67
68     RT::ConnectToDatabase();
69
70     if ( ( !$Handler->interp->comp_exists( $cgi->path_info ) )
71         && ( $Handler->interp->comp_exists( $cgi->path_info . "/index.html" ) ) ) {
72         $cgi->path_info( $cgi->path_info . "/index.html" );
73     }
74
75     eval { $Handler->handle_cgi_object($cgi); };
76     if ($@) {
77         $RT::Logger->crit($@);
78     }
79
80
81     if ($RT::Handle->TransactionDepth) {
82         $RT::Handle->ForceRollback;
83         $RT::Logger->crit("Transaction not committed. Usually indicates a software fault. Data loss may have occurred") ;
84     }
85
86
87 }
88
89 1;