155a80966ec06587df955761d25e44b1b13339ea
[freeside.git] / FS / FS / Mason.pm
1 package FS::Mason;
2
3 use strict;
4 use vars qw( @ISA @EXPORT_OK $addl_handler_use );
5 use Exporter;
6 use File::Slurp qw( slurp );
7 use HTML::Mason 1.27; #http://www.masonhq.com/?ApacheModPerl2Redirect
8 use HTML::Mason::Interp;
9 use HTML::Mason::Compiler::ToObject;
10
11 @ISA = qw( Exporter );
12 @EXPORT_OK = qw( mason_interps );
13
14 =head1 NAME
15
16 FS::Mason - Initialize the Mason environment
17
18 =head1 SYNOPSIS
19
20   use FS::Mason qw( mason_interps );
21
22   my( $fs_interp, $rt_interp ) = mason_interps('apache');
23
24   #OR
25
26   my( $fs_interp, $rt_interp ) = mason_interps('standalone'); #XXX name?
27
28 =head1 DESCRIPTION
29
30 Initializes the Mason environment, loads all Freeside and RT libraries, etc.
31
32 =cut
33
34 $addl_handler_use = '';
35 my $addl_handler_use_file = '%%%FREESIDE_CONF%%%/addl_handler_use.pl';
36 if ( -e $addl_handler_use_file ) {
37   $addl_handler_use = slurp( $addl_handler_use_file );
38 }
39
40 # List of modules that you want to use from components (see Admin
41 # manual for details)
42 {
43   package HTML::Mason::Commands;
44
45   use strict;
46   use vars qw( %session );
47   use CGI 3.29 qw(-private_tempfiles); #3.29 to fix RT attachment problems
48
49   #breaks quick payment entry
50   #http://rt.cpan.org/Public/Bug/Display.html?id=37365
51   die "CGI.pm v3.38 is broken, use any other version >= 3.29".
52       " (Debian 5.0?  aptitude remove libcgi-pm-perl)"
53     if $CGI::VERSION == 3.38;
54
55   #use CGI::Carp qw(fatalsToBrowser);
56   use CGI::Cookie;
57   use List::Util qw( max min );
58   use Data::Dumper;
59   use Date::Format;
60   use Time::Local;
61   use Time::HiRes;
62   use Time::Duration;
63   use DateTime;
64   use DateTime::Format::Strptime;
65   use FS::Misc::DateTime qw( parse_datetime );
66   use Lingua::EN::Inflect qw(PL);
67   Lingua::EN::Inflect::classical names=>0; #Categorys
68   use Tie::IxHash;
69   use URI;
70   use URI::Escape;
71   use HTML::Entities;
72   use HTML::TreeBuilder;
73   use HTML::FormatText;
74   use JSON;
75   use MIME::Base64;
76   use IO::Handle;
77   use IO::File;
78   use IO::Scalar;
79   #not actually using this yet anyway...# use IPC::Run3 0.036;
80   use Net::Whois::Raw qw(whois);
81   if ( $] < 5.006 ) {
82     eval "use Net::Whois::Raw 0.32 qw(whois)";
83     die $@ if $@;
84   }
85   use Text::CSV_XS;
86   use Spreadsheet::WriteExcel;
87   use Business::CreditCard 0.30; #for mask-aware cardtype()
88   use NetAddr::IP;
89   use Net::Ping;
90   use Net::Ping::External;
91   #if CPAN #7815 ever gets fixed# if ( $Net::Ping::External::VERSION <= 0.12 )
92   {
93     no warnings 'redefine';
94     eval 'sub Net::Ping::External::_ping_linux { 
95             my %args = @_;
96             my $command = "ping -s $args{size} -c $args{count} -w $args{timeout} $args{host}";
97             return Net::Ping::External::_ping_system($command, 0);
98           }
99          ';
100     die $@ if $@;
101   }
102   use String::Approx qw(amatch);
103   use Chart::LinesPoints;
104   use Chart::Mountain;
105   use Color::Scheme;
106   use HTML::Widgets::SelectLayers 0.07; #should go away in favor of
107                                         #selectlayers.html
108   use Locale::Country;
109   use Business::US::USPS::WebTools::AddressStandardization;
110   use FS;
111   use FS::UID qw( getotaker dbh datasrc driver_name );
112   use FS::Record qw( qsearch qsearchs fields dbdef
113                     str2time_sql str2time_sql_closing
114                    );
115   use FS::Conf;
116   use FS::CGI qw(header menubar table itable ntable idiot
117                  eidiot myexit http_header);
118   use FS::UI::Web qw(svc_url);
119   use FS::UI::Web::small_custview qw(small_custview);
120   use FS::UI::bytecount;
121   use FS::Msgcat qw(gettext geterror);
122   use FS::Misc qw( send_email send_fax states_hash counties state_label );
123   use FS::Misc::eps2png qw( eps2png );
124   use FS::Report::Table::Monthly;
125   use FS::TicketSystem;
126   use FS::Tron qw( tron_lint );
127
128   use FS::agent;
129   use FS::agent_type;
130   use FS::domain_record;
131   use FS::cust_bill;
132   use FS::cust_bill_pay;
133   use FS::cust_credit;
134   use FS::cust_credit_bill;
135   use FS::cust_main qw(smart_search);
136   use FS::cust_main::Import;
137   use FS::cust_main_county;
138   use FS::cust_location;
139   use FS::cust_pay;
140   use FS::cust_pkg;
141   use FS::part_pkg_taxclass;
142   use FS::cust_pkg_reason;
143   use FS::cust_refund;
144   use FS::cust_credit_refund;
145   use FS::cust_pay_refund;
146   use FS::cust_svc;
147   use FS::nas;
148   use FS::part_bill_event;
149   use FS::part_event;
150   use FS::part_event_condition;
151   use FS::part_pkg;
152   use FS::part_referral;
153   use FS::part_svc;
154   use FS::part_svc_router;
155   use FS::part_virtual_field;
156   use FS::pay_batch;
157   use FS::pkg_svc;
158   use FS::port;
159   use FS::queue qw(joblisting);
160   use FS::raddb;
161   use FS::session;
162   use FS::svc_acct;
163   use FS::svc_acct_pop qw(popselector);
164   use FS::acct_rt_transaction;
165   use FS::svc_domain;
166   use FS::svc_forward;
167   use FS::svc_www;
168   use FS::router;
169   use FS::addr_block;
170   use FS::svc_broadband;
171   use FS::svc_external;
172   use FS::type_pkgs;
173   use FS::part_export;
174   use FS::part_export_option;
175   use FS::export_svc;
176   use FS::export_device;
177   use FS::msgcat;
178   use FS::rate;
179   use FS::rate_region;
180   use FS::rate_prefix;
181   use FS::rate_detail;
182   use FS::usage_class;
183   use FS::payment_gateway;
184   use FS::agent_payment_gateway;
185   use FS::XMLRPC;
186   use FS::payby;
187   use FS::cdr;
188   use FS::cdr_batch;
189   use FS::inventory_class;
190   use FS::inventory_item;
191   use FS::pkg_category;
192   use FS::pkg_class;
193   use FS::access_user;
194   use FS::access_user_pref;
195   use FS::access_group;
196   use FS::access_usergroup;
197   use FS::access_groupagent;
198   use FS::access_right;
199   use FS::AccessRight;
200   use FS::svc_phone;
201   use FS::phone_device;
202   use FS::part_device;
203   use FS::reason_type;
204   use FS::reason;
205   use FS::cust_main_note;
206   use FS::tax_class;
207   use FS::cust_tax_location;
208   use FS::part_pkg_taxproduct;
209   use FS::part_pkg_taxoverride;
210   use FS::part_pkg_taxrate;
211   use FS::tax_rate;
212   use FS::part_pkg_report_option;
213   use FS::cust_attachment;
214   use FS::h_cust_pkg;
215   use FS::h_svc_acct;
216   use FS::h_svc_broadband;
217   use FS::h_svc_domain;
218   #use FS::h_domain_record;
219   use FS::h_svc_external;
220   use FS::h_svc_forward;
221   use FS::h_svc_phone;
222   #use FS::h_phone_device;
223   use FS::h_svc_www;
224   use FS::cust_statement;
225   use FS::svc_pbx;
226   use FS::svc_mailinglist;
227   use FS::cgp_rule;
228   use FS::cgp_rule_condition;
229   use FS::cgp_rule_action;
230   # Sammath Naur
231
232   if ( $FS::Mason::addl_handler_use ) {
233     eval $FS::Mason::addl_handler_use;
234     die $@ if $@;
235   }
236
237   if ( %%%RT_ENABLED%%% ) {
238     eval '
239       use lib ( "/opt/rt3/local/lib", "/opt/rt3/lib" );
240       use vars qw($Nobody $SystemUser);
241       use RT;
242       use RT::Tickets;
243       use RT::Transactions;
244       use RT::Users;
245       use RT::CurrentUser;
246       use RT::Templates;
247       use RT::Queues;
248       use RT::ScripActions;
249       use RT::ScripConditions;
250       use RT::Scrips;
251       use RT::Groups;
252       use RT::GroupMembers;
253       use RT::CustomFields;
254       use RT::CustomFieldValues;
255       use RT::ObjectCustomFieldValues;
256
257       #blah.  manually updated from RT::Interface::Web::Handler
258       use RT::Interface::Web;
259       use MIME::Entity;
260       use Text::Wrapper;
261       use Time::ParseDate;
262       use Time::HiRes;
263       use HTML::Scrubber;
264
265       #blah.  not even in RT::Interface::Web::Handler, just in 
266       #html/NoAuth/css/dhandler and rt-test-dependencies.  ask for it here
267       #to throw a real error instead of just a mysterious unstyled RT
268       use CSS::Squish 0.06;
269
270       #slow, unreliable, segfaults and is optional
271       #see rt/html/Ticket/Elements/ShowTransactionAttachments
272       use Text::Quoted;
273
274       #?#use File::Path qw( rmtree );
275       #?#use File::Glob qw( bsd_glob );
276       #?#use File::Spec::Unix;
277
278     ';
279     die $@ if $@;
280   }
281
282   *CGI::redirect = sub {
283     my $self = shift;
284     my $cookie = '';
285     if ( $_[0] eq '-cookie' ) { #this isn't actually used at the moment
286       (my $x, $cookie) = (shift, shift);
287       $HTML::Mason::r->err_headers_out->add( 'Set-cookie' => $cookie );
288     }
289     my $location = shift;
290
291     use vars qw($m);
292
293     # false laziness w/below
294     if ( defined(@DBIx::Profile::ISA) ) {
295
296       if ( $FS::CurrentUser::CurrentUser->option('show_db_profile') ) {
297
298         #profiling redirect
299
300         my $page =
301           qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
302           '<BR><BR><PRE>'.
303             ( UNIVERSAL::can(dbh, 'sprintProfile')
304                 ? encode_entities(dbh->sprintProfile())
305                 : 'DBIx::Profile missing sprintProfile method;'.
306                   'unpatched or too old?'                        ).
307           #"\n\n". &sprintAutoProfile().  '</PRE>'.
308           "\n\n".                         '</PRE>'.
309           '</BODY></HTML>';
310
311
312         dbh->{'private_profile'} = {};
313         return $page;
314
315       } else {
316
317         #clear db profile, but normal redirect
318         dbh->{'private_profile'} = {};
319         $m->redirect($location);
320         '';
321
322       }
323
324     } else { #normal redirect
325
326       $m->redirect($location);
327       '';
328
329     }
330
331   };
332   
333   sub include {
334     use vars qw($m);
335     $m->scomp(@_);
336   }
337
338   sub errorpage {
339     use vars qw($m);
340     $m->comp('/elements/errorpage.html', @_);
341   }
342
343   sub redirect {
344     my( $location ) = @_;
345     use vars qw($m);
346     $m->clear_buffer;
347     #false laziness w/above
348     if ( defined(@DBIx::Profile::ISA) ) {
349
350       if ( $FS::CurrentUser::CurrentUser->option('show_db_profile') ) {
351
352         #profiling redirect
353
354         $m->print(
355           qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
356           '<BR><BR><PRE>'.
357             ( UNIVERSAL::can(dbh, 'sprintProfile')
358                 ? encode_entities(dbh->sprintProfile())
359                 : 'DBIx::Profile missing sprintProfile method;'.
360                   'unpatched or too old?'                        ).
361           #"\n\n". &sprintAutoProfile().  '</PRE>'.
362           "\n\n".                         '</PRE>'.
363           '</BODY></HTML>'
364         );
365
366         dbh->{'private_profile'} = {};
367
368       } else {
369
370         #clear db profile, but normal redirect
371         dbh->{'private_profile'} = {};
372         $m->redirect($location);
373
374       }
375
376     } else { #normal redirect
377
378       $m->redirect($location);
379
380     }
381
382   }
383
384 } # end package HTML::Mason::Commands;
385
386 =head1 SUBROUTINE
387
388 =over 4
389
390 =item mason_interps [ MODE ]
391
392 Returns a list consisting of two HTML::Mason::Interp objects, the first for
393 Freeside pages, and the second for RT pages.
394
395 #MODE can be 'apache' or 'standalone'.  If not specified, defaults to 'apache'.
396
397 =cut
398
399 sub mason_interps {
400   my $mode = shift || 'apache';
401   my %opt = @_;
402
403   #my $request_class = 'HTML::Mason::Request'.
404                       #( $mode eq 'apache' ? '::ApacheHandler' : '' );
405   my $request_class = 'FS::Mason::Request';
406
407   #not entirely sure it belongs here, but what the hey
408   if ( %%%RT_ENABLED%%% ) {
409     RT::LoadConfig();
410   }
411
412   # A hook supporting strange legacy ways people have added stuff on
413
414   my @addl_comp_root = ();
415   my $addl_comp_root_file = '%%%FREESIDE_CONF%%%/addl_comp_root.pl';
416   if ( -e $addl_comp_root_file ) {
417     warn "reading $addl_comp_root_file\n";
418     my $text = slurp( $addl_comp_root_file );
419     my @addl = eval $text;
420     if ( @addl && ! $@ ) {
421       @addl_comp_root = @addl;
422     } elsif ($@) {
423       warn "error parsing $addl_comp_root_file: $@\n";
424     }
425   }
426
427   my %interp = (
428     request_class        => $request_class,
429     data_dir             => '%%%MASONDATA%%%',
430     error_mode           => 'output',
431     error_format         => 'html',
432     ignore_warnings_expr => '.',
433     comp_root            => [
434                               [ 'freeside'=>'%%%FREESIDE_DOCUMENT_ROOT%%%'    ],
435                               [ 'rt'      =>'%%%FREESIDE_DOCUMENT_ROOT%%%/rt' ],
436                               @addl_comp_root,
437                             ],
438   );
439
440   $interp{out_method} = $opt{outbuf} if $mode eq 'standalone' && $opt{outbuf};
441
442   my $fs_interp = new HTML::Mason::Interp (
443     %interp,
444     escape_flags => { 'js_string' => sub {
445                         #${$_[0]} =~ s/(['\\\n])/'\\'.($1 eq "\n" ? 'n' : $1)/ge;
446                         ${$_[0]} =~ s/(['\\])/\\$1/g;
447                         ${$_[0]} =~ s/\n/\\n/g;
448                         ${$_[0]} = "'". ${$_[0]}. "'";
449                       }
450                     },
451     compiler     => HTML::Mason::Compiler::ToObject->new(
452                       allow_globals        => [qw(%session)],
453                     ),
454   );
455
456   my $rt_interp = new HTML::Mason::Interp (
457     %interp,
458     escape_flags => { 'h' => \&RT::Interface::Web::EscapeUTF8 },
459     compiler     => HTML::Mason::Compiler::ToObject->new(
460                       default_escape_flags => 'h',
461                       allow_globals        => [qw(%session)],
462                     ),
463   );
464
465   ( $fs_interp, $rt_interp );
466
467 }
468
469 =back
470
471 =head1 BUGS
472
473 Lurking in the darkness...
474
475 =head1 SEE ALSO
476
477 L<HTML::Mason>, L<FS>, L<RT>
478
479 =cut
480
481 1;