quiet warnings, RT#41682
[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 Carp;
7 use File::Slurp qw( slurp );
8 use HTML::Mason 1.27; #http://www.masonhq.com/?ApacheModPerl2Redirect
9 use HTML::Mason::Interp;
10 use HTML::Mason::Compiler::ToObject;
11
12 @ISA = qw( Exporter );
13 @EXPORT_OK = qw( mason_interps );
14
15 =head1 NAME
16
17 FS::Mason - Initialize the Mason environment
18
19 =head1 SYNOPSIS
20
21   use FS::Mason qw( mason_interps );
22
23   my( $fs_interp, $rt_interp ) = mason_interps('apache');
24
25   #OR
26
27   my( $fs_interp, $rt_interp ) = mason_interps('standalone'); #XXX name?
28
29 =head1 DESCRIPTION
30
31 Initializes the Mason environment, loads all Freeside and RT libraries, etc.
32
33 =cut
34
35 $addl_handler_use = '';
36 my $addl_handler_use_file = '%%%FREESIDE_CONF%%%/addl_handler_use.pl';
37 if ( -e $addl_handler_use_file ) {
38   $addl_handler_use = slurp( $addl_handler_use_file );
39 }
40
41 # List of modules that you want to use from components (see Admin
42 # manual for details)
43 {
44   package HTML::Mason::Commands;
45
46   use strict;
47   use vars qw( %session );
48   use CGI 3.29 qw(-private_tempfiles); #3.29 to fix RT attachment problems
49
50   #breaks quick payment entry
51   #http://rt.cpan.org/Public/Bug/Display.html?id=37365
52   die "CGI.pm v3.38 is broken, use any other version >= 3.29".
53       " (Debian 5.0?  aptitude remove libcgi-pm-perl)"
54     if $CGI::VERSION == 3.38;
55
56   #use CGI::Carp qw(fatalsToBrowser);
57   use CGI::Cookie;
58   use List::Util qw( max min sum );
59   use List::MoreUtils qw( first_index uniq );
60   use Scalar::Util qw( blessed looks_like_number );
61   use Data::Dumper;
62   use Date::Format;
63   use Time::Local;
64   use Time::HiRes;
65   use Time::Duration;
66   use DateTime;
67   use DateTime::Format::Strptime;
68   use FS::Misc::DateTime qw( parse_datetime );
69   use FS::Misc::Geo qw( get_district );
70   use Lingua::EN::Inflect qw(PL);
71   Lingua::EN::Inflect::classical names=>0; #Categorys
72   use Tie::IxHash;
73   use URI;
74   use URI::Escape 3.31;
75   use HTML::Entities;
76   use HTML::TreeBuilder;
77   use HTML::TableExtract qw(tree);
78   use HTML::FormatText;
79   use HTML::Defang;
80   use JSON::XS;
81 #  use XMLRPC::Transport::HTTP;
82 #  use XMLRPC::Lite; # for XMLRPC::Serializer
83   use MIME::Base64;
84   use IO::Handle;
85   use IO::File;
86   use IO::Scalar;
87   use IO::String;
88   use File::Slurp qw( slurp );
89   #not actually using this yet anyway...# use IPC::Run3 0.036;
90   use Net::Whois::Raw qw(whois);
91   if ( $] < 5.006 ) {
92     eval "use Net::Whois::Raw 0.32 qw(whois)";
93     die $@ if $@;
94   }
95   use Text::CSV_XS;
96   use Spreadsheet::WriteExcel;
97   use Spreadsheet::WriteExcel::Utility;
98   use OLE::Storage_Lite;
99   use Excel::Writer::XLSX;
100   #use Excel::Writer::XLSX::Utility; #redundant with above
101
102   use Business::CreditCard 0.30; #for mask-aware cardtype()
103   use NetAddr::IP;
104   use Net::MAC::Vendor;
105   use Net::Ping;
106   use Net::Ping::External;
107   #if CPAN #7815 ever gets fixed# if ( $Net::Ping::External::VERSION <= 0.12 )
108   {
109     no warnings 'redefine';
110     eval 'sub Net::Ping::External::_ping_linux { 
111             my %args = @_;
112             my $command = "ping -s $args{size} -c $args{count} -w $args{timeout} $args{host}";
113             return Net::Ping::External::_ping_system($command, 0);
114           }
115          ';
116     die $@ if $@;
117   }
118   use String::Approx qw(amatch);
119   use Chart::LinesPoints;
120   use Chart::Mountain;
121   use Chart::Bars;
122   use Color::Scheme;
123   use HTML::Widgets::SelectLayers 0.07; #should go away in favor of
124                                         #selectlayers.html
125   use Locale::Country;
126   use Business::US::USPS::WebTools::AddressStandardization;
127   use Geo::GoogleEarth::Pluggable;
128   use LWP::UserAgent;
129   use Storable qw( nfreeze thaw );
130   use FS;
131   use FS::UID qw( getotaker dbh datasrc driver_name );
132   use FS::Record qw( qsearch qsearchs fields dbdef
133                     str2time_sql str2time_sql_closing
134                     midnight_sql regexp_sql
135                    );
136   use FS::Conf;
137   use FS::CGI qw(header menubar table itable ntable idiot
138                  eidiot myexit http_header);
139   use FS::UI::Web qw(svc_url random_id
140                   get_page_pref  set_page_pref);
141   use FS::UI::Web::small_custview qw(small_custview);
142   use FS::UI::bytecount;
143   use FS::Msgcat qw(gettext geterror);
144   use FS::Misc qw( send_email send_fax ocr_image
145                    states_hash counties cities state_label
146                    card_types
147                  );
148   use FS::Misc::eps2png qw( eps2png );
149   use FS::Report::FCC_477;
150   use FS::Report::Table;
151   use FS::Report::Table::Monthly;
152   use FS::Report::Table::Daily;
153   use FS::Report::Tax;
154   use FS::TicketSystem;
155   use FS::NetworkMonitoringSystem;
156   use FS::Tron qw( tron_lint );
157   use FS::Locales;
158   use FS::Maketext qw( mt emt js_mt );
159
160   use FS::Query;
161
162   use FS::agent;
163   use FS::agent_type;
164   use FS::domain_record;
165   use FS::cust_bill;
166   use FS::cust_bill_pay;
167   use FS::cust_credit;
168   use FS::cust_credit_bill;
169   use FS::cust_main;
170   use FS::h_cust_main;
171   use FS::cust_main::Search qw(smart_search);
172   use FS::cust_main::Import;
173   use FS::cust_main_county;
174   use FS::cust_location;
175   use FS::cust_pay;
176   use FS::cust_pkg;
177   use FS::cust_pkg::Import;
178   use FS::part_pkg_taxclass;
179   use FS::cust_pkg_reason;
180   use FS::cust_refund;
181   use FS::cust_credit_refund;
182   use FS::cust_pay_refund;
183   use FS::cust_svc;
184   use FS::nas;
185   use FS::part_bill_event;
186   use FS::part_event;
187   use FS::part_event_condition;
188   use FS::part_pkg;
189   use FS::part_referral;
190   use FS::part_svc;
191   use FS::part_svc_router;
192   use FS::part_virtual_field;
193   use FS::pay_batch;
194   use FS::pkg_svc;
195   use FS::port;
196   use FS::queue qw(joblisting);
197   use FS::raddb;
198   use FS::session;
199   use FS::svc_acct;
200   use FS::svc_acct_pop qw(popselector);
201   use FS::acct_rt_transaction;
202   use FS::svc_domain;
203   use FS::svc_forward;
204   use FS::svc_www;
205   use FS::router;
206   use FS::addr_block;
207   use FS::svc_broadband;
208   use FS::svc_external;
209   use FS::type_pkgs;
210   use FS::part_export;
211   use FS::part_export_option;
212   use FS::export_svc;
213   use FS::export_device;
214   use FS::msgcat;
215   use FS::rate;
216   use FS::rate_region;
217   use FS::rate_prefix;
218   use FS::rate_detail;
219   use FS::usage_class;
220   use FS::payment_gateway;
221   use FS::agent_payment_gateway;
222   use FS::XMLRPC;
223   use FS::payby;
224   use FS::cdr;
225   use FS::cdr_batch;
226   use FS::inventory_class;
227   use FS::inventory_item;
228   use FS::pkg_category;
229   use FS::pkg_class;
230   use FS::access_user;
231   use FS::access_user_pref;
232   use FS::access_group;
233   use FS::access_usergroup;
234   use FS::access_groupagent;
235   use FS::access_right;
236   use FS::AccessRight;
237   use FS::svc_phone;
238   use FS::phone_device;
239   use FS::part_device;
240   use FS::reason_type;
241   use FS::reason;
242   use FS::cust_main_note;
243   use FS::tax_class;
244   use FS::cust_tax_location;
245   use FS::part_pkg_taxproduct;
246   use FS::part_pkg_taxoverride;
247   use FS::part_pkg_taxrate;
248   use FS::tax_rate;
249   use FS::part_pkg_report_option;
250   use FS::cust_attachment;
251   use FS::h_cust_pkg;
252   use FS::h_inventory_item;
253   use FS::h_svc_acct;
254   use FS::h_svc_broadband;
255   use FS::h_svc_domain;
256   #use FS::h_domain_record;
257   use FS::h_svc_external;
258   use FS::h_svc_forward;
259   use FS::h_svc_phone;
260   #use FS::h_phone_device;
261   use FS::h_svc_www;
262   use FS::cust_statement;
263   use FS::cust_class;
264   use FS::cust_category;
265   use FS::prospect_main;
266   use FS::contact;
267   use FS::phone_type;
268   use FS::svc_pbx;
269   use FS::discount;
270   use FS::cust_pkg_discount;
271   use FS::cust_bill_pkg_discount;
272   use FS::svc_mailinglist;
273   use FS::cgp_rule;
274   use FS::cgp_rule_condition;
275   use FS::cgp_rule_action;
276   use FS::bill_batch;
277   use FS::cust_bill_batch;
278   use FS::rate_time;
279   use FS::rate_time_interval;
280   use FS::msg_template;
281   use FS::part_tag;
282   use FS::acct_snarf;
283   use FS::part_pkg_discount;
284   use FS::svc_cert;
285   use FS::svc_dsl;
286   use FS::qual;
287   use FS::qual_option;
288   use FS::dsl_note;
289   use FS::part_pkg_vendor;
290   use FS::cust_note_class;
291   use FS::svc_port;
292   use FS::lata;
293   use FS::did_vendor;
294   use FS::did_order;
295   use FS::torrus_srvderive;
296   use FS::torrus_srvderive_component;
297   use FS::areacode;
298   use FS::svc_dish;
299   use FS::h_svc_dish;
300   use FS::svc_hardware;
301   use FS::h_svc_hardware;
302   use FS::hardware_class;
303   use FS::hardware_type;
304   use FS::hardware_status;
305   use FS::did_order_item;
306   use FS::msa;
307   use FS::rate_center;
308   use FS::cust_msg;
309   use FS::radius_group;
310   use FS::template_content;
311   use FS::dsl_device;
312   use FS::nas;
313   use FS::nas;
314   use FS::export_nas;
315   use FS::legacy_cust_bill;
316   use FS::rate_tier;
317   use FS::rate_tier_detail;
318   use FS::radius_attr;
319   use FS::discount_plan;
320   use FS::tower;
321   use FS::tower_sector;
322   use FS::sales;
323   use FS::contact_class;
324   use FS::part_svc_class;
325   use FS::upload_target;
326   use FS::quotation;
327   use FS::quotation_pkg;
328   use FS::quotation_pkg_discount;
329   use FS::cust_bill_void;
330   use FS::cust_bill_pkg_void;
331   use FS::cust_bill_pkg_detail_void;
332   use FS::cust_bill_pkg_display_void;
333   use FS::cust_bill_pkg_tax_location_void;
334   use FS::cust_bill_pkg_tax_rate_location_void;
335   use FS::cust_tax_exempt_pkg_void;
336   use FS::cust_bill_pkg_discount_void;
337   use FS::agent_pkg_class;
338   use FS::svc_export_machine;
339   use FS::GeocodeCache;
340   use FS::log;
341   use FS::log_context;
342   use FS::part_pkg_usage_class;
343   use FS::cust_pkg_usage;
344   use FS::part_pkg_usage_class;
345   use FS::part_pkg_usage;
346   use FS::cdr_cust_pkg_usage;
347   use FS::part_pkg_msgcat;
348   use FS::svc_cable;
349   use FS::sales_pkg_class;
350   use FS::svc_alarm;
351   use FS::cable_model;
352   use FS::invoice_mode;
353   use FS::invoice_conf;
354   use FS::cable_provider;
355   use FS::cust_credit_void;
356   use FS::discount_class;
357   use FS::alarm_system;
358   use FS::alarm_type;
359   use FS::alarm_station;
360   use FS::addr_range;
361   use FS::pbx_extension;
362   use FS::cust_event_fee;
363   use FS::part_fee;
364   use FS::cust_bill_pkg_fee;
365   use FS::part_fee_msgcat;
366   use FS::part_fee_usage;
367   use FS::sched_item;
368   use FS::sched_avail;
369   use FS::export_batch;
370   use FS::export_batch_item;
371   use FS::part_pkg_fcc_option;
372   use FS::state;
373   use FS::queue_stat;
374   use FS::deploy_zone;
375   use FS::deploy_zone_block;
376   use FS::deploy_zone_vertex;
377   use FS::circuit_type;
378   use FS::circuit_provider;
379   use FS::circuit_termination;
380   use FS::svc_circuit;
381   use FS::legacy_cust_history;
382   use FS::quotation_pkg_tax;
383   use FS::cust_pkg_reason_fee;
384   use FS::access_user_log;
385   use FS::report_batch;
386   use FS::report_batch;
387   use FS::report_batch;
388   use FS::report_batch;
389   use FS::password_history;
390   use FS::svc_fiber;
391   use FS::fiber_olt;
392   use FS::olt_site;
393   use FS::access_user_page_pref;
394   # Sammath Naur
395
396   if ( $FS::Mason::addl_handler_use ) {
397     eval $FS::Mason::addl_handler_use;
398     die $@ if $@;
399   }
400
401   if ( %%%RT_ENABLED%%% ) {
402     eval '
403       use lib ( "/opt/rt3/local/lib", "/opt/rt3/lib" );
404       use vars qw($Nobody $SystemUser);
405       use RT;
406       use RT::Util;
407       use RT::Tickets;
408       use RT::Transactions;
409       use RT::Users;
410       use RT::CurrentUser;
411       use RT::Templates;
412       use RT::Queues;
413       use RT::ScripActions;
414       use RT::ScripConditions;
415       use RT::Scrips;
416       use RT::Groups;
417       use RT::GroupMembers;
418       use RT::CustomFields;
419       use RT::CustomFieldValues;
420       use RT::ObjectCustomFieldValues;
421
422       #blah.  manually updated from RT::Interface::Web::Handler
423       use RT::Interface::Web;
424       use MIME::Entity;
425       use Text::Wrapper;
426       use Time::ParseDate;
427       use Time::HiRes;
428       use HTML::Scrubber;
429
430       #blah.  not even in RT::Interface::Web::Handler, just in 
431       #html/NoAuth/css/dhandler and rt-test-dependencies.  ask for it here
432       #to throw a real error instead of just a mysterious unstyled RT
433       use CSS::Squish 0.06;
434
435       use RT::Interface::Web::Request;
436
437       #another undeclared web UI dep (for ticket links graph)
438       use IPC::Run::SafeHandles;
439
440       #slow, unreliable, segfaults and is optional
441       #see rt/html/Ticket/Elements/ShowTransactionAttachments
442       #use Text::Quoted;
443
444       #?#use File::Path qw( rmtree );
445       #?#use File::Glob qw( bsd_glob );
446       #?#use File::Spec::Unix;
447
448     ';
449     die $@ if $@;
450   }
451
452   no warnings 'redefine';
453   *CGI::redirect = sub {
454     my $self = shift;
455     my $cookie = '';
456     if ( $_[0] eq '-cookie' ) { #this isn't actually used at the moment
457       (my $x, $cookie) = (shift, shift);
458       $HTML::Mason::r->err_headers_out->add( 'Set-cookie' => $cookie );
459     }
460     my $location = shift;
461
462     use vars qw($m);
463
464     # false laziness w/below
465     if ( @DBIx::Profile::ISA ) {
466
467       if ( $FS::CurrentUser::CurrentUser->option('show_db_profile') ) {
468
469         #profiling redirect
470
471         my $page =
472           qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
473           '<BR><BR><PRE>'.
474             ( UNIVERSAL::can(dbh, 'sprintProfile')
475                 ? encode_entities(dbh->sprintProfile())
476                 : 'DBIx::Profile missing sprintProfile method;'.
477                   'unpatched or too old?'                        ).
478           #"\n\n". &sprintAutoProfile().  '</PRE>'.
479           "\n\n".                         '</PRE>'.
480           '</BODY></HTML>';
481
482
483         dbh->{'private_profile'} = {};
484         return $page;
485
486       } else {
487
488         #clear db profile, but normal redirect
489         dbh->{'private_profile'} = {};
490         $m->redirect($location);
491         '';
492
493       }
494
495     } else { #normal redirect
496
497       $m->redirect($location);
498       '';
499
500     }
501
502   };
503   
504   sub include {
505     use vars qw($m);
506     #carp #should just switch to <& &> syntax
507     $m->scomp(@_);
508   }
509
510   sub errorpage {
511     use vars qw($m);
512     $m->comp('/elements/errorpage.html', @_);
513   }
514
515   sub errorpage_popup {
516     use vars qw($m);
517     $m->comp('/elements/errorpage-popup.html', @_);
518   }
519
520   sub redirect {
521     my( $location ) = @_;
522     use vars qw($m);
523     $m->clear_buffer;
524     #false laziness w/above
525     if ( @DBIx::Profile::ISA ) {
526
527       if ( $FS::CurrentUser::CurrentUser->option('show_db_profile') ) {
528
529         #profiling redirect
530
531         $m->print(
532           qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
533           '<BR><BR><PRE>'.
534             ( UNIVERSAL::can(dbh, 'sprintProfile')
535                 ? encode_entities(dbh->sprintProfile())
536                 : 'DBIx::Profile missing sprintProfile method;'.
537                   'unpatched or too old?'                        ).
538           #"\n\n". &sprintAutoProfile().  '</PRE>'.
539           "\n\n".                         '</PRE>'.
540           '</BODY></HTML>'
541         );
542
543         dbh->{'private_profile'} = {};
544
545       } else {
546
547         #clear db profile, but normal redirect
548         dbh->{'private_profile'} = {};
549         $m->redirect($location);
550
551       }
552
553     } else { #normal redirect
554
555       $m->redirect($location);
556
557     }
558
559   }
560
561 } # end package HTML::Mason::Commands;
562
563 =head1 SUBROUTINE
564
565 =over 4
566
567 =item mason_interps [ MODE [ OPTION => VALUE ... ] ]
568
569 Returns a list consisting of two HTML::Mason::Interp objects, the first for
570 Freeside pages, and the second for RT pages.
571
572 MODE can be 'apache' or 'standalone'.  If not specified, defaults to 'apache'.
573
574 Options and values can be passed following mode.  Currently available options
575 are:
576
577 I<outbuf> should be set to a scalar reference in standalone mode.
578
579 =cut
580
581 my %defang_opts = ( attribs_to_callback => ['src'], attribs_callback => sub { 1 });
582
583 sub mason_interps {
584   my $mode = shift || 'apache';
585   my %opt = @_;
586
587   #my $request_class = 'HTML::Mason::Request'.
588                       #( $mode eq 'apache' ? '::ApacheHandler' : '' );
589   my $request_class = $mode eq 'standalone' ? 'FS::Mason::StandaloneRequest'
590                                             : 'FS::Mason::Request';
591
592   #not entirely sure it belongs here, but what the hey
593   if ( %%%RT_ENABLED%%% && $mode ne 'standalone' ) {
594     RT::LoadConfig();
595   }
596
597   my $fs_comp_root = '%%%FREESIDE_DOCUMENT_ROOT%%%';
598
599   my %interp = (
600     request_class        => $request_class,
601     data_dir             => '%%%MASONDATA%%%',
602     error_mode           => 'output',
603     error_format         => 'html',
604     ignore_warnings_expr => '.',
605   );
606
607   $interp{out_method} = $opt{outbuf} if $mode eq 'standalone' && $opt{outbuf};
608
609   my $html_defang = new HTML::Defang (%defang_opts);
610
611   #false laziness w/ FS::Maketext js_mt
612   my $js_string_sub = sub {
613     #${$_[0]} =~ s/(['\\\n])/'\\'.($1 eq "\n" ? 'n' : $1)/ge;
614     ${$_[0]} =~ s/(['\\])/\\$1/g;
615     ${$_[0]} =~ s/\r/\\r/g;
616     ${$_[0]} =~ s/\n/\\n/g;
617     # prevent premature termination of the script
618     ${$_[0]} =~ s[</script>][<\\/script>]ig;
619     ${$_[0]} = "'". ${$_[0]}. "'";
620   };
621
622   my $defang_sub = sub {
623     ${$_[0]} = $html_defang->defang(${$_[0]});
624   };
625
626   my $fs_interp = new HTML::Mason::Interp (
627     %interp,
628     comp_root    => $fs_comp_root,
629     escape_flags => { 'js_string'   => $js_string_sub,
630                       'defang'      => $defang_sub,
631                     },
632     compiler     => HTML::Mason::Compiler::ToObject->new(
633                       allow_globals        => [qw(%session)],
634                     ),
635   );
636
637   my $rt_interp = new HTML::Mason::Interp (
638     %interp,
639     comp_root    => [
640                       [ 'rt'       => '%%%FREESIDE_DOCUMENT_ROOT%%%/rt' ],
641                       [ 'freeside' => '%%%FREESIDE_DOCUMENT_ROOT%%%'    ],
642                     ],
643     escape_flags => { 'h'         => \&RT::Interface::Web::EscapeUTF8,
644                       'u'         => \&RT::Interface::Web::EscapeURI,
645                       'j'         => \&RT::Interface::Web::EscapeJS,
646                       'js_string' => $js_string_sub,
647                     },
648     compiler     => HTML::Mason::Compiler::ToObject->new(
649                       default_escape_flags => 'h',
650                       allow_globals        => [qw(%session $DECODED_ARGS)],
651                     ),
652   );
653
654   ( $fs_interp, $rt_interp );
655
656 }
657
658 =back
659
660 =head1 BUGS
661
662 Lurking in the darkness...
663
664 =head1 SEE ALSO
665
666 L<HTML::Mason>, L<FS>, L<RT>
667
668 =cut
669
670 1;