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