so Search.tsf and Search.rdf work
[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-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 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     eval { require Apache2; require APR::Table; require MasonX::Apache2Handler; 1 } or
57     eval { require Apache2; require Apache::compat; 1 } or die $@
58       if $ENV{'MOD_PERL'}
59       and $ENV{'MOD_PERL'} =~ m{mod_perl/(?:2|1\.9)};
60
61 }
62
63 use lib ( "@LOCAL_LIB_PATH@", "@RT_LIB_PATH@" );
64 use RT;
65
66 package RT::Mason;
67
68 use CGI qw(-private_tempfiles);    #bring this in before mason, to make sure we
69                                    #set private_tempfiles
70
71 use HTML::Mason;    # brings in subpackages: Parser, Interp, etc.
72
73 use vars qw($Nobody $SystemUser $Handler $r);
74
75 #This drags in RT's config.pm
76 RT::LoadConfig();
77
78 use Carp;
79
80 {
81
82     package HTML::Mason::Commands;
83     use vars qw(%session);
84
85     use RT::Tickets;
86     use RT::Transactions;
87     use RT::Users;
88     use RT::CurrentUser;
89     use RT::Templates;
90     use RT::Queues;
91     use RT::ScripActions;
92     use RT::ScripConditions;
93     use RT::Scrips;
94     use RT::Groups;
95     use RT::GroupMembers;
96     use RT::CustomFields;
97     use RT::CustomFieldValues;
98     use RT::TicketCustomFieldValues;
99
100     use RT::Interface::Web;
101     use MIME::Entity;
102     use Text::Wrapper;
103     use CGI::Cookie;
104     use Time::ParseDate;
105     use HTML::Entities;
106     use HTML::Scrubber;
107     use Text::Quoted;
108 }
109
110 use RT::Interface::Web::Handler;
111 $Handler = RT::Interface::Web::Handler->new(@RT::MasonParameters);
112
113 sub handler {
114     ($r) = @_;
115
116     local $SIG{__WARN__};
117     local $SIG{__DIE__};
118
119     RT::Init();
120
121     # We don't need to handle non-text, non-xml items
122     return -1 if defined( $r->content_type ) && $r->content_type !~ m!(^text/|\bxml\b)!io;
123
124     my %session;
125     my $status;
126     eval { $status = $Handler->handle_request($r) };
127     if ($@) {
128         $RT::Logger->crit($@);
129     }
130
131     undef(%session);
132
133     if ( $RT::Handle->TransactionDepth ) {
134         $RT::Handle->ForceRollback;
135         $RT::Logger->crit(
136 "Transaction not committed. Usually indicates a software fault. Data loss may have occurred"
137         );
138     }
139     return $status;
140 }
141
142 1;