package categories (meta package classes) and grouping invoices by them
[freeside.git] / htetc / handler.pl
1 #!/usr/bin/perl
2
3 package HTML::Mason;
4
5 use strict;
6 use vars qw($r);
7 use HTML::Mason 1.27; #http://www.masonhq.com/?ApacheModPerl2Redirect
8 use HTML::Mason::Interp;
9 use HTML::Mason::Compiler::ToObject;
10
11 # Bring in ApacheHandler, necessary for mod_perl integration.
12 # Uncomment the second line (and comment the first) to use
13 # Apache::Request instead of CGI.pm to parse arguments.
14 use HTML::Mason::ApacheHandler;
15 # use HTML::Mason::ApacheHandler (args_method=>'mod_perl');
16
17 ###use Module::Refresh;###
18
19 # List of modules that you want to use from components (see Admin
20 # manual for details)
21 #{  package HTML::Mason::Commands;
22 #   use CGI;
23 #}
24
25 if ( %%%RT_ENABLED%%% ) {
26  eval '
27    use lib ( "/opt/rt3/local/lib", "/opt/rt3/lib" );
28    use RT;
29    use vars qw($Nobody $SystemUser);
30    RT::LoadConfig();
31  ';
32  die $@ if $@;
33 }
34
35 # Create Mason objects
36
37 my %interp = (
38   request_class        => 'HTML::Mason::Request::ApacheHandler',
39   data_dir             => '%%%MASONDATA%%%',
40   error_mode           => 'output',
41   error_format         => 'html',
42   ignore_warnings_expr => '.',
43   comp_root            => [
44                             [ 'freeside' => '%%%FREESIDE_DOCUMENT_ROOT%%%'    ],
45                             [ 'rt'       => '%%%FREESIDE_DOCUMENT_ROOT%%%/rt' ],
46                           ],
47 );
48
49 my $fs_interp = new HTML::Mason::Interp (
50   %interp,
51   escape_flags => { 'js_string' => sub {
52                       #${$_[0]} =~ s/(['\\\n])/'\\'.($1 eq "\n" ? 'n' : $1)/ge;
53                       ${$_[0]} =~ s/(['\\])/\\$1/g;
54                       ${$_[0]} =~ s/\n/\\n/g;
55                       ${$_[0]} = "'". ${$_[0]}. "'";
56                     }
57                   },
58 );
59
60 my $rt_interp = new HTML::Mason::Interp (
61   %interp,
62   escape_flags => { 'h' => \&RT::Interface::Web::EscapeUTF8 },
63   compiler     => HTML::Mason::Compiler::ToObject->new(
64                     default_escape_flags => 'h',
65                     allow_globals        => [qw(%session)],
66                   ),
67 );
68
69 my $ah = new HTML::Mason::ApacheHandler (
70   interp      => $fs_interp,
71   args_method => 'CGI', #(and FS too)
72 );
73
74 # Activate the following if running httpd as root (the normal case).
75 # Resets ownership of all files created by Mason at startup.
76 #
77 #chown (Apache->server->uid, Apache->server->gid, $interp->files_written);
78
79 sub handler
80 {
81     ($r) = @_;
82
83     # If you plan to intermix images in the same directory as
84     # components, activate the following to prevent Mason from
85     # evaluating image files as components.
86     #
87     #return -1 if $r->content_type && $r->content_type !~ m|^text/|i;
88
89     #rar
90     { package HTML::Mason::Commands;
91       use strict;
92       use vars qw( $cgi $p $fsurl);
93       use vars qw( %session );
94       use CGI 3.29 qw(-private_tempfiles); #3.29 to fix RT attachment problems
95       #use CGI::Carp qw(fatalsToBrowser);
96       use CGI::Cookie;
97       use List::Util qw( max min );
98       use Data::Dumper;
99       use Date::Format;
100       use Date::Parse;
101       use Time::Local;
102       use Time::Duration;
103       use DateTime;
104       use DateTime::Format::Strptime;
105       use Lingua::EN::Inflect qw(PL);
106       use Tie::IxHash;
107       use URI::URL;
108       use URI::Escape;
109       use HTML::Entities;
110       use HTML::TreeBuilder;
111       use HTML::FormatText;
112       use JSON;
113       use MIME::Base64;
114       use IO::Handle;
115       use IO::File;
116       use IO::Scalar;
117       #not actually using this yet anyway...# use IPC::Run3 0.036;
118       use Net::Whois::Raw qw(whois);
119       if ( $] < 5.006 ) {
120         eval "use Net::Whois::Raw 0.32 qw(whois)";
121         die $@ if $@;
122       }
123       use Text::CSV_XS;
124       use Spreadsheet::WriteExcel;
125       use Business::CreditCard 0.30; #for mask-aware cardtype()
126       use NetAddr::IP;
127       use String::Approx qw(amatch);
128       use Chart::LinesPoints;
129       use Chart::Mountain;
130       use Color::Scheme;
131       use HTML::Widgets::SelectLayers 0.07; #should go away in favor of
132                                             #selectlayers.html
133       use Locale::Country;
134       use Business::US::USPS::WebTools::AddressStandardization;
135       use FS;
136       use FS::UID qw( adminsuidsetup cgisuidsetup getotaker
137                       dbh datasrc driver_name
138                     );
139       use FS::Record qw(qsearch qsearchs fields dbdef str2time_sql);
140       use FS::Conf;
141       use FS::CGI qw(header menubar popurl rooturl table itable ntable idiot
142                      eidiot myexit http_header);
143       use FS::UI::Web qw(svc_url);
144       use FS::UI::Web::small_custview qw(small_custview);
145       use FS::UI::bytecount;
146       use FS::Msgcat qw(gettext geterror);
147       use FS::Misc qw( send_email send_fax states_hash counties state_label );
148       use FS::Report::Table::Monthly;
149       use FS::TicketSystem;
150
151       use FS::agent;
152       use FS::agent_type;
153       use FS::domain_record;
154       use FS::cust_bill;
155       use FS::cust_bill_pay;
156       use FS::cust_credit;
157       use FS::cust_credit_bill;
158       use FS::cust_main qw(smart_search);
159       use FS::cust_main_county;
160       use FS::cust_pay;
161       use FS::cust_pkg;
162       use FS::part_pkg_taxclass;
163       use FS::cust_pkg_reason;
164       use FS::cust_refund;
165       use FS::cust_credit_refund;
166       use FS::cust_pay_refund;
167       use FS::cust_svc;
168       use FS::nas;
169       use FS::part_bill_event;
170       use FS::part_event;
171       use FS::part_event_condition;
172       use FS::part_pkg;
173       use FS::part_referral;
174       use FS::part_svc;
175       use FS::part_svc_router;
176       use FS::part_virtual_field;
177       use FS::pay_batch;
178       use FS::pkg_svc;
179       use FS::port;
180       use FS::queue qw(joblisting);
181       use FS::raddb;
182       use FS::session;
183       use FS::svc_acct;
184       use FS::svc_acct_pop qw(popselector);
185       use FS::acct_rt_transaction;
186       use FS::svc_domain;
187       use FS::svc_forward;
188       use FS::svc_www;
189       use FS::router;
190       use FS::addr_block;
191       use FS::svc_broadband;
192       use FS::svc_external;
193       use FS::type_pkgs;
194       use FS::part_export;
195       use FS::part_export_option;
196       use FS::export_svc;
197       use FS::msgcat;
198       use FS::rate;
199       use FS::rate_region;
200       use FS::rate_prefix;
201       use FS::payment_gateway;
202       use FS::agent_payment_gateway;
203       use FS::XMLRPC;
204       use FS::payby;
205       use FS::cdr;
206       use FS::inventory_class;
207       use FS::inventory_item;
208       use FS::pkg_category;
209       use FS::pkg_class;
210       use FS::access_user;
211       use FS::access_user_pref;
212       use FS::access_group;
213       use FS::access_usergroup;
214       use FS::access_groupagent;
215       use FS::access_right;
216       use FS::AccessRight;
217       use FS::svc_phone;
218       use FS::reason_type;
219       use FS::reason;
220       use FS::cust_main_note;
221       use FS::tax_class;
222       use FS::cust_tax_location;
223       use FS::part_pkg_taxproduct;
224       use FS::part_pkg_taxoverride;
225       use FS::part_pkg_taxrate;
226       use FS::tax_rate;
227
228       if ( %%%RT_ENABLED%%% ) {
229         eval '
230           use RT::Tickets;
231           use RT::Transactions;
232           use RT::Users;
233           use RT::CurrentUser;
234           use RT::Templates;
235           use RT::Queues;
236           use RT::ScripActions;
237           use RT::ScripConditions;
238           use RT::Scrips;
239           use RT::Groups;
240           use RT::GroupMembers;
241           use RT::CustomFields;
242           use RT::CustomFieldValues;
243           use RT::ObjectCustomFieldValues;
244
245           #blah.  manually updated from RT::Interface::Web::Handler
246           use RT::Interface::Web;
247           use MIME::Entity;
248           use Text::Wrapper;
249           use Time::ParseDate;
250           use Time::HiRes;
251           use HTML::Scrubber;
252
253           #blah.  not even in RT::Interface::Web::Handler, just in 
254           #html/NoAuth/css/dhandler and rt-test-dependencies.  ask for it here
255           #to throw a real error instead of just a mysterious unstyled RT
256           use CSS::Squish 0.06;
257
258           #slow, unreliable, segfaults and is optional
259           #see rt/html/Ticket/Elements/ShowTransactionAttachments
260           #use Text::Quoted;
261
262           #?#use File::Path qw( rmtree );
263           #?#use File::Glob qw( bsd_glob );
264           #?#use File::Spec::Unix;
265
266         ';
267         die $@ if $@;
268       }
269
270       *CGI::redirect = sub {
271         my $self = shift;
272         my $cookie = '';
273         if ( $_[0] eq '-cookie' ) { #this isn't actually used at the moment
274           (my $x, $cookie) = (shift, shift);
275           $HTML::Mason::r->err_headers_out->add( 'Set-cookie' => $cookie );
276         }
277         my $location = shift;
278
279         use vars qw($m);
280
281         # false laziness w/below
282         if ( defined(@DBIx::Profile::ISA) ) { #profiling redirect
283
284           my $page =
285             qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
286             '<BR><BR><PRE>'.
287               ( UNIVERSAL::can(dbh, 'sprintProfile')
288                   ? encode_entities(dbh->sprintProfile())
289                   : 'DBIx::Profile missing sprintProfile method;'.
290                     'unpatched or too old?'                        ).
291             #"\n\n". &sprintAutoProfile().  '</PRE>'.
292             "\n\n".                         '</PRE>'.
293             '</BODY></HTML>';
294           dbh->{'private_profile'} = {};
295           return $page;
296
297         } else { #normal redirect
298
299           $m->redirect($location);
300           '';
301
302         }
303
304       };
305       
306       if ( $HTML::Mason::r->filename !~ /\/rt\/.*NoAuth/ ) { #not RT images/JS
307
308         $cgi = new CGI;
309         &cgisuidsetup($cgi);
310         #&cgisuidsetup($r);
311         $p = popurl(2);
312         $fsurl = rooturl();
313
314       } elsif ( $HTML::Mason::r->filename =~ /\/rt\/REST\/.*NoAuth/ ) {
315
316         #need to log somebody in for the mail gw
317
318         ##old installs w/fs_selfs or selfserv??
319         #&adminsuidsetup('fs_selfservice');
320
321         &adminsuidsetup('fs_queue');
322
323       }
324
325       sub include {
326         use vars qw($m);
327         $m->scomp(@_);
328       }
329
330       sub errorpage {
331         use vars qw($m);
332         $m->comp('/elements/errorpage.html', @_);
333       }
334
335       sub redirect {
336         my( $location ) = @_;
337         use vars qw($m);
338         $m->clear_buffer;
339         #false laziness w/above
340         if ( defined(@DBIx::Profile::ISA) ) { #profiling redirect
341
342           $m->print(
343             qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
344             '<BR><BR><PRE>'.
345               ( UNIVERSAL::can(dbh, 'sprintProfile')
346                   ? encode_entities(dbh->sprintProfile())
347                   : 'DBIx::Profile missing sprintProfile method;'.
348                     'unpatched or too old?'                        ).
349             #"\n\n". &sprintAutoProfile().  '</PRE>'.
350             "\n\n".                         '</PRE>'.
351             '</BODY></HTML>'
352           );
353           dbh->{'private_profile'} = {};
354
355           #whew.  removing this is all that's needed to fix the annoying
356           #blank-page-instead-of-profiling-redirect-when-called-from-an-include
357           #bug triggered by mason 1.32
358           #my $rv = $m->abort(200);
359
360         } else { #normal redirect
361
362           $m->redirect($location);
363
364         }
365
366       }
367
368     } # end package HTML::Mason::Commands;
369
370     ###Module::Refresh->refresh;###
371
372     $r->content_type('text/html');
373     #eorar
374
375     my $headers = $r->headers_out;
376     $headers->{'Cache-control'} = 'no-cache';
377     #$r->no_cache(1);
378     $headers->{'Expires'} = '0';
379
380 #    $r->send_http_header;
381
382     if ( $r->filename =~ /\/rt\// ) { #RT
383
384       $ah->interp($rt_interp);
385
386       local $SIG{__WARN__};
387       local $SIG{__DIE__};
388
389       RT::Init();
390
391       # We don't need to handle non-text, non-xml items
392       return -1 if defined( $r->content_type )
393                 && $r->content_type !~ m!(^text/|\bxml\b)!io;
394
395     } else {
396
397       $ah->interp($fs_interp);
398
399     }
400
401     my %session;
402     my $status;
403     eval { $status = $ah->handle_request($r); };
404 #!!
405 #    if ( $@ ) {
406 #       $RT::Logger->crit($@);
407 #    }
408     warn $@ if $@;
409
410     undef %session;
411
412 #!!
413 #    if ($RT::Handle->TransactionDepth) {
414 #       $RT::Handle->ForceRollback;
415 #       $RT::Logger->crit(
416 #"Transaction not committed. Usually indicates a software fault. Data loss may have occurred"
417 #       );
418 #    }
419
420     $status;
421 }
422
423 1;