*finally* seems to be working under Mason. sheesh.
[freeside.git] / htetc / handler.pl
1 #!/usr/bin/perl
2 #
3 # This is a basic, fairly fuctional Mason handler.pl.
4 #
5 # For something a little more involved, check out session_handler.pl
6
7 package HTML::Mason;
8
9 # Bring in main Mason package.
10 use HTML::Mason;
11
12 # Bring in ApacheHandler, necessary for mod_perl integration.
13 # Uncomment the second line (and comment the first) to use
14 # Apache::Request instead of CGI.pm to parse arguments.
15 use HTML::Mason::ApacheHandler;
16 # use HTML::Mason::ApacheHandler (args_method=>'mod_perl');
17
18 # Uncomment the next line if you plan to use the Mason previewer.
19 #use HTML::Mason::Preview;
20
21 use strict;
22
23 # List of modules that you want to use from components (see Admin
24 # manual for details)
25 #{  package HTML::Mason::Commands;
26 #   use CGI;
27 #}
28
29 # Create Mason objects
30 #
31 my $parser = new HTML::Mason::Parser;
32 my $interp = new HTML::Mason::Interp (parser=>$parser,
33                                       comp_root=>'/var/www/masondocs',
34                                       data_dir=>'/home/ivan/freeside_current/masondata',
35                                       out_mode=>'stream',
36                                      );
37 my $ah = new HTML::Mason::ApacheHandler ( interp => $interp,
38                                           #auto_send_headers => 0,
39                                         );
40
41 # Activate the following if running httpd as root (the normal case).
42 # Resets ownership of all files created by Mason at startup.
43 #
44 chown (Apache->server->uid, Apache->server->gid, $interp->files_written);
45
46 sub handler
47 {
48     my ($r) = @_;
49
50     # If you plan to intermix images in the same directory as
51     # components, activate the following to prevent Mason from
52     # evaluating image files as components.
53     #
54     #return -1 if $r->content_type && $r->content_type !~ m|^text/|i;
55
56     #rar
57     { package HTML::Mason::Commands;
58       use strict;
59       use vars qw( $cgi $p );
60       use CGI;
61       #use CGI::Carp qw(fatalsToBrowser);
62       use Date::Format;
63       use Date::Parse;
64       use Tie::IxHash;
65       use HTML::Entities;
66       use IO::Handle;
67       use IO::File;
68       use String::Approx qw(amatch);
69       use FS::UID qw(cgisuidsetup dbh getotaker datasrc);
70       use FS::Record qw(qsearch qsearchs fields dbdef);
71       use FS::Conf;
72       use FS::CGI qw(header menubar popurl table itable ntable idiot eidiot
73                      small_custview myexit);
74
75       use FS::agent;
76       use FS::agent_type;
77       use FS::domain_record;
78       use FS::cust_bill;
79       use FS::cust_bill_pay;
80       use FS::cust_credit;
81       use FS::cust_credit_bill;
82       use FS::cust_main;
83       use FS::cust_main_county;
84       use FS::cust_pay;
85       use FS::cust_pkg;
86       use FS::cust_refund;
87       use FS::cust_svc;
88       use FS::nas;
89       use FS::part_bill_event;
90       use FS::part_pkg;
91       use FS::part_referral;
92       use FS::part_svc;
93       use FS::pkg_svc;
94       use FS::port;
95       use FS::queue;
96       use FS::raddb;
97       use FS::session;
98       use FS::svc_acct;
99       use FS::svc_acct_pop qw(popselector);
100       use FS::svc_acct_sm;
101       use FS::svc_domain;
102       use FS::svc_forward;
103       use FS::svc_www;
104       use FS::type_pkgs;
105
106       *CGI::redirect = sub {
107         my( $self, $location ) = @_;
108
109         #http://www.masonhq.com/docs/faq/#how_do_i_do_an_external_redirect
110         $m->clear_buffer;
111         # The next two lines are necessary to stop Apache from re-reading
112         # POSTed data.
113         $r->method('GET');
114         $r->headers_in->unset('Content-length');
115         $r->content_type('text/html');
116         #$r->err_header_out('Location' => $location);
117         $r->header_out('Location' => $location);
118          $r->header_out('Content-Type' => 'text/html');
119          $m->abort(302);
120
121         '';
122       };
123
124       $cgi = new CGI;
125       &cgisuidsetup($cgi);
126       #&cgisuidsetup($r);
127       $p = popurl(2);
128     }
129
130     $r->content_type('text/html');
131     #eorar
132
133     my $headers = $r->headers_out;
134     $headers->{'Pragma'} = $headers->{'Cache-control'} = 'no-cache';
135     #$r->no_cache(1);
136     $headers->{'Expires'} = '0';
137
138 #    $r->send_http_header;
139
140     my $status = $ah->handle_request($r);
141
142     $status;
143 }
144
145 1;