more contact work and preliminary business card upload
[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 );
59   use Data::Dumper;
60   use Date::Format;
61   use Time::Local;
62   use Time::HiRes;
63   use Time::Duration;
64   use DateTime;
65   use DateTime::Format::Strptime;
66   use FS::Misc::DateTime qw( parse_datetime );
67   use Lingua::EN::Inflect qw(PL);
68   Lingua::EN::Inflect::classical names=>0; #Categorys
69   use Tie::IxHash;
70   use URI;
71   use URI::Escape;
72   use HTML::Entities;
73   use HTML::TreeBuilder;
74   use HTML::FormatText;
75   use HTML::Defang;
76   use JSON;
77 #  use XMLRPC::Transport::HTTP;
78 #  use XMLRPC::Lite; # for XMLRPC::Serializer
79   use MIME::Base64;
80   use IO::Handle;
81   use IO::File;
82   use IO::Scalar;
83   #not actually using this yet anyway...# use IPC::Run3 0.036;
84   use Net::Whois::Raw qw(whois);
85   if ( $] < 5.006 ) {
86     eval "use Net::Whois::Raw 0.32 qw(whois)";
87     die $@ if $@;
88   }
89   use Text::CSV_XS;
90   use Spreadsheet::WriteExcel;
91   use Business::CreditCard 0.30; #for mask-aware cardtype()
92   use NetAddr::IP;
93   use Net::Ping;
94   use Net::Ping::External;
95   #if CPAN #7815 ever gets fixed# if ( $Net::Ping::External::VERSION <= 0.12 )
96   {
97     no warnings 'redefine';
98     eval 'sub Net::Ping::External::_ping_linux { 
99             my %args = @_;
100             my $command = "ping -s $args{size} -c $args{count} -w $args{timeout} $args{host}";
101             return Net::Ping::External::_ping_system($command, 0);
102           }
103          ';
104     die $@ if $@;
105   }
106   use String::Approx qw(amatch);
107   use Chart::LinesPoints;
108   use Chart::Mountain;
109   use Chart::Bars;
110   use Color::Scheme;
111   use HTML::Widgets::SelectLayers 0.07; #should go away in favor of
112                                         #selectlayers.html
113   use Locale::Country;
114   use Business::US::USPS::WebTools::AddressStandardization;
115   use LWP::UserAgent;
116   use Storable qw( nfreeze thaw );
117   use FS;
118   use FS::UID qw( getotaker dbh datasrc driver_name );
119   use FS::Record qw( qsearch qsearchs fields dbdef
120                     str2time_sql str2time_sql_closing
121                    );
122   use FS::Conf;
123   use FS::CGI qw(header menubar table itable ntable idiot
124                  eidiot myexit http_header);
125   use FS::UI::Web qw(svc_url);
126   use FS::UI::Web::small_custview qw(small_custview);
127   use FS::UI::bytecount;
128   use FS::Msgcat qw(gettext geterror);
129   use FS::Misc qw( send_email send_fax ocr_image
130                    states_hash counties cities state_label
131                  );
132   use FS::Misc::eps2png qw( eps2png );
133   use FS::Report::FCC_477;
134   use FS::Report::Table::Monthly;
135   use FS::TicketSystem;
136   use FS::Tron qw( tron_lint );
137
138   use FS::agent;
139   use FS::agent_type;
140   use FS::domain_record;
141   use FS::cust_bill;
142   use FS::cust_bill_pay;
143   use FS::cust_credit;
144   use FS::cust_credit_bill;
145   use FS::cust_main;
146   use FS::cust_main::Search qw(smart_search);
147   use FS::cust_main::Import;
148   use FS::cust_main_county;
149   use FS::cust_location;
150   use FS::cust_pay;
151   use FS::cust_pkg;
152   use FS::cust_pkg::Import;
153   use FS::part_pkg_taxclass;
154   use FS::cust_pkg_reason;
155   use FS::cust_refund;
156   use FS::cust_credit_refund;
157   use FS::cust_pay_refund;
158   use FS::cust_svc;
159   use FS::nas;
160   use FS::part_bill_event;
161   use FS::part_event;
162   use FS::part_event_condition;
163   use FS::part_pkg;
164   use FS::part_referral;
165   use FS::part_svc;
166   use FS::part_svc_router;
167   use FS::part_virtual_field;
168   use FS::pay_batch;
169   use FS::pkg_svc;
170   use FS::port;
171   use FS::queue qw(joblisting);
172   use FS::raddb;
173   use FS::session;
174   use FS::svc_acct;
175   use FS::svc_acct_pop qw(popselector);
176   use FS::acct_rt_transaction;
177   use FS::svc_domain;
178   use FS::svc_forward;
179   use FS::svc_www;
180   use FS::router;
181   use FS::addr_block;
182   use FS::svc_broadband;
183   use FS::svc_external;
184   use FS::type_pkgs;
185   use FS::part_export;
186   use FS::part_export_option;
187   use FS::export_svc;
188   use FS::export_device;
189   use FS::msgcat;
190   use FS::rate;
191   use FS::rate_region;
192   use FS::rate_prefix;
193   use FS::rate_detail;
194   use FS::usage_class;
195   use FS::payment_gateway;
196   use FS::agent_payment_gateway;
197   use FS::XMLRPC;
198   use FS::payby;
199   use FS::cdr;
200   use FS::cdr_batch;
201   use FS::inventory_class;
202   use FS::inventory_item;
203   use FS::pkg_category;
204   use FS::pkg_class;
205   use FS::access_user;
206   use FS::access_user_pref;
207   use FS::access_group;
208   use FS::access_usergroup;
209   use FS::access_groupagent;
210   use FS::access_right;
211   use FS::AccessRight;
212   use FS::svc_phone;
213   use FS::phone_device;
214   use FS::part_device;
215   use FS::reason_type;
216   use FS::reason;
217   use FS::cust_main_note;
218   use FS::tax_class;
219   use FS::cust_tax_location;
220   use FS::part_pkg_taxproduct;
221   use FS::part_pkg_taxoverride;
222   use FS::part_pkg_taxrate;
223   use FS::tax_rate;
224   use FS::part_pkg_report_option;
225   use FS::cust_attachment;
226   use FS::h_cust_pkg;
227   use FS::h_inventory_item;
228   use FS::h_svc_acct;
229   use FS::h_svc_broadband;
230   use FS::h_svc_domain;
231   #use FS::h_domain_record;
232   use FS::h_svc_external;
233   use FS::h_svc_forward;
234   use FS::h_svc_phone;
235   #use FS::h_phone_device;
236   use FS::h_svc_www;
237   use FS::cust_statement;
238   use FS::cust_class;
239   use FS::cust_category;
240   use FS::prospect_main;
241   use FS::contact;
242   use FS::svc_pbx;
243   use FS::discount;
244   use FS::cust_pkg_discount;
245   use FS::cust_bill_pkg_discount;
246   use FS::svc_mailinglist;
247   use FS::cgp_rule;
248   use FS::cgp_rule_condition;
249   use FS::cgp_rule_action;
250   use FS::bill_batch;
251   use FS::cust_bill_batch;
252   use FS::rate_time;
253   use FS::rate_time_interval;
254   use FS::msg_template;
255   use FS::part_tag;
256   use FS::acct_snarf;
257   use FS::part_pkg_discount;
258   # Sammath Naur
259
260   if ( $FS::Mason::addl_handler_use ) {
261     eval $FS::Mason::addl_handler_use;
262     die $@ if $@;
263   }
264
265   if ( %%%RT_ENABLED%%% ) {
266     eval '
267       use lib ( "/opt/rt3/local/lib", "/opt/rt3/lib" );
268       use vars qw($Nobody $SystemUser);
269       use RT;
270       use RT::Util;
271       use RT::Tickets;
272       use RT::Transactions;
273       use RT::Users;
274       use RT::CurrentUser;
275       use RT::Templates;
276       use RT::Queues;
277       use RT::ScripActions;
278       use RT::ScripConditions;
279       use RT::Scrips;
280       use RT::Groups;
281       use RT::GroupMembers;
282       use RT::CustomFields;
283       use RT::CustomFieldValues;
284       use RT::ObjectCustomFieldValues;
285
286       #blah.  manually updated from RT::Interface::Web::Handler
287       use RT::Interface::Web;
288       use MIME::Entity;
289       use Text::Wrapper;
290       use Time::ParseDate;
291       use Time::HiRes;
292       use HTML::Scrubber;
293
294       #blah.  not even in RT::Interface::Web::Handler, just in 
295       #html/NoAuth/css/dhandler and rt-test-dependencies.  ask for it here
296       #to throw a real error instead of just a mysterious unstyled RT
297       use CSS::Squish 0.06;
298
299       use RT::Interface::Web::Request;
300
301       #nother undeclared web UI dep (for ticket links graph)
302       use IPC::Run::SafeHandles;
303
304       #slow, unreliable, segfaults and is optional
305       #see rt/html/Ticket/Elements/ShowTransactionAttachments
306       #use Text::Quoted;
307
308       #?#use File::Path qw( rmtree );
309       #?#use File::Glob qw( bsd_glob );
310       #?#use File::Spec::Unix;
311
312     ';
313     die $@ if $@;
314   }
315
316   *CGI::redirect = sub {
317     my $self = shift;
318     my $cookie = '';
319     if ( $_[0] eq '-cookie' ) { #this isn't actually used at the moment
320       (my $x, $cookie) = (shift, shift);
321       $HTML::Mason::r->err_headers_out->add( 'Set-cookie' => $cookie );
322     }
323     my $location = shift;
324
325     use vars qw($m);
326
327     # false laziness w/below
328     if ( defined(@DBIx::Profile::ISA) ) {
329
330       if ( $FS::CurrentUser::CurrentUser->option('show_db_profile') ) {
331
332         #profiling redirect
333
334         my $page =
335           qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
336           '<BR><BR><PRE>'.
337             ( UNIVERSAL::can(dbh, 'sprintProfile')
338                 ? encode_entities(dbh->sprintProfile())
339                 : 'DBIx::Profile missing sprintProfile method;'.
340                   'unpatched or too old?'                        ).
341           #"\n\n". &sprintAutoProfile().  '</PRE>'.
342           "\n\n".                         '</PRE>'.
343           '</BODY></HTML>';
344
345
346         dbh->{'private_profile'} = {};
347         return $page;
348
349       } else {
350
351         #clear db profile, but normal redirect
352         dbh->{'private_profile'} = {};
353         $m->redirect($location);
354         '';
355
356       }
357
358     } else { #normal redirect
359
360       $m->redirect($location);
361       '';
362
363     }
364
365   };
366   
367   sub include {
368     use vars qw($m);
369     #carp #should just switch to <& &> syntax
370     $m->scomp(@_);
371   }
372
373   sub errorpage {
374     use vars qw($m);
375     $m->comp('/elements/errorpage.html', @_);
376   }
377
378   sub errorpage_popup {
379     use vars qw($m);
380     $m->comp('/elements/errorpage-popup.html', @_);
381   }
382
383   sub redirect {
384     my( $location ) = @_;
385     use vars qw($m);
386     $m->clear_buffer;
387     #false laziness w/above
388     if ( defined(@DBIx::Profile::ISA) ) {
389
390       if ( $FS::CurrentUser::CurrentUser->option('show_db_profile') ) {
391
392         #profiling redirect
393
394         $m->print(
395           qq!<HTML><BODY>Redirect to <A HREF="$location">$location</A>!.
396           '<BR><BR><PRE>'.
397             ( UNIVERSAL::can(dbh, 'sprintProfile')
398                 ? encode_entities(dbh->sprintProfile())
399                 : 'DBIx::Profile missing sprintProfile method;'.
400                   'unpatched or too old?'                        ).
401           #"\n\n". &sprintAutoProfile().  '</PRE>'.
402           "\n\n".                         '</PRE>'.
403           '</BODY></HTML>'
404         );
405
406         dbh->{'private_profile'} = {};
407
408       } else {
409
410         #clear db profile, but normal redirect
411         dbh->{'private_profile'} = {};
412         $m->redirect($location);
413
414       }
415
416     } else { #normal redirect
417
418       $m->redirect($location);
419
420     }
421
422   }
423
424 } # end package HTML::Mason::Commands;
425
426 =head1 SUBROUTINE
427
428 =over 4
429
430 =item mason_interps [ MODE [ OPTION => VALUE ... ] ]
431
432 Returns a list consisting of two HTML::Mason::Interp objects, the first for
433 Freeside pages, and the second for RT pages.
434
435 MODE can be 'apache' or 'standalone'.  If not specified, defaults to 'apache'.
436
437 Options and values can be passed following mode.  Currently available options
438 are:
439
440 I<outbuf> should be set to a scalar reference in standalone mode.
441
442 =cut
443
444 my %defang_opts = ( attribs_to_callback => ['src'], attribs_callback => sub { 1 });
445
446 sub mason_interps {
447   my $mode = shift || 'apache';
448   my %opt = @_;
449
450   #my $request_class = 'HTML::Mason::Request'.
451                       #( $mode eq 'apache' ? '::ApacheHandler' : '' );
452   my $request_class = 'FS::Mason::Request';
453
454   #not entirely sure it belongs here, but what the hey
455   if ( %%%RT_ENABLED%%% && $mode ne 'standalone' ) {
456     RT::LoadConfig();
457   }
458
459   # A hook supporting strange legacy ways people (well, SG) have added stuff on
460
461   my @addl_comp_root = ();
462   my $addl_comp_root_file = '%%%FREESIDE_CONF%%%/addl_comp_root.pl';
463   if ( -e $addl_comp_root_file ) {
464     warn "reading $addl_comp_root_file\n";
465     my $text = slurp( $addl_comp_root_file );
466     my @addl = eval $text;
467     if ( @addl && ! $@ ) {
468       @addl_comp_root = @addl;
469     } elsif ($@) {
470       warn "error parsing $addl_comp_root_file: $@\n";
471     }
472   }
473
474   my $fs_comp_root =
475     scalar(@addl_comp_root)
476       ? [
477           [ 'freeside'=>'%%%FREESIDE_DOCUMENT_ROOT%%%' ],
478           @addl_comp_root,
479         ]
480       : '%%%FREESIDE_DOCUMENT_ROOT%%%';
481
482   my %interp = (
483     request_class        => $request_class,
484     data_dir             => '%%%MASONDATA%%%',
485     error_mode           => 'output',
486     error_format         => 'html',
487     ignore_warnings_expr => '.',
488   );
489
490   $interp{out_method} = $opt{outbuf} if $mode eq 'standalone' && $opt{outbuf};
491
492   my $html_defang = new HTML::Defang (%defang_opts);
493
494   my $js_string_sub = sub {
495     #${$_[0]} =~ s/(['\\\n])/'\\'.($1 eq "\n" ? 'n' : $1)/ge;
496     ${$_[0]} =~ s/(['\\])/\\$1/g;
497     ${$_[0]} =~ s/\r/\\r/g;
498     ${$_[0]} =~ s/\n/\\n/g;
499     ${$_[0]} = "'". ${$_[0]}. "'";
500   };
501
502   my $fs_interp = new HTML::Mason::Interp (
503     %interp,
504     comp_root    => $fs_comp_root,
505     escape_flags => { 'js_string' => $js_string_sub,
506                       'defang'    => sub {
507                         ${$_[0]} = $html_defang->defang(${$_[0]});
508                       },
509                     },
510     compiler     => HTML::Mason::Compiler::ToObject->new(
511                       allow_globals        => [qw(%session)],
512                     ),
513   );
514
515   my $rt_interp = new HTML::Mason::Interp (
516     %interp,
517     comp_root    => [
518                       [ 'rt'       => '%%%FREESIDE_DOCUMENT_ROOT%%%/rt' ],
519                       [ 'freeside' => '%%%FREESIDE_DOCUMENT_ROOT%%%'    ],
520                     ],
521     escape_flags => { 'h'         => \&RT::Interface::Web::EscapeUTF8,
522                       'js_string' => $js_string_sub,
523                     },
524     compiler     => HTML::Mason::Compiler::ToObject->new(
525                       default_escape_flags => 'h',
526                       allow_globals        => [qw(%session)],
527                     ),
528   );
529
530   ( $fs_interp, $rt_interp );
531
532 }
533
534 =back
535
536 =head1 BUGS
537
538 Lurking in the darkness...
539
540 =head1 SEE ALSO
541
542 L<HTML::Mason>, L<FS>, L<RT>
543
544 =cut
545
546 1;