RT#42380: Show usage for broadband services in selfservice portal
[freeside.git] / FS / FS / ClientAPI / MyAccount.pm
1 package FS::ClientAPI::MyAccount;
2
3 use 5.008; #require 5.8+ for Time::Local 1.05+
4 use strict;
5 use vars qw( $cache $DEBUG $me );
6 use subs qw( _cache _provision );
7 use IO::Scalar;
8 use Data::Dumper;
9 use Digest::MD5 qw(md5_hex);
10 use Digest::SHA qw(sha512_hex);
11 use Date::Format;
12 use Time::Duration;
13 use Time::Local qw(timelocal_nocheck);
14 use Business::CreditCard;
15 use HTML::Entities;
16 use Text::CSV_XS;
17 use Spreadsheet::WriteExcel;
18 use OLE::Storage_Lite;
19 use FS::UI::Web::small_custview qw(small_custview); #less doh
20 use FS::UI::Web;
21 use FS::UI::bytecount qw( display_bytecount );
22 use FS::Conf;
23 #use FS::UID qw(dbh);
24 use FS::Record qw(qsearch qsearchs dbh);
25 use FS::Msgcat qw(gettext);
26 use FS::Misc qw(card_types money_pretty);
27 use FS::Misc::DateTime qw(parse_datetime);
28 use FS::TicketSystem;
29 use FS::ClientAPI_SessionCache;
30 use FS::cust_svc;
31 use FS::svc_acct;
32 use FS::svc_forward;
33 use FS::svc_domain;
34 use FS::svc_phone;
35 use FS::svc_external;
36 use FS::svc_dsl;
37 use FS::dsl_device;
38 use FS::part_svc;
39 use FS::cust_main;
40 use FS::cust_bill;
41 use FS::legacy_cust_bill;
42 use FS::cust_main_county;
43 use FS::part_pkg;
44 use FS::cust_pkg;
45 use FS::payby;
46 use FS::acct_rt_transaction;
47 use FS::msg_template;
48 use FS::contact;
49 use FS::cust_location;
50
51 # for code organization
52 use FS::ClientAPI::MyAccount::contact;
53 use FS::ClientAPI::MyAccount::quotation;
54
55 $DEBUG = 0;
56 $me = '[FS::ClientAPI::MyAccount]';
57
58 use vars qw( @cust_main_editable_fields @location_editable_fields );
59 @cust_main_editable_fields = qw(
60   first last company daytime night fax mobile
61   locale
62   payby payinfo payname paystart_month paystart_year payissue payip
63   ss paytype paystate stateid stateid_state
64 );
65 @location_editable_fields = qw(
66   address1 address2 city county state zip country
67 );
68
69
70 BEGIN { #preload to reduce time customer_info takes
71   if ( $FS::TicketSystem::system ) {
72     warn "$me: initializing ticket system\n" if $DEBUG;
73     FS::TicketSystem->init();
74   }
75 }
76
77 sub _cache {
78   $cache ||= new FS::ClientAPI_SessionCache( {
79                'namespace' => 'FS::ClientAPI::MyAccount',
80              } );
81 }
82
83 sub skin_info {
84   my $p = shift;
85
86   my($context, $session, $custnum) = _custoragent_session_custnum($p);
87   #return { 'error' => $session } if $context eq 'error';
88
89   my $agentnum = '';
90   if ( $context eq 'customer' ) {
91
92     my $sth = dbh->prepare('SELECT agentnum FROM cust_main WHERE custnum = ?')
93       or die dbh->errstr;
94
95     $sth->execute($custnum) or die $sth->errstr;
96
97     $agentnum = $sth->fetchrow_arrayref->[0]
98       or die "no agentnum for custnum $custnum";
99
100   #} elsif ( $context eq 'agent' ) {
101   } elsif ( defined($p->{'agentnum'}) and $p->{'agentnum'} =~ /^(\d+)$/ ) {
102     $agentnum = $1;
103   }
104   $p->{'agentnum'} = $agentnum;
105
106   my $conf = new FS::Conf;
107
108   #false laziness w/Signup.pm
109
110   my $skin_info_cache_agent = _cache->get("skin_info_cache_agent$agentnum");
111
112   if ( $skin_info_cache_agent ) {
113
114     warn "$me loading cached skin info for agentnum $agentnum\n"
115       if $DEBUG > 1;
116
117   } else {
118
119     warn "$me populating skin info cache for agentnum $agentnum\n"
120       if $DEBUG > 1;
121
122     $skin_info_cache_agent = {
123       'agentnum' => $agentnum,
124       ( map { $_ => scalar( $conf->config($_, $agentnum) ) }
125         qw( company_name date_format ) ),
126       ( map { $_ => scalar( $conf->config("selfservice-$_", $agentnum ) ) }
127         qw( body_bgcolor box_bgcolor stripe1_bgcolor stripe2_bgcolor
128             text_color link_color vlink_color hlink_color alink_color
129             font title_color title_align title_size menu_bgcolor menu_fontsize
130           )
131       ),
132       'menu_disable' => [ $conf->config('selfservice-menu_disable',$agentnum) ],
133       ( map { $_ => $conf->exists("selfservice-$_", $agentnum ) }
134         qw( menu_skipblanks menu_skipheadings menu_nounderline no_logo enable_payment_without_balance )
135       ),
136       ( map { $_ => scalar($conf->config_binary("selfservice-$_", $agentnum)) }
137         qw( title_left_image title_right_image
138             menu_top_image menu_body_image menu_bottom_image
139           )
140       ),
141       'logo' => scalar($conf->config_binary('logo.png', $agentnum )),
142       ( map { $_ => join("\n", $conf->config("selfservice-$_", $agentnum ) ) }
143         qw( head body_header body_footer company_address ) ),
144       'money_char' => $conf->config("money_char") || '$',
145       'menu' => join("\n", $conf->config("ng_selfservice-menu", $agentnum ) ) ||
146                 'main.php Home
147
148                  services.php Services
149                  services.php My Services
150                  services_new.php Order a new service
151
152                  personal.php Profile
153                  personal.php Personal Information
154                  password.php Change Password
155
156                  payment.php Payments
157                  payment_cc.php Credit Card Payment
158                  payment_ach.php Electronic Check Payment
159                  payment_paypal.php PayPal Payment
160                  payment_webpay.php Webpay Payments
161
162                  usage.php Usage
163                  usage_data.php Data usage
164                  usage_cdr.php Call usage
165
166                  tickets.php Help Desk
167                  tickets.php Open Tickets
168                  tickets_resolved.php Resolved Tickets
169                  ticket_create.php Create a new ticket
170
171                  docs.php FAQs
172
173                  logout.php Logout
174                 ',
175     };
176
177     _cache->set("skin_info_cache_agent$agentnum", $skin_info_cache_agent);
178
179   }
180
181   #{ %$skin_info_cache_agent };
182   $skin_info_cache_agent;
183
184 }
185
186 sub login_info {
187   my $p = shift;
188
189   my $conf = new FS::Conf;
190
191   my %info = (
192     %{ skin_info($p) },
193     'phone_login'  => $conf->exists('selfservice_server-phone_login'),
194     'single_domain'=> scalar($conf->config('selfservice_server-single_domain')),
195     'banner_url'       => scalar($conf->config('selfservice-login_banner_url')),
196     'banner_image_md5' => 
197       md5_hex($conf->config_binary('selfservice-login_banner_image')),
198   );
199
200   return \%info;
201
202 }
203
204 sub login_banner_image {
205   my $p = shift;
206   my $conf = new FS::Conf;
207   my $image = $conf->config_binary('selfservice-login_banner_image');
208   return { 
209     'md5'   => md5_hex($image),
210     'image' => $image,
211   };
212 }
213
214 #false laziness w/FS::ClientAPI::passwd::passwd
215 sub login {
216   my $p = shift;
217
218   my $conf = new FS::Conf;
219
220   my $svc_x = '';
221   my $session = {};
222   if ( $p->{'domain'} eq 'svc_phone'
223        && $conf->exists('selfservice_server-phone_login') ) { 
224
225     my $svc_phone = qsearchs( 'svc_phone', { 'phonenum' => $p->{'username'} } );
226     return { error => 'Number not found.' } unless $svc_phone;
227
228     #XXX?
229     #my $pkg_svc = $svc_acct->cust_svc->pkg_svc;
230     #return { error => 'Only primary user may log in.' } 
231     #  if $conf->exists('selfservice_server-primary_only')
232     #    && ( ! $pkg_svc || $pkg_svc->primary_svc ne 'Y' );
233
234     return { error => 'Incorrect PIN.' }
235       unless $svc_phone->check_pin($p->{'password'});
236
237     $svc_x = $svc_phone;
238
239   } elsif ( $p->{email}
240               && (my $contact = FS::contact->by_selfservice_email($p->{email}))
241           )
242   {
243     return { error => 'Incorrect contact password.' }
244       unless $contact->authenticate_password($p->{'password'});
245
246     $session->{'contactnum'} = $contact->contactnum;
247
248     $session->{'custnum'} = $contact->custnum;
249
250   } else {
251
252     ( $p->{username}, $p->{domain} ) = split('@', $p->{email}) if $p->{email};
253
254     my $svc_domain = qsearchs('svc_domain', { 'domain' => $p->{'domain'} } )
255       or return { error => 'Domain '. $p->{'domain'}. ' not found' };
256
257     my @svc_acct = qsearch( 'svc_acct', { 'username'  => $p->{'username'},
258                                           'domsvc'    => $svc_domain->svcnum, }
259                           );
260
261     if ( $conf->exists('selfservice_server-login_svcpart') ) {
262       my @svcpart = $conf->config('selfservice_server-login_svcpart');
263       @svc_acct = grep { my $svcpart = $_->cust_svc->svcpart;
264                          scalar( grep( $_ eq $svcpart, @svcpart ) );
265                        }
266                     @svc_acct;
267     }
268
269     if ( $conf->exists('selfservice_server-primary_only') ) {
270         @svc_acct =
271           grep {
272             my $cust_svc = $_->cust_svc;
273             $cust_svc->cust_pkg->part_pkg->svcpart([qw( svc_acct svc_phone )])
274               == $cust_svc->svcpart
275           }
276           @svc_acct;
277     }
278
279     return { error => 'User not found.' } unless @svc_acct;
280
281     #return { error => 'Multiple users.' } if scalar(@svc_acct) > 1;
282
283     my $svc_acct = $svc_acct[0];
284
285     if ( $conf->exists('selfservice_server-login_svcpart') ) {
286       my @svcpart = $conf->config('selfservice_server-login_svcpart');
287       my $svcpart = $svc_acct->cust_svc->svcpart;
288       return { error => 'Invalid user.' } 
289         unless grep($_ eq $svcpart, @svcpart);
290     }
291
292     return { error => 'Incorrect password.' }
293       unless $svc_acct->check_password($p->{'password'});
294
295     $svc_x = $svc_acct;
296
297   }
298
299   if ( $svc_x ) {
300
301     $session->{'svcnum'} = $svc_x->svcnum;
302
303     my $cust_svc = $svc_x->cust_svc;
304     my $cust_pkg = $cust_svc->cust_pkg;
305     if ( $cust_pkg ) {
306       my $cust_main = $cust_pkg->cust_main;
307       $session->{'custnum'} = $cust_main->custnum;
308       if ( $conf->exists('pkg-balances') ) {
309         my @cust_pkg = grep { $_->part_pkg->freq !~ /^(0|$)/ }
310                             $cust_main->ncancelled_pkgs;
311         $session->{'pkgnum'} = $cust_pkg->pkgnum
312           if scalar(@cust_pkg) > 1;
313       }
314     }
315
316     #my $pkg_svc = $svc_acct->cust_svc->pkg_svc;
317     #return { error => 'Only primary user may log in.' } 
318     #  if $conf->exists('selfservice_server-primary_only')
319     #    && ( ! $pkg_svc || $pkg_svc->primary_svc ne 'Y' );
320     my $part_pkg = $cust_pkg->part_pkg;
321     return { error => 'Only primary user may log in.' }
322       if $conf->exists('selfservice_server-primary_only')
323          && $cust_svc->svcpart != $part_pkg->svcpart([qw( svc_acct svc_phone )]);
324
325   }
326
327   my $session_id;
328   do {
329     $session_id = md5_hex(md5_hex(time(). {}. rand(). $$))
330   } until ( ! defined _cache->get($session_id) ); #just in case
331
332   my $timeout = $conf->config('selfservice-session_timeout') || '1 hour';
333   _cache->set( $session_id, $session, $timeout );
334
335   return { 'error'      => '',
336            'session_id' => $session_id,
337          };
338 }
339
340 sub logout {
341   my $p = shift;
342   my $skin_info = skin_info($p);
343   if ( $p->{'session_id'} ) {
344     _cache->remove($p->{'session_id'});
345     return { %$skin_info, 'error' => '' };
346   } else {
347     return { %$skin_info, 'error' => "Can't resume session" }; #better error message
348   }
349 }
350
351 sub switch_acct {
352   my $p = shift;
353
354   my($context, $session, $custnum) = _custoragent_session_custnum($p);
355   return { 'error' => $session } if $context eq 'error';
356
357   my $svc_acct = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct' )
358     or return { 'error' => "Service not found" };
359
360   $session->{'svcnum'} = $svc_acct->svcnum;
361
362   my $conf = new FS::Conf;
363   my $timeout = $conf->config('selfservice-session_timeout') || '1 hour';
364   _cache->set( $p->{'session_id'}, $session, $timeout );
365
366   return { 'error' => '' };
367
368 }
369
370 sub payment_gateway {
371   # internal use only
372   # takes a cust_main and a cust_payby entry, returns the payment_gateway
373   my $conf = new FS::Conf;
374   my $cust_main = shift;
375   my $cust_payby = shift;
376   my $gatewaynum = $conf->config('selfservice-payment_gateway');
377   if ( $gatewaynum ) {
378     my $pg = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
379     die "configured gatewaynum $gatewaynum not found!" if !$pg;
380     return $pg;
381   }
382   else {
383     return '' if ! FS::payby->realtime($cust_payby);
384     my $pg = $cust_main->agent->payment_gateway(
385       'method'  => FS::payby->payby2bop($cust_payby),
386       'nofatal' => 1
387     );
388     return $pg;
389   }
390 }
391
392 sub access_info {
393   my $p = shift;
394
395   my $conf = new FS::Conf;
396
397   my $info = skin_info($p);
398
399   use vars qw( $cust_paybys ); #cache for performance
400   unless ( $cust_paybys ) {
401
402     my %cust_paybys = map { $_ => 1 }
403                       map { FS::payby->payby2payment($_) }
404                           $conf->config('signup_server-payby');
405
406     $cust_paybys = [ keys %cust_paybys ];
407
408   }
409   $info->{'cust_paybys'} = $cust_paybys;
410
411   my($context, $session, $custnum) = _custoragent_session_custnum($p);
412   return { 'error' => $session } if $context eq 'error';
413
414   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
415     or return { 'error' => "unknown custnum $custnum" };
416
417   $info->{'hide_payment_fields'} = [ 
418     map { 
419       my $pg = payment_gateway($cust_main, $_);
420       $pg && $pg->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
421     } @{ $info->{cust_paybys} }
422   ];
423
424   $info->{'self_suspend_reason'} = 
425       $conf->config('selfservice-self_suspend_reason', $cust_main->agentnum);
426
427   $info->{'edit_ticket_subject'} =
428       $conf->exists('ticket_system-selfservice_edit_subject') && 
429       $cust_main->edit_subject;
430
431   $info->{'timeout'} = $conf->config('selfservice-timeout') || 3600;
432
433   $info->{'hide_usage'} = $conf->exists('selfservice_hide-usage');
434
435   return { %$info,
436            'custnum'       => $custnum,
437            'access_pkgnum' => $session->{'pkgnum'},
438            'access_svcnum' => $session->{'svcnum'},
439          };
440 }
441
442 sub customer_info {
443   my $p = shift;
444
445   my($context, $session, $custnum) = _custoragent_session_custnum($p);
446   return { 'error' => $session } if $context eq 'error';
447
448   my %return;
449
450   my $conf = new FS::Conf;
451   $return{'require_address2'} = $conf->exists('cust_main-require_address2');
452
453 #  if ( $FS::TicketSystem::system ) {
454 #    warn "$me customer_info: initializing ticket system\n" if $DEBUG;
455 #    FS::TicketSystem->init();
456 #  }
457  
458   if ( $custnum ) { #customer record
459
460     %return = ( %return, %{ customer_info_short($p) } );
461
462     #redundant with customer_info_short, but we need it for several things below
463     my $search = { 'custnum' => $custnum };
464     $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
465     my $cust_main = qsearchs('cust_main', $search )
466       or return { 'error' => "unknown custnum $custnum" };
467
468     my $list_tickets = list_tickets($p);
469     $return{'tickets'} = $list_tickets->{'tickets'};
470
471     if ( $session->{'pkgnum'} ) {
472       #XXX open invoices in the pkg-balances case
473     } else {
474       $return{'money_char'} = $conf->config("money_char") || '$';
475       my @open = map {
476                        {
477                          invnum     => $_->invnum,
478                          date       => time2str("%b %o, %Y", $_->_date),
479                          owed       => $_->owed,
480                          charged    => $_->charged,
481                        };
482                      } $cust_main->open_cust_bill;
483       $return{open_invoices} = \@open;
484
485       my $sql = 'SELECT MAX(_date) FROM cust_bill WHERE custnum = ?';
486       my $sth = dbh->prepare($sql) or die  dbh->errstr;
487       $sth->execute($custnum)      or die $sth->errstr;
488       $return{'last_invoice_date'} = $sth->fetchrow_arrayref->[0];
489       $return{'last_invoice_date_pretty'} =
490         time2str('%m/%d/%Y', $return{'last_invoice_date'} );
491     }
492
493     #customer_info_short always has nobalance on..
494     $return{small_custview} =
495       small_custview( $cust_main,
496                       $return{countrydefault},
497                       ( $session->{'pkgnum'} ? 1 : 0 ), #nobalance
498                     );
499
500     $return{has_ship_address} = $cust_main->has_ship_address;
501     $return{status} = $cust_main->status;
502     $return{statuscolor} = $cust_main->statuscolor;
503
504     # compatibility: some places in selfservice use this to determine
505     # if there's a ship address
506     if ( $return{has_ship_address} ) {
507       $return{ship_last}  = $cust_main->last;
508       $return{ship_first} = $cust_main->first;
509     }
510
511     if (scalar($conf->config('support_packages'))) {
512       my @support_services = ();
513       foreach ($cust_main->support_services) {
514         my $seconds = $_->svc_x->seconds || 0;
515         my $time_remaining = (($seconds < 0) ? '-' : '' ).
516                              int(abs($seconds)/3600)."h".
517                              sprintf("%02d",(abs($seconds)%3600)/60)."m";
518         my $cust_pkg = $_->cust_pkg;
519         my $pkgnum = '';
520         my $pkg = '';
521         $pkgnum = $cust_pkg->pkgnum if $cust_pkg;
522         $pkg = $cust_pkg->part_pkg->pkg if $cust_pkg;
523         push @support_services, { svcnum => $_->svcnum,
524                                   time => $time_remaining,
525                                   pkgnum => $pkgnum,
526                                   pkg => $pkg,
527                                 };
528       }
529       $return{support_services} = \@support_services;
530     }
531
532     if ( $conf->config('prepayment_discounts-credit_type') ) {
533       #need to eval?
534       $return{discount_terms_hash} = { $cust_main->discount_terms_hash };
535     }
536
537   } elsif ( $session->{'svcnum'} ) { #no customer record
538
539     my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $session->{'svcnum'} } )
540       or die "unknown svcnum";
541     $return{name} = $svc_acct->email;
542
543   } else {
544
545     return { 'error' => 'Expired session' }; #XXX redirect to login w/this err!
546
547   }
548
549   return { 'error'   => '',
550            'custnum' => $custnum,
551            %return,
552          };
553
554 }
555
556 sub customer_info_short {
557   my $p = shift;
558
559   my($context, $session, $custnum) = _custoragent_session_custnum($p);
560   return { 'error' => $session } if $context eq 'error';
561
562   my %return;
563
564   my $conf = new FS::Conf;
565
566   if ( $custnum ) { #customer record
567
568     my $search = { 'custnum' => $custnum };
569     $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
570     my $cust_main = qsearchs('cust_main', $search )
571       or return { 'error' => "unknown custnum $custnum" };
572
573     $return{display_custnum} = $cust_main->display_custnum;
574
575     if ( $session->{'pkgnum'} ) { 
576       $return{balance} = $cust_main->balance_pkgnum( $session->{'pkgnum'} );
577       #next_bill_date from cust_pkg?
578     } else {
579       $return{balance} = $cust_main->balance;
580       $return{next_bill_date} = $cust_main->next_bill_date;
581       $return{next_bill_date_pretty} =
582         $return{next_bill_date} ? time2str('%m/%d/%Y', $return{next_bill_date} )
583                                 : '(none)';
584     }
585     $return{balance_pretty} = money_pretty($return{balance});
586
587     $return{countrydefault} = scalar($conf->config('countrydefault'));
588
589     $return{small_custview} =
590       small_custview( $cust_main,
591                       $return{countrydefault},
592                       1, ##nobalance
593                     );
594
595     $return{name} = $cust_main->first. ' '. $cust_main->get('last');
596
597     $return{payby} = $cust_main->payby;
598
599     #none of these are terribly expensive if we want 'em...
600     for (@cust_main_editable_fields) {
601       $return{$_} = $cust_main->get($_);
602     }
603     #maybe a little more expensive, but it should be cached by now
604     for (@location_editable_fields) {
605       $return{$_} = $cust_main->bill_location->get($_);
606       $return{'ship_'.$_} = $cust_main->ship_location->get($_);
607     }
608  
609     if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
610       $return{payinfo} = $cust_main->paymask;
611       @return{'month', 'year'} = $cust_main->paydate_monthyear;
612     }
613     
614     my @invoicing_list = $cust_main->invoicing_list;
615     $return{'invoicing_list'} =
616       join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list );
617     $return{'postal_invoicing'} =
618       0 < ( grep { $_ eq 'POST' } @invoicing_list );
619
620     if ( $session->{'svcnum'} ) {
621       my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $session->{'svcnum'} });
622       $return{'svc_label'} = ($cust_svc->label)[1] if $cust_svc;
623       $return{'svcnum'} = $session->{'svcnum'};
624     }
625
626   } elsif ( $session->{'svcnum'} ) { #no customer record
627
628     #uuh, not supproted yet... die?
629     return { 'error' => 'customer_info_short not yet supported as agent' };
630
631   } else {
632
633     return { 'error' => 'Expired session' }; #XXX redirect to login w/this err!
634
635   }
636
637   # this is here because this routine is called by both fs_ and ng_ main pages, where it appears
638   # it is not customer-specific, though it is only shown to authenticated customers
639   # it is not currently agent-specific, though at some point it might be
640   $return{'announcement'} = join(' ',$conf->config('selfservice-announcement')) || '';
641
642   return { 'error'          => '',
643            'custnum'        => $custnum,
644            %return,
645          };
646 }
647
648 sub billing_history {
649   my $p = shift;
650
651   my($context, $session, $custnum) = _custoragent_session_custnum($p);
652   return { 'error' => $session } if $context eq 'error';
653
654   return { 'error' => 'No customer' } unless $custnum;
655
656   my $search = { 'custnum' => $custnum };
657   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
658   my $cust_main = qsearchs('cust_main', $search )
659     or return { 'error' => "unknown custnum $custnum" };
660
661   my %return = ();
662
663   if ( $session->{'pkgnum'} ) { 
664     #$return{balance} = $cust_main->balance_pkgnum( $session->{'pkgnum'} );
665     #next_bill_date from cust_pkg?
666     return { 'error' => 'No history for package' };
667   }
668
669   $return{balance} = $cust_main->balance;
670   $return{balance_pretty} = money_pretty($return{balance});
671   $return{next_bill_date} = $cust_main->next_bill_date;
672   $return{next_bill_date_pretty} =
673     $return{next_bill_date} ? time2str('%m/%d/%Y', $return{next_bill_date} )
674                             : '(none)';
675
676   my $conf = new FS::Conf;
677
678   $return{'history'} = [
679     $cust_main->payment_history(
680       'line_items' => $conf->exists('selfservice-billing_history-line_items'),
681       'reverse_sort' => 1,
682     )
683   ];
684
685   $return{'money_char'} = $conf->config("money_char") || '$',
686
687   return \%return;
688
689 }
690
691 sub edit_info {
692   my $p = shift;
693   my $session = _cache->get($p->{'session_id'})
694     or return { 'error' => "Can't resume session" }; #better error message
695
696   my $custnum = $session->{'custnum'}
697     or return { 'error' => "no customer record" };
698
699   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
700     or return { 'error' => "unknown custnum $custnum" };
701
702   my $new = new FS::cust_main { $cust_main->hash };
703
704   $new->set( $_ => $p->{$_} )
705     foreach grep { exists $p->{$_} } @cust_main_editable_fields;
706
707   if ( exists($p->{address1}) ) {
708     my $bill_location = FS::cust_location->new({
709         map { $_ => $p->{$_} } @location_editable_fields
710     });
711     # if this is unchanged from before, cust_main::replace will ignore it
712     $new->set('bill_location' => $bill_location);
713   }
714
715   if ( exists($p->{ship_address1}) ) {
716     my $ship_location = FS::cust_location->new({
717         map { $_ => $p->{"ship_$_"} } @location_editable_fields
718     });
719     if ( !grep { length($p->{"ship_$_"}) } @location_editable_fields ) {
720       # Selfservice unfortunately tries to indicate "same as billing 
721       # address" by sending all fields empty.  Did this ever work?
722       $ship_location = $cust_main->bill_location;
723     }
724     $new->set('ship_location' => $ship_location);
725   }
726   # but if it hasn't been passed in at all, leave ship_location alone--
727   # DON'T change it to match bill_location.
728
729   my $payby = '';
730   if (exists($p->{'payby'})) {
731     $p->{'payby'} =~ /^([A-Z]{4})$/
732       or return { 'error' => "illegal_payby " . $p->{'payby'} };
733     $payby = $1;
734   }
735
736   my $conf = new FS::Conf;
737
738   if ( $payby =~ /^(CARD|DCRD)$/ ) {
739
740     $new->paydate($p->{'year'}. '-'. $p->{'month'}. '-01');
741
742     if ( $new->payinfo eq $cust_main->paymask ) {
743       $new->payinfo($cust_main->payinfo);
744       $new->paycvv( $p->{'paycvv'} || $cust_main->paycvv );
745     } else {
746       $new->payinfo($p->{'payinfo'});
747       return { 'error' => 'CVV2 is required' }
748         if ! $p->{'paycvv'} && $conf->exists('selfservice-onfile_require_cvv');
749       $new->paycvv( $p->{'paycvv'} )
750     }
751
752     $new->set( 'payby' => $p->{'auto'} ? 'CARD' : 'DCRD' );
753
754   } elsif ( $payby =~ /^(CHEK|DCHK)$/ ) {
755
756     my $payinfo;
757     $p->{'payinfo1'} =~ /^([\dx]+)$/
758       or return { 'error' => "illegal account number ". $p->{'payinfo1'} };
759     my $payinfo1 = $1;
760      $p->{'payinfo2'} =~ /^([\dx\.]+)$/ # . turned on by echeck-country CA ?
761       or return { 'error' => "illegal ABA/routing number ". $p->{'payinfo2'} };
762     my $payinfo2 = $1;
763     $payinfo = $payinfo1. '@'. $payinfo2;
764
765     $new->payinfo( ($payinfo eq $cust_main->paymask)
766                      ? $cust_main->payinfo
767                      : $payinfo
768                  );
769
770     $new->set( 'payby' => $p->{'auto'} ? 'CHEK' : 'DCHK' );
771
772   } elsif ( $payby =~ /^(BILL)$/ ) {
773     #no-op
774   } elsif ( $payby ) {  #notyet ready
775     return { 'error' => "unknown payby $payby" };
776   }
777
778   my @invoicing_list;
779   if ( exists $p->{'invoicing_list'} || exists $p->{'postal_invoicing'} ) {
780     #false laziness with httemplate/edit/process/cust_main.cgi
781     @invoicing_list = split( /\s*\,\s*/, $p->{'invoicing_list'} );
782     push @invoicing_list, 'POST' if $p->{'postal_invoicing'};
783   } else {
784     @invoicing_list = $cust_main->invoicing_list;
785   }
786
787   my $error = $new->replace($cust_main, \@invoicing_list);
788   return { 'error' => $error } if $error;
789   #$cust_main = $new;
790   
791   return { 'error' => '' };
792 }
793
794 sub payment_info {
795   my $p = shift;
796   my $session = _cache->get($p->{'session_id'})
797     or return { 'error' => "Can't resume session" }; #better error message
798
799   ##
800   #generic
801   ##
802
803   my $conf = new FS::Conf;
804   use vars qw($payment_info); #cache for performance
805   unless ( $payment_info ) {
806
807     my %states = map { $_->state => 1 }
808                    qsearch('cust_main_county', {
809                      'country' => $conf->config('countrydefault') || 'US'
810                    } );
811
812     my %cust_paybys = map { $_ => 1 }
813                       map { FS::payby->payby2payment($_) }
814                           $conf->config('signup_server-payby');
815
816     my @cust_paybys = keys %cust_paybys;
817
818     $payment_info = {
819
820       #list all counties/states/countries
821       'cust_main_county' => 
822         [ map { $_->hashref } qsearch('cust_main_county', {}) ],
823
824       #shortcut for one-country folks
825       'states' =>
826         [ sort { $a cmp $b } keys %states ],
827
828       'card_types' => card_types(),
829
830       'withcvv'            => $conf->exists('selfservice-require_cvv'), #or enable optional cvv?
831       'require_cvv'        => $conf->exists('selfservice-require_cvv'),
832       'onfile_require_cvv' => $conf->exists('selfservice-onfile_require_cvv'),
833
834       'paytypes' => [ @FS::cust_main::paytypes ],
835
836       'paybys' => [ $conf->config('signup_server-payby') ],
837       'cust_paybys' => \@cust_paybys,
838
839       'stateid_label' => FS::Msgcat::_gettext('stateid'),
840       'stateid_state_label' => FS::Msgcat::_gettext('stateid_state'),
841
842       'show_ss'  => $conf->exists('show_ss'),
843       'show_stateid' => $conf->exists('show_stateid'),
844       'show_paystate' => $conf->exists('show_bankstate'),
845
846       'save_unchecked' => $conf->exists('selfservice-save_unchecked'),
847
848       'credit_card_surcharge_percentage' => scalar($conf->config('credit-card-surcharge-percentage')),
849     };
850
851   }
852
853   ##
854   #customer-specific
855   ##
856
857   my %return = %$payment_info;
858
859   my $custnum = $session->{'custnum'};
860
861   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
862     or return { 'error' => "unknown custnum $custnum" };
863
864   $return{'hide_payment_fields'} = [
865     map { 
866       my $pg = payment_gateway($cust_main, $_);
867       $pg && $pg->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
868     } @{ $return{cust_paybys} }
869   ];
870
871   $return{balance} = $cust_main->balance; #XXX pkg-balances?
872
873   $return{payname} = $cust_main->payname
874                      || ( $cust_main->first. ' '. $cust_main->get('last') );
875
876   $return{$_} = $cust_main->bill_location->get($_) 
877     for qw(address1 address2 city state zip);
878
879   $return{payby} = $cust_main->payby;
880   $return{stateid_state} = $cust_main->stateid_state;
881
882   if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
883     $return{card_type} = cardtype($cust_main->payinfo);
884     $return{payinfo} = $cust_main->paymask;
885
886     @return{'month', 'year'} = $cust_main->paydate_monthyear;
887
888   }
889
890   if ( $cust_main->payby =~ /^(CHEK|DCHK)$/ ) {
891     my ($payinfo1, $payinfo2) = split '@', $cust_main->paymask;
892     $return{payinfo1} = $payinfo1;
893     $return{payinfo2} = $payinfo2;
894     $return{paytype}  = $cust_main->paytype;
895     $return{paystate} = $cust_main->paystate;
896     $return{payname}  = $cust_main->payname;    # override 'first/last name' default from above, if any.  Is instution-name here.  (#15819)
897   }
898
899   if ( $conf->config('prepayment_discounts-credit_type') ) {
900     #need to eval?
901     $return{discount_terms_hash} = { $cust_main->discount_terms_hash };
902   }
903
904   #doubleclick protection
905   my $_date = time;
906   $return{payunique} = "webui-MyAccount-$_date-$$-". rand() * 2**32; #new
907   $return{paybatch} = $return{payunique};  #back compat
908
909   return { 'error' => '',
910            %return,
911          };
912
913 }
914
915 #some false laziness with httemplate/process/payment.cgi - look there for
916 #ACH and CVV support stuff
917
918 sub validate_payment {
919   my $p = shift;
920
921   my $session = _cache->get($p->{'session_id'})
922     or return { 'error' => "Can't resume session" }; #better error message
923
924   my $custnum = $session->{'custnum'};
925
926   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
927     or return { 'error' => "unknown custnum $custnum" };
928
929   $p->{'amount'} =~ /^\s*(\d+(\.\d{2})?)\s*$/
930     or return { 'error' => gettext('illegal_amount') };
931   my $amount = $1;
932   return { error => 'Amount must be greater than 0' } unless $amount > 0;
933
934   #false laziness w/tr-amount_fee.html, but we don't want selfservice users
935   #changing the hidden form values
936   my $conf = new FS::Conf;
937   my $fee_display = $conf->config('selfservice_process-display') || 'add';
938   my $fee_pkgpart = $conf->config('selfservice_process-pkgpart', $cust_main->agentnum);
939   my $fee_skip_first = $conf->exists('selfservice_process-skip_first');
940   if ( $fee_display eq 'add'
941          and $fee_pkgpart
942          and ! $fee_skip_first || scalar($cust_main->cust_pay)
943      )
944   {
945     my $fee_pkg = qsearchs('part_pkg', { pkgpart=>$fee_pkgpart } );
946     $amount = sprintf('%.2f', $amount + $fee_pkg->option('setup_fee') );
947   }
948
949   $p->{'discount_term'} =~ /^\s*(\d*)\s*$/
950     or return { 'error' => gettext('illegal_discount_term'). ': '. $p->{'discount_term'} };
951   my $discount_term = $1;
952
953   $p->{'payname'} =~ /^([\w \,\.\-\']+)$/
954     or return { 'error' => gettext('illegal_name'). " payname: ". $p->{'payname'} };
955   my $payname = $1;
956
957   $p->{'payunique'} =~ /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
958     or return { 'error' => gettext('illegal_text'). " payunique: ". $p->{'payunique'} };
959   my $payunique = $1;
960
961   $p->{'paybatch'} =~ /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
962     or return { 'error' => gettext('illegal_text'). " paybatch: ". $p->{'paybatch'} };
963   my $paybatch = $1;
964
965   $payunique = $paybatch if ! length($payunique) && length($paybatch);
966
967   $p->{'payby'} ||= 'CARD';
968   $p->{'payby'} =~ /^([A-Z]{4})$/
969     or return { 'error' => "illegal_payby " . $p->{'payby'} };
970   my $payby = $1;
971
972   #false laziness w/process/payment.cgi
973   my $payinfo;
974   my $paycvv = '';
975   if ( $payby eq 'CHEK' || $payby eq 'DCHK' ) {
976   
977     $p->{'payinfo1'} =~ /^([\dx]+)$/
978       or return { 'error' => "illegal account number ". $p->{'payinfo1'} };
979     my $payinfo1 = $1;
980      $p->{'payinfo2'} =~ /^([\dx]+)$/
981       or return { 'error' => "illegal ABA/routing number ". $p->{'payinfo2'} };
982     my $payinfo2 = $1;
983     $payinfo = $payinfo1. '@'. $payinfo2;
984
985     $payinfo = $cust_main->payinfo
986       if $cust_main->paymask eq $payinfo;
987    
988   } elsif ( $payby eq 'CARD' || $payby eq 'DCRD' ) {
989    
990     $payinfo = $p->{'payinfo'};
991
992     my $onfile = 0;
993
994     #more intelligent matching will be needed here if you change
995     #card_masking_method and don't remove existing paymasks
996     if ( $cust_main->paymask eq $payinfo ) {
997       $payinfo = $cust_main->payinfo;
998       $onfile = 1;
999     }
1000
1001     $payinfo =~ s/\D//g;
1002     $payinfo =~ /^(\d{13,16}|\d{8,9})$/
1003       or return { 'error' => gettext('invalid_card') }; # . ": ". $self->payinfo
1004     $payinfo = $1;
1005
1006     validate($payinfo)
1007       or return { 'error' => gettext('invalid_card') }; # . ": ". $self->payinfo
1008     return { 'error' => gettext('unknown_card_type') }
1009       if $payinfo !~ /^99\d{14}$/ && cardtype($payinfo) eq "Unknown";
1010
1011     if ( length($p->{'paycvv'}) && $p->{'paycvv'} !~ /^\s*$/ ) {
1012       if ( cardtype($payinfo) eq 'American Express card' ) {
1013         $p->{'paycvv'} =~ /^\s*(\d{4})\s*$/
1014           or return { 'error' => "CVV2 (CID) for American Express cards is four digits." };
1015         $paycvv = $1;
1016       } else {
1017         $p->{'paycvv'} =~ /^\s*(\d{3})\s*$/
1018           or return { 'error' => "CVV2 (CVC2/CID) is three digits." };
1019         $paycvv = $1;
1020       }
1021     } elsif ( $conf->exists('selfservice-onfile_require_cvv') ) {
1022       return { 'error' => 'CVV2 is required' };
1023     } elsif ( !$onfile && $conf->exists('selfservice-require_cvv') ) {
1024       return { 'error' => 'CVV2 is required' };
1025     }
1026   
1027   } else {
1028     die "unknown payby $payby";
1029   }
1030
1031   my %payby2fields = (
1032     'CARD' => [ qw( paystart_month paystart_year payissue payip
1033                     address1 address2 city state zip country    ) ],
1034     'CHEK' => [ qw( ss paytype paystate stateid stateid_state payip ) ],
1035   );
1036
1037   my $card_type = '';
1038   $card_type = cardtype($payinfo) if $payby eq 'CARD';
1039
1040   { 
1041     'cust_main'      => $cust_main, #XXX or just custnum??
1042     'amount'         => sprintf('%.2f', $amount),
1043     'payby'          => $payby,
1044     'payinfo'        => $payinfo,
1045     'paymask'        => $cust_main->mask_payinfo( $payby, $payinfo ),
1046     'card_type'      => $card_type,
1047     'paydate'        => $p->{'year'}. '-'. $p->{'month'}. '-01',
1048     'paydate_pretty' => $p->{'month'}. ' / '. $p->{'year'},
1049     'month'          => $p->{'month'},
1050     'year'           => $p->{'year'},
1051     'payname'        => $payname,
1052     'payunique'      => $payunique,
1053     'paybatch'       => $paybatch,
1054     'paycvv'         => $paycvv,
1055     'payname'        => $payname,
1056     'discount_term'  => $discount_term,
1057     'pkgnum'         => $session->{'pkgnum'},
1058     map { $_ => $p->{$_} } ( @{ $payby2fields{$payby} },
1059                              qw( save auto ),
1060                            )
1061   };
1062
1063 }
1064
1065 sub store_payment {
1066   my $p = shift;
1067
1068   my $validate = validate_payment($p);
1069   return $validate if $validate->{'error'};
1070
1071   my $conf = new FS::Conf;
1072   my $timeout = $conf->config('selfservice-session_timeout') || '1 hour'; #?
1073   _cache->set( 'payment_'.$p->{'session_id'}, $validate, $timeout );
1074
1075   +{ map { $_=>$validate->{$_} }
1076       qw( card_type paymask payname paydate_pretty month year amount
1077           address1 address2 city state zip country
1078         )
1079   };
1080
1081 }
1082
1083 sub process_stored_payment {
1084   my $p = shift;
1085
1086   my $session_id = $p->{'session_id'};
1087
1088   my $payment_info = _cache->get( "payment_$session_id" )
1089     or return { 'error' => "Can't resume session" }; #better error message
1090
1091   do_process_payment($payment_info);
1092
1093 }
1094
1095 sub process_payment {
1096   my $p = shift;
1097
1098   my $payment_info = validate_payment($p);
1099   return $payment_info if $payment_info->{'error'};
1100
1101   do_process_payment($payment_info);
1102
1103 }
1104
1105 sub do_process_payment {
1106   my $validate = shift;
1107
1108   my $cust_main = $validate->{'cust_main'};
1109
1110   my $amount = delete $validate->{'amount'};
1111   my $paynum = '';
1112
1113   my $payby = delete $validate->{'payby'};
1114
1115   if ( $validate->{'save'} ) {
1116     my $new = new FS::cust_main { $cust_main->hash };
1117     if ($payby eq 'CARD' || $payby eq 'DCRD') {
1118       $new->set( $_ => $validate->{$_} )
1119         foreach qw( payname paystart_month paystart_year payissue payip );
1120       $new->set( 'payby' => $validate->{'auto'} ? 'CARD' : 'DCRD' );
1121
1122       my $bill_location = FS::cust_location->new({
1123           map { $_ => $validate->{$_} } 
1124           qw(address1 address2 city state country zip)
1125       }); # county?
1126       $new->set('bill_location' => $bill_location);
1127       # but don't allow the service address to change this way.
1128
1129     } elsif ($payby eq 'CHEK' || $payby eq 'DCHK') {
1130       $new->set( $_ => $validate->{$_} )
1131         foreach qw( payname payip paytype paystate
1132                     stateid stateid_state );
1133       $new->set( 'payby' => $validate->{'auto'} ? 'CHEK' : 'DCHK' );
1134     }
1135     $new->payinfo( $validate->{'payinfo'} ); #to properly set paymask
1136     $new->set( 'paydate' => $validate->{'paydate'} );
1137     my $error = $new->replace($cust_main);
1138     if ( $error ) {
1139       #no, this causes customers to process their payments again
1140       #return { 'error' => $error };
1141       #XXX just warn verosely for now so i can figure out how these happen in
1142       # the first place, eventually should redirect them to the "change
1143       #address" page but indicate if the payment processed?
1144       delete($validate->{'payinfo'}); #don't want to log this!
1145       warn "WARNING: error changing customer info when processing payment (not returning to customer as a processing error): $error\n".
1146            "NEW: ". Dumper($new)."\n".
1147            "OLD: ". Dumper($cust_main)."\n".
1148            "PACKET: ". Dumper($validate)."\n";
1149     } else {
1150       $cust_main = $new;
1151     }
1152   }
1153
1154   my $error = $cust_main->realtime_bop( $FS::payby::payby2bop{$payby}, $amount,
1155     'quiet'       => 1,
1156     'manual'      => 1,
1157     'selfservice' => 1,
1158     'paynum_ref'  => \$paynum,
1159     %$validate,
1160   );
1161   return { 'error' => $error } if $error;
1162
1163   #no error, so order the fee package if applicable...
1164   my $conf = new FS::Conf;
1165   my $fee_pkgpart = $conf->config('selfservice_process-pkgpart', $cust_main->agentnum);
1166   my $fee_skip_first = $conf->exists('selfservice_process-skip_first');
1167   
1168   if ( $fee_pkgpart and ! $fee_skip_first || scalar($cust_main->cust_pay) ) {
1169
1170     my $cust_pkg = new FS::cust_pkg { 'pkgpart' => $fee_pkgpart };
1171
1172     $error = $cust_main->order_pkg( 'cust_pkg' => $cust_pkg );
1173     return { 'error' => "payment processed successfully, but error ordering fee: $error" }
1174       if $error;
1175
1176     #and generate an invoice for it now too
1177     $error = $cust_main->bill( 'pkg_list' => [ $cust_pkg ] );
1178     return { 'error' => "payment processed and fee ordered sucessfully, but error billing fee: $error" }
1179       if $error;
1180
1181   }
1182
1183   $cust_main->apply_payments;
1184
1185   my $cust_pay = '';
1186   my $receipt_html = '';
1187   if ($paynum) {
1188       # currently supported for realtime CC only; send receipt data to SS
1189       $cust_pay = qsearchs('cust_pay', { 'paynum' => $paynum } );
1190       if($cust_pay) {
1191         $receipt_html = qq!
1192 <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2>
1193
1194 <TR>
1195   <TD ALIGN="right">Payment#</TD>
1196   <TD BGCOLOR="#FFFFFF"><B>! . $cust_pay->paynum . qq!</B></TD>
1197 </TR>
1198
1199 <TR>
1200   <TD ALIGN="right">Date</TD>
1201
1202   <TD BGCOLOR="#FFFFFF"><B>! . 
1203         time2str("%a&nbsp;%b&nbsp;%o,&nbsp;%Y&nbsp;%r", $cust_pay->_date)
1204                                                             . qq!</B></TD>
1205 </TR>
1206
1207
1208 <TR>
1209   <TD ALIGN="right">Amount</TD>
1210   <TD BGCOLOR="#FFFFFF"><B>! . sprintf('%.2f', $cust_pay->paid) . qq!</B></TD>
1211
1212 </TR>
1213
1214 <TR>
1215   <TD ALIGN="right">Payment method</TD>
1216   <TD BGCOLOR="#FFFFFF"><B>! . $cust_pay->payby_name .' #'. $cust_pay->paymask
1217                                                                 . qq!</B></TD>
1218 </TR>
1219
1220 </TABLE>
1221 !;
1222       }
1223   }
1224
1225   if ( $cust_pay ) {
1226
1227     return {
1228       'error'        => '',
1229       'amount'       => sprintf('%.2f', $cust_pay->paid),
1230       'date'         => $cust_pay->_date,
1231       'date_pretty'  => time2str('%Y-%m-%d', $cust_pay->_date),
1232       'time_pretty'  => time2str('%T', $cust_pay->_date),
1233       'auth_num'     => $cust_pay->auth,
1234       'order_num'    => $cust_pay->order_number,
1235       'receipt_html' => $receipt_html,
1236     };
1237
1238   } else {
1239
1240     return {
1241       'error'        => '',
1242       'receipt_html' => '',
1243     };
1244
1245   }
1246
1247 }
1248
1249 sub realtime_collect {
1250   my $p = shift;
1251
1252   my $session = _cache->get($p->{'session_id'})
1253     or return { 'error' => "Can't resume session" }; #better error message
1254
1255   my $custnum = $session->{'custnum'};
1256
1257   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1258     or return { 'error' => "unknown custnum $custnum" };
1259
1260   my $amount;
1261   if ( $p->{'amount'} ) {
1262     $amount = $p->{'amount'};
1263   }
1264   elsif ( $session->{'pkgnum'} ) {
1265     $amount = $cust_main->balance_pkgnum( $session->{'pkgnum'} );
1266   }
1267   else {
1268     $amount = $cust_main->balance;
1269   }
1270
1271   my $error = $cust_main->realtime_collect(
1272     'method'     => $p->{'method'},
1273     'amount'     => $amount,
1274     'pkgnum'     => $session->{'pkgnum'},
1275     'session_id' => $p->{'session_id'},
1276     'apply'      => 1,
1277     'selfservice'=> 1,
1278   );
1279   return { 'error' => $error } unless ref( $error );
1280
1281   return { 'error' => '', amount => $amount, %$error };
1282 }
1283
1284 sub start_thirdparty {
1285   my $p = shift;
1286   my $session = _cache->get($p->{'session_id'})
1287     or return { 'error' => "Can't resume session" }; #better error message
1288   my $custnum = $session->{'custnum'};
1289   my $cust_main = FS::cust_main->by_key($custnum);
1290   
1291   my $amount = $p->{'amount'}
1292     or return { error => 'no amount' };
1293
1294   my $result = $cust_main->create_payment(
1295     'method'      => $p->{'method'},
1296     'amount'      => $p->{'amount'},
1297     'pkgnum'      => $session->{'pkgnum'},
1298     'session_id'  => $p->{'session_id'},
1299   );
1300   
1301   if ( ref($result) ) { # hashref or error
1302     return $result;
1303   } else {
1304     return { error => $result };
1305   }
1306 }
1307
1308 sub finish_thirdparty {
1309   my $p = shift;
1310   my $session_id = delete $p->{'session_id'};
1311   my $session = _cache->get($session_id)
1312     or return { 'error' => "Can't resume session" };
1313   my $custnum = $session->{'custnum'};
1314   my $cust_main = FS::cust_main->by_key($custnum);
1315
1316   if ( $p->{_cancel} ) {
1317     # customer backed out of making a payment
1318     return $cust_main->cancel_payment( $session_id );
1319   }
1320   my $result = $cust_main->execute_payment( $session_id, %$p );
1321   if ( ref($result) ) {
1322     return $result;
1323   } else {
1324     return { error => $result };
1325   }
1326 }
1327
1328 sub process_payment_order_pkg {
1329   my $p = shift;
1330
1331   my $hr = process_payment($p);
1332   return $hr if $hr->{'error'};
1333
1334   order_pkg($p);
1335 }
1336
1337 sub process_payment_order_renew {
1338   my $p = shift;
1339
1340   my $hr = process_payment($p);
1341   return $hr if $hr->{'error'};
1342
1343   order_renew($p);
1344 }
1345
1346 sub process_prepay {
1347
1348   my $p = shift;
1349
1350   my $session = _cache->get($p->{'session_id'})
1351     or return { 'error' => "Can't resume session" }; #better error message
1352
1353   my %return;
1354
1355   my $custnum = $session->{'custnum'};
1356
1357   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1358     or return { 'error' => "unknown custnum $custnum" };
1359
1360   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes ) = ( 0, 0, 0, 0, 0 );
1361   my $error = $cust_main->recharge_prepay( $p->{'prepaid_cardnum'},
1362                                            \$amount,
1363                                            \$seconds,
1364                                            \$upbytes,
1365                                            \$downbytes,
1366                                            \$totalbytes,
1367                                          );
1368
1369   return { 'error' => $error } if $error;
1370
1371   return { 'error'     => '',
1372            'amount'    => $amount,
1373            'seconds'   => $seconds,
1374            'duration'  => duration_exact($seconds),
1375            'upbytes'   => $upbytes,
1376            'upload'    => FS::UI::bytecount::bytecount_unexact($upbytes),
1377            'downbytes' => $downbytes,
1378            'download'  => FS::UI::bytecount::bytecount_unexact($downbytes),
1379            'totalbytes'=> $totalbytes,
1380            'totalload' => FS::UI::bytecount::bytecount_unexact($totalbytes),
1381          };
1382
1383 }
1384
1385 sub invoice {
1386   my $p = shift;
1387   my $session = _cache->get($p->{'session_id'})
1388     or return { 'error' => "Can't resume session" }; #better error message
1389
1390   my $custnum = $session->{'custnum'};
1391
1392   my $invnum = $p->{'invnum'};
1393
1394   my $cust_bill = qsearchs('cust_bill', { 'invnum'  => $invnum,
1395                                           'custnum' => $custnum } )
1396     or return { 'error' => "Can't find invnum" };
1397
1398   #my %return;
1399
1400   return { 'error'        => '',
1401            'invnum'       => $invnum,
1402            'invoice_text' => join('', $cust_bill->print_text ),
1403            'invoice_html' => $cust_bill->print_html( { unsquelch_cdr => 1 } ),
1404          };
1405
1406 }
1407
1408 sub invoice_pdf {
1409   my $p = shift;
1410   my $session = _cache->get($p->{'session_id'})
1411     or return { 'error' => "Can't resume session" }; #better error message
1412
1413   my $custnum = $session->{'custnum'};
1414
1415   my $invnum = $p->{'invnum'};
1416
1417   my $cust_bill = qsearchs('cust_bill', { 'invnum'  => $invnum,
1418                                           'custnum' => $custnum } )
1419     or return { 'error' => "Can't find invnum" };
1420
1421   #my %return;
1422
1423   return { 'error'       => '',
1424            'invnum'      => $invnum,
1425            'invoice_pdf' => $cust_bill->print_pdf({
1426                               'unsquelch_cdr' => 1,
1427                               'locale'        => $p->{'locale'},
1428                             }),
1429          };
1430
1431 }
1432
1433 sub legacy_invoice {
1434   my $p = shift;
1435   my $session = _cache->get($p->{'session_id'})
1436     or return { 'error' => "Can't resume session" }; #better error message
1437
1438   my $custnum = $session->{'custnum'};
1439
1440   my $legacyinvnum = $p->{'legacyinvnum'};
1441
1442   my %hash = (
1443     'legacyinvnum' => $legacyinvnum,
1444     'custnum'      => $custnum,
1445   );
1446
1447   my $legacy_cust_bill =
1448          qsearchs('legacy_cust_bill', { %hash, 'locale' => $p->{'locale'} } )
1449       || qsearchs('legacy_cust_bill', \%hash )
1450     or return { 'error' => "Can't find legacyinvnum" };
1451
1452   #my %return;
1453
1454   return { 'error'        => '',
1455            'legacyinvnum' => $legacyinvnum,
1456            'legacyid'     => $legacy_cust_bill->legacyid,
1457            'invoice_html' => $legacy_cust_bill->content_html,
1458          };
1459
1460 }
1461
1462 sub legacy_invoice_pdf {
1463   my $p = shift;
1464   my $session = _cache->get($p->{'session_id'})
1465     or return { 'error' => "Can't resume session" }; #better error message
1466
1467   my $custnum = $session->{'custnum'};
1468
1469   my $legacyinvnum = $p->{'legacyinvnum'};
1470
1471   my $legacy_cust_bill = qsearchs('legacy_cust_bill', {
1472     'legacyinvnum' => $legacyinvnum,
1473     'custnum'      => $custnum,
1474   }) or return { 'error' => "Can't find legacyinvnum" };
1475
1476   #my %return;
1477
1478   return { 'error'        => '',
1479            'legacyinvnum' => $legacyinvnum,
1480            'legacyid'     => $legacy_cust_bill->legacyid,
1481            'invoice_pdf'  => $legacy_cust_bill->content_pdf,
1482          };
1483
1484 }
1485
1486 sub invoice_logo {
1487   my $p = shift;
1488
1489   #sessioning for this?  how do we get the session id to the backend invoice
1490   # template so it can add it to the link, blah
1491
1492   my $agentnum = '';
1493   if ( $p->{'invnum'} ) {
1494     my $cust_bill = qsearchs('cust_bill', { 'invnum' => $p->{'invnum'} } )
1495       or return { 'error' => 'unknown invnum' };
1496     $agentnum = $cust_bill->cust_main->agentnum;
1497   }
1498
1499   my $templatename = $p->{'template'} || $p->{'templatename'};
1500
1501   #false laziness-ish w/view/cust_bill-logo.cgi
1502
1503   my $conf = new FS::Conf;
1504   if ( $templatename =~ /^([^\.\/]*)$/ && $conf->exists("logo_$1.png") ) {
1505     $templatename = "_$1";
1506   } else {
1507     $templatename = '';
1508   }
1509
1510   my $filename = "logo$templatename.png";
1511
1512   return { 'error'        => '',
1513            'logo'         => $conf->config_binary($filename, $agentnum),
1514            'content_type' => 'image/png', #should allow gif, jpg too
1515          };
1516 }
1517
1518
1519 sub list_invoices {
1520   my $p = shift;
1521   my $session = _cache->get($p->{'session_id'})
1522     or return { 'error' => "Can't resume session" }; #better error message
1523
1524   my $custnum = $session->{'custnum'};
1525
1526   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1527     or return { 'error' => "unknown custnum $custnum" };
1528
1529   my $conf = new FS::Conf;
1530
1531   my @legacy_cust_bill = $cust_main->legacy_cust_bill;
1532
1533   my @cust_bill = grep ! $_->hide, $cust_main->cust_bill;
1534
1535   my $balance = 0;
1536   my $invoices = [
1537     map {
1538       #not super efficient, we also run cust_bill_pay/cust_credited inside owed
1539       my @payments_and_credits = sort {$b->_date <=> $a->_date} ($_->cust_bill_pay,$_->cust_credited);
1540       my $owed = $_->owed;
1541       $balance += $owed;
1542       +{ 'invnum'       => $_->invnum,
1543          '_date'        => $_->_date,
1544          'date'         => time2str("%b %o, %Y", $_->_date),
1545          'date_short'   => time2str("%m-%d-%Y",  $_->_date),
1546          'previous'     => sprintf('%.2f', ($_->previous)[0]),
1547          'charged'      => sprintf('%.2f', $_->charged),
1548          'owed'         => sprintf('%.2f', $owed),
1549          'balance'      => sprintf('%.2f', $balance),
1550          'lastpay'      => @payments_and_credits 
1551                            ? time2str("%b %o, %Y", $payments_and_credits[0]->_date)
1552                            : '',
1553       }
1554     } @cust_bill
1555   ];
1556
1557   return  { 'error'       => '',
1558             'balance'     => $cust_main->balance,
1559             'money_char'  => $conf->config("money_char") || '$',
1560             'invoices'    => $invoices,
1561             'legacy_invoices' => [
1562               map {
1563                     +{ 'legacyinvnum' => $_->legacyinvnum,
1564                        'legacyid'     => $_->legacyid,
1565                        '_date'        => $_->_date,
1566                        'date'         => time2str("%b %o, %Y", $_->_date),
1567                        'date_short'   => time2str("%m-%d-%Y",  $_->_date),
1568                        'charged'      => sprintf('%.2f', $_->charged),
1569                        'has_content'  => (    length($_->content_pdf)
1570                                            || length($_->content_html) ),
1571                      }
1572                   }
1573                   @legacy_cust_bill
1574             ],
1575           };
1576 }
1577
1578 sub cancel {
1579   my $p = shift;
1580   my $session = _cache->get($p->{'session_id'})
1581     or return { 'error' => "Can't resume session" }; #better error message
1582
1583   my $custnum = $session->{'custnum'};
1584
1585   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1586     or return { 'error' => "unknown custnum $custnum" };
1587
1588   my @errors = $cust_main->cancel( 'quiet'=>1 );
1589
1590   my $error = scalar(@errors) ? join(' / ', @errors) : '';
1591
1592   return { 'error' => $error };
1593
1594 }
1595
1596 sub list_pkgs {
1597   my $p = shift;
1598
1599   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1600   return { 'error' => $session } if $context eq 'error';
1601
1602   my $search = { 'custnum' => $custnum };
1603   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1604   my $cust_main = qsearchs('cust_main', $search )
1605     or return { 'error' => "unknown custnum $custnum" };
1606
1607   my $conf = new FS::Conf;
1608   my $immutable = $conf->exists('selfservice_immutable-package');
1609   
1610 # the duplication below is necessary:
1611 # 1. to maintain the current buggy behaviour wrt the cust_pkg and part_pkg
1612 # hashes overwriting each other (setup and no_auto fields). Fixing that is a
1613 # non-backwards-compatible change breaking the software of anyone using the API
1614 # instead of the stock selfservice
1615 # 2. to return cancelled packages as well - for wholesale and non-wholesale
1616   if( $conf->exists('selfservice_server-view-wholesale') ) {
1617     return { 'svcnum'   => $session->{'svcnum'},
1618             'custnum'  => $custnum,
1619             'cust_pkg' => [ map {
1620                           { $_->hash,
1621                             immutable => $immutable,
1622                             part_pkg => [ map $_->hashref, $_->part_pkg ],
1623                             part_svc =>
1624                               [ map $_->hashref, $_->available_part_svc ],
1625                             cust_svc => 
1626                               [ map { my $ref = { $_->hash,
1627                                                   label => [ $_->label ],
1628                                                 };
1629                                       $ref->{_password} = $_->svc_x->_password
1630                                         if $context eq 'agent'
1631                                         && $conf->exists('agent-showpasswords')
1632                                         && $_->part_svc->svcdb eq 'svc_acct';
1633                                       $ref;
1634                                     } $_->cust_svc
1635                               ],
1636                           };
1637                         } $cust_main->cust_pkg
1638                   ],
1639     'small_custview' =>
1640       small_custview( $cust_main, $conf->config('countrydefault') ),
1641     'wholesale_view' => 1,
1642     'login_svcpart' => [ $conf->config('selfservice_server-login_svcpart') ],
1643     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1644     'lnp' => $conf->exists('svc_phone-lnp'),
1645       };
1646   }
1647
1648   { 'svcnum'   => $session->{'svcnum'},
1649     'custnum'  => $custnum,
1650     'cust_pkg' => [ map {
1651                           my $primary_cust_svc = $_->primary_cust_svc;
1652                           +{ $_->hash,
1653                             $_->part_pkg->hash,
1654                             immutable   => $immutable,
1655                             pkg_label   => $_->pkg_locale,
1656                             status      => $_->status,
1657                             statuscolor => $_->statuscolor,
1658                             part_svc =>
1659                               [ map { $_->hashref }
1660                                   grep { $_->selfservice_access ne 'hidden' }
1661                                     $_->available_part_svc
1662                               ],
1663                             cust_svc => 
1664                               [ map { my $ref = { $_->hash,
1665                                                   label => [ $_->label ],
1666                                                 };
1667                                       $ref->{_password} = $_->svc_x->_password
1668                                         if $context eq 'agent'
1669                                         && $conf->exists('agent-showpasswords')
1670                                         && $_->part_svc->svcdb eq 'svc_acct';
1671                                       $ref->{svchash} = { $_->svc_x->hash } if 
1672                                         $_->part_svc->svcdb eq 'svc_phone';
1673                                       $ref->{svchash}->{svcpart} =  $_->part_svc->svcpart
1674                                         if $_->part_svc->svcdb eq 'svc_phone'; # hack
1675                                       $ref;
1676                                     }
1677                                   grep { $_->part_svc->selfservice_access ne 'hidden' }
1678                                     $_->cust_svc
1679                               ],
1680                             primary_cust_svc =>
1681                               $primary_cust_svc
1682                                 ? { $primary_cust_svc->hash,
1683                                     label => [ $primary_cust_svc->label ],
1684                                     finger => $primary_cust_svc->svc_x->finger, #uuh
1685                                     $primary_cust_svc->part_svc->hash,
1686                                   }
1687                                 : {}, #'' ?
1688                           };
1689                         } $cust_main->ncancelled_pkgs
1690                   ],
1691     'small_custview' =>
1692       small_custview( $cust_main, $conf->config('countrydefault') ),
1693     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1694   };
1695
1696 }
1697
1698 sub list_svcs {
1699   my $p = shift;
1700
1701   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1702   return { 'error' => $session } if $context eq 'error';
1703
1704   my $conf = new FS::Conf;
1705
1706   my $hide_usage = $conf->exists('selfservice_hide-usage') ? 1 : 0;
1707   my $search = { 'custnum' => $custnum };
1708   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1709   my $cust_main = qsearchs('cust_main', $search )
1710     or return { 'error' => "unknown custnum $custnum" };
1711
1712   my $pkgnum = $session->{'pkgnum'} || $p->{'pkgnum'} || '';
1713   if ( ! $pkgnum && $p->{'svcnum'} ) {
1714     my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $p->{'svcnum'} } );
1715     $pkgnum = $cust_svc->pkgnum if $cust_svc;
1716   }
1717
1718   my @cust_svc = ();
1719   my @cust_pkg_usage = ();
1720   foreach my $cust_pkg ( $p->{'ncancelled'} 
1721                          ? $cust_main->ncancelled_pkgs
1722                          : $cust_main->unsuspended_pkgs ) {
1723     next if $pkgnum && $cust_pkg->pkgnum != $pkgnum;
1724     push @cust_svc, @{[ $cust_pkg->cust_svc ]}; #@{[ ]} to force array context
1725     push @cust_pkg_usage, $cust_pkg->cust_pkg_usage;
1726   }
1727
1728   @cust_svc = grep { $_->part_svc->selfservice_access ne 'hidden' } @cust_svc;
1729   my %usage_pools;
1730   if (!$hide_usage) {
1731     foreach (@cust_pkg_usage) {
1732       my $part = $_->part_pkg_usage;
1733       my $tag = $part->description . ($part->shared ? 1 : 0);
1734       my $row = $usage_pools{$tag} 
1735             ||= [ $part->description, 0, 0, $part->shared ? 1 : 0 ];
1736       $row->[1] += sprintf('%.1f', $_->minutes); # minutes remaining
1737       $row->[2] += $part->minutes; # minutes total
1738     }
1739   } # otherwise just leave them empty
1740
1741   if ( $p->{'svcdb'} ) {
1742     my $svcdb = ref($p->{'svcdb'}) eq 'HASH'
1743                   ? $p->{'svcdb'}
1744                   : ref($p->{'svcdb'}) eq 'ARRAY'
1745                     ? { map { $_=>1 } @{ $p->{'svcdb'} } }
1746                     : { $p->{'svcdb'} => 1 };
1747     @cust_svc = grep $svcdb->{ $_->part_svc->svcdb }, @cust_svc
1748   }
1749
1750   #@svc_x = sort { $a->domain cmp $b->domain || $a->username cmp $b->username }
1751   #              @svc_x;
1752
1753   my @svcs; # stuff to return to the client
1754   foreach my $cust_svc (@cust_svc) {
1755     my $svc_x = $cust_svc->svc_x;
1756     my($label, $value) = $cust_svc->label;
1757     my $part_svc = $cust_svc->part_svc;
1758     my $svcdb = $part_svc->svcdb;
1759     my $cust_pkg = $cust_svc->cust_pkg;
1760     my $part_pkg = $cust_pkg->part_pkg;
1761
1762     my %hash = (
1763       'svcnum'         => $cust_svc->svcnum,
1764       'display_svcnum' => $cust_svc->display_svcnum,
1765       'svcdb'          => $svcdb,
1766       'label'          => $label,
1767       'value'          => $value,
1768       'pkg_label'      => $cust_pkg->pkg_locale,
1769       'pkg_status'     => $cust_pkg->status,
1770       'readonly'       => ($part_svc->selfservice_access eq 'readonly'),
1771     );
1772
1773     # would it make sense to put this in a svc_* method?
1774
1775     if (!$hide_usage and grep(/^$svcdb$/, qw(svc_acct svc_broadband)) and $part_svc->part_export_usage) {
1776       my $last_bill = $cust_pkg->last_bill || 0;
1777       my $now = time;
1778       my $up_used = $cust_svc->attribute_since_sqlradacct($last_bill,$now,'AcctInputOctets');
1779       my $down_used = $cust_svc->attribute_since_sqlradacct($last_bill,$now,'AcctOutputOctets');
1780       %hash = (
1781         %hash,
1782         'seconds_used'    => $cust_svc->seconds_since_sqlradacct($last_bill,$now),
1783         'upbytes_used'    => display_bytecount($up_used),
1784         'downbytes_used'  => display_bytecount($down_used),
1785         'totalbytes_used' => display_bytecount($up_used + $down_used)
1786       );
1787     }
1788
1789     if ( $svcdb eq 'svc_acct' ) {
1790       foreach (qw(username email finger seconds)) {
1791         $hash{$_} = $svc_x->$_;
1792       }
1793
1794       if (!$hide_usage) {
1795         %hash = (
1796           %hash,
1797           'upbytes'    => display_bytecount($svc_x->upbytes),
1798           'downbytes'  => display_bytecount($svc_x->downbytes),
1799           'totalbytes' => display_bytecount($svc_x->totalbytes),
1800
1801           'recharge_amount'  => $part_pkg->option('recharge_amount',1),
1802           'recharge_seconds' => $part_pkg->option('recharge_seconds',1),
1803           'recharge_upbytes'    =>
1804             display_bytecount($part_pkg->option('recharge_upbytes',1)),
1805           'recharge_downbytes'  =>
1806             display_bytecount($part_pkg->option('recharge_downbytes',1)),
1807           'recharge_totalbytes' =>
1808             display_bytecount($part_pkg->option('recharge_totalbytes',1)),
1809           # more...
1810         );
1811       }
1812
1813     } elsif ( $svcdb eq 'svc_dsl' ) {
1814
1815       $hash{'phonenum'} = $svc_x->phonenum;
1816       if ( $svc_x->first || $svc_x->get('last') || $svc_x->company ) {
1817         $hash{'name'} = $svc_x->first. ' '. $svc_x->get('last');
1818         $hash{'name'} = $svc_x->company. ' ('. $hash{'name'}. ')'
1819           if $svc_x->company;
1820       } else {
1821         $hash{'name'} = $cust_main->name;
1822       }
1823       # no usage to hide here
1824
1825     } elsif ( $svcdb eq 'svc_phone' or $svcdb eq 'svc_pbx' ) {
1826       if (!$hide_usage) {
1827         # could potentially show lots of things...
1828         $hash{'outbound'} = 1;
1829         $hash{'inbound'}  = 0;
1830         if ( $svcdb eq 'svc_phone' ) {
1831           if ( $part_pkg->plan eq 'voip_inbound' ) {
1832             $hash{'outbound'} = 0;
1833             $hash{'inbound'}  = 1;
1834           } elsif ( $part_pkg->option('selfservice_inbound_format')
1835                 or  $conf->config('selfservice-default_inbound_cdr_format')
1836           ) {
1837             $hash{'inbound'}  = 1;
1838           }
1839         }
1840         foreach (qw(inbound outbound)) {
1841           # hmm...we can't filter by status here, because there might
1842           # not be cdr_terminations at all.  have to go by date.
1843           # find all since the last bill date.
1844           # XXX cdr types?  we are going to need them.
1845           if ( $hash{$_} ) {
1846             my $sum_cdr = $svc_x->sum_cdrs(
1847               'inbound' => ( $_ eq 'inbound' ? 1 : 0 ),
1848               'begin'   => ($cust_pkg->last_bill || 0),
1849               'nonzero' => 1,
1850               'disable_charged_party' => 1,
1851             );
1852             $hash{$_} = $sum_cdr->hashref;
1853           }
1854         }
1855       } # not hiding usage
1856     } # svcdb
1857
1858     push @svcs, \%hash;
1859   } # foreach $cust_svc
1860
1861   return { 
1862     'svcnum'   => $session->{'svcnum'},
1863     'custnum'  => $custnum,
1864     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1865     'view_usage_nodomain' => $conf->exists('selfservice-view_usage_nodomain'),
1866     'svcs'     => \@svcs,
1867     'usage_pools' => [
1868       map { $usage_pools{$_} }
1869       sort { $a cmp $b }
1870       keys %usage_pools
1871     ],
1872     'hide_usage' => $hide_usage,
1873   };
1874
1875 }
1876
1877 sub _customer_svc_x {
1878   my($custnum, $svcnum, $table) = (shift, shift, shift);
1879   my $hashref = ref($svcnum) ? $svcnum : { 'svcnum' => $svcnum };
1880
1881   $custnum =~ /^(\d+)$/ or die "illegal custnum";
1882   my $search = " AND custnum = $1";
1883   #$search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
1884
1885   qsearchs( {
1886     'table'     => ($table || 'svc_acct'),
1887     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
1888                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) ',#.
1889                    #'LEFT JOIN cust_main USING ( custnum ) ',
1890     'hashref'   => $hashref,
1891     'extra_sql' => $search, #important
1892   } );
1893
1894 }
1895
1896 sub svc_status_html {
1897   my $p = shift;
1898
1899   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1900   return { 'error' => $session } if $context eq 'error';
1901
1902   #XXX only svc_dsl for now
1903   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl')
1904     or return { 'error' => "Service not found" };
1905
1906   my $html = $svc_x->getstatus_html;
1907
1908   return { 'html' => $html };
1909
1910 }
1911
1912 sub svc_status_hash {
1913   my $p = shift;
1914
1915   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1916   return { 'error' => $session } if $context eq 'error';
1917
1918   #XXX only svc_acct for now
1919   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct')
1920     or return { 'error' => "Service not found" };
1921
1922   my ( $html, $hashref ) = $svc_x->export_getstatus;
1923   return $hashref;
1924
1925 }
1926
1927 sub set_svc_status_hash    { _svc_method_X(shift, 'export_setstatus') }
1928 sub set_svc_status_listadd { _svc_method_X(shift, 'export_setstatus_listadd') }
1929 sub set_svc_status_listdel { _svc_method_X(shift, 'export_setstatus_listdel') }
1930 sub set_svc_status_vacationadd { _svc_method_X(shift, 'export_setstatus_vacationadd') }
1931 sub set_svc_status_vacationdel { _svc_method_X(shift, 'export_setstatus_vacationdel') }
1932
1933 sub _svc_method_X {
1934   my( $p, $method ) = @_;
1935
1936   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1937   return { 'error' => $session } if $context eq 'error';
1938
1939   #XXX only svc_acct for now
1940   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct')
1941     or return { 'error' => "Service not found" };
1942
1943   warn "$method ". join(' / ', map "$_=>".$p->{$_}, keys %$p )
1944     if $DEBUG;
1945   my $error = $svc_x->$method($p); #$p? returns error?
1946   return { 'error' => $error } if $error;
1947
1948   return {}; #? { 'error' => '' }
1949
1950 }
1951
1952 sub acct_forward_info {
1953   my $p = shift;
1954
1955   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1956   return { 'error' => $session } if $context eq 'error';
1957
1958   my $svc_forward = _customer_svc_x( $custnum,
1959                                      { 'srcsvc' => $p->{'svcnum'} },
1960                                      'svc_forward',
1961                                    )
1962     or return { 'error' => '',
1963                 'dst'   => '',
1964               };
1965
1966   return { 'error' => '',
1967            'dst'   => $svc_forward->dst || $svc_forward->dstsvc_acct->email,
1968          };
1969
1970 }
1971
1972 sub process_acct_forward {
1973   my $p = shift;
1974   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1975   return { 'error' => $session } if $context eq 'error';
1976
1977   my $old = _customer_svc_x( $custnum,
1978                              { 'srcsvc' => $p->{'svcnum'} },
1979                              'svc_forward',
1980                            );
1981
1982   if ( $p->{'dst'} eq '' ) {
1983     if ( $old ) {
1984       my $error = $old->delete;
1985       return { 'error' => $error };
1986     }
1987     return { 'error' => '' };
1988   }
1989
1990   my $new = new FS::svc_forward { 'srcsvc' => $p->{'svcnum'},
1991                                   'dst'    => $p->{'dst'},
1992                                 };
1993
1994   my $error;
1995   if ( $old ) {
1996     $new->svcnum($old->svcnum);
1997     my $cust_svc = $old->cust_svc;
1998     $new->svcpart($old->svcpart);
1999     $new->pkgnuym($old->pkgnum);
2000     $error = $new->replace($old);
2001   } else {
2002     my $conf = new FS::Conf;
2003     $new->svcpart($conf->config('selfservice-svc_forward_svcpart'));
2004
2005     my $svc_acct = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct' )
2006       or return { 'error' => 'No service' }; #how would we even get here?
2007
2008     $new->pkgnum( $svc_acct->cust_svc->pkgnum );
2009
2010     $error = $new->insert;
2011   }
2012
2013   return { 'error' => $error };
2014
2015 }
2016
2017 sub list_dsl_devices {
2018   my $p = shift;
2019
2020   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2021   return { 'error' => $session } if $context eq 'error';
2022
2023   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2024     or return { 'error' => "Service not found" };
2025
2026   return {
2027     'devices' => [ map {
2028                          +{ 'mac_addr' => $_->mac_addr };
2029                        } $svc_dsl->dsl_device
2030                  ],
2031   };
2032
2033 }
2034
2035 sub add_dsl_device {
2036   my $p = shift;
2037
2038   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2039   return { 'error' => $session } if $context eq 'error';
2040
2041   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2042     or return { 'error' => "Service not found" };
2043
2044   return { 'error' => 'No MAC address supplied' }
2045     unless length($p->{'mac_addr'});
2046
2047   my $dsl_device = new FS::dsl_device { 'svcnum'   => $svc_dsl->svcnum,
2048                                         'mac_addr' => scalar($p->{'mac_addr'}),
2049                                       };
2050   my $error = $dsl_device->insert;
2051   return { 'error' => $error };
2052
2053 }
2054
2055 sub delete_dsl_device {
2056   my $p = shift;
2057
2058   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2059   return { 'error' => $session } if $context eq 'error';
2060
2061   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2062     or return { 'error' => "Service not found" };
2063
2064   my $dsl_device = qsearchs('dsl_device', { 'svcnum'   => $svc_dsl->svcnum,
2065                                             'mac_addr' => scalar($p->{'mac_addr'}),
2066                                           }
2067                            )
2068     or return { 'error' => 'Unknown MAC address: '. $p->{'mac_addr'} };
2069
2070   my $error = $dsl_device->delete;
2071   return { 'error' => $error };
2072
2073 }
2074
2075 sub port_graph {
2076   my $p = shift;
2077   _usage_details( \&_port_graph, $p,
2078                   'svcdb' => 'svc_port',
2079                 );
2080 }
2081
2082 sub _port_graph {
2083   my($svc_port, $begin, $end) = @_;
2084   my @usage = ();
2085   my $pngOrError = $svc_port->graph_png( start=>$begin, end=> $end );
2086   push @usage, { 'png' => $pngOrError };
2087   (@usage);
2088 }
2089
2090 sub _list_svc_usage {
2091   my($svc_acct, $begin, $end) = @_;
2092   my @usage = ();
2093   foreach my $part_export ( 
2094     map { qsearch ( 'part_export', { 'exporttype' => $_ } ) }
2095     qw( sqlradius sqlradius_withdomain )
2096   ) {
2097     push @usage, @ { $part_export->usage_sessions($begin, $end, $svc_acct) };
2098   }
2099   (@usage);
2100 }
2101
2102 sub list_svc_usage {
2103   _usage_details(\&_list_svc_usage, @_);
2104 }
2105
2106 sub _list_support_usage {
2107   my($svc_acct, $begin, $end) = @_;
2108   my @usage = ();
2109   foreach ( grep { $begin <= $_->_date && $_->_date <= $end }
2110             qsearch('acct_rt_transaction', { 'svcnum' => $svc_acct->svcnum })
2111           ) {
2112     push @usage, { 'seconds'  => $_->seconds,
2113                    'support'  => $_->support,
2114                    '_date'    => $_->_date,
2115                    'id'       => $_->transaction_id,
2116                    'creator'  => $_->creator,
2117                    'subject'  => $_->subject,
2118                    'status'   => $_->status,
2119                    'ticketid' => $_->ticketid,
2120                  };
2121   }
2122   (@usage);
2123 }
2124
2125 sub list_support_usage {
2126   _usage_details(\&_list_support_usage, @_);
2127 }
2128
2129 sub _list_cdr_usage {
2130   # XXX CDR type support...
2131   # XXX any way to do a paged search on this?
2132   # we have to return the results all at once...
2133   my($svc_x, $begin, $end, %opt) = @_;
2134   map [ $_->downstream_csv(%opt, 'keeparray' => 1) ],
2135     $svc_x->get_cdrs(
2136       'begin' => $begin,
2137       'end'   => $end,
2138       'disable_charged_party' => 1,
2139       %opt
2140     );
2141 }
2142
2143 sub list_cdr_usage {
2144   my $p = shift;
2145   _usage_details( \&_list_cdr_usage, $p );
2146 }
2147
2148 sub _usage_details {
2149   my($callback, $p, %opt) = @_;
2150   my $conf = FS::Conf->new;
2151
2152   if ( $conf->exists('selfservice_hide-usage') ) {
2153     return { 'error' => 'Viewing usage is not allowed.' };
2154   }
2155
2156   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2157   return { 'error' => $session } if $context eq 'error';
2158
2159   my $search = { 'svcnum' => $p->{'svcnum'} };
2160   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2161
2162   my $cust_svc = qsearchs( 'cust_svc', $search );
2163   return { 'error' => 'No service selected in list_svc_usage' } 
2164     unless $cust_svc;
2165
2166   my $svc_x = $cust_svc->svc_x;
2167   my $svcdb = $svc_x->table;
2168   my $cust_pkg = $cust_svc->cust_pkg;
2169   my $freq     = $cust_pkg->part_pkg->freq;
2170   my %callback_opt;
2171   my $header = [];
2172   if ( $svcdb eq 'svc_phone' or $svcdb eq 'svc_pbx' ) {
2173     my $format = '';
2174     if ( $p->{inbound} ) {
2175       $format = $cust_pkg->part_pkg->option('selfservice_inbound_format') 
2176                 || $conf->config('selfservice-default_inbound_cdr_format')
2177                 || 'source_default';
2178       $callback_opt{inbound} = 1;
2179     } else {
2180       $format = $cust_pkg->part_pkg->option('selfservice_format')
2181                 || $conf->config('selfservice-default_cdr_format')
2182                 || 'default';
2183     }
2184
2185     $callback_opt{format} = $format;
2186     $callback_opt{use_clid} = 1;
2187     $header = [ split(',', FS::cdr::invoice_header($format) ) ];
2188   }
2189
2190   my $start    = $cust_pkg->setup;
2191   #my $end      = $cust_pkg->bill; # or time?
2192   my $end      = time;
2193
2194   unless ( $p->{beginning} ) {
2195     $p->{beginning} = $cust_pkg->last_bill;
2196     $p->{ending}    = $end;
2197   }
2198
2199   die "illegal beginning" if $p->{beginning} !~ /^\d*$/;
2200   die "illegal ending"    if $p->{ending}    !~ /^\d*$/;
2201
2202   my (@usage) = &$callback($svc_x, $p->{beginning}, $p->{ending}, 
2203     %callback_opt
2204   );
2205
2206   if ( $conf->exists('selfservice-hide_cdr_price') ) {
2207     # ugly kludge, I know
2208     my ($delete_col) = grep { $header->[$_] eq 'Price' } (0..scalar(@$header));
2209     if (defined $delete_col) {
2210       delete($_->[$delete_col]) foreach ($header, @usage);
2211     }
2212   }
2213
2214   #kinda false laziness with FS::cust_main::bill, but perhaps
2215   #we should really change this bit to DateTime and DateTime::Duration
2216   #
2217   #change this bit to use Date::Manip? CAREFUL with timezones (see
2218   # mailing list archive)
2219   my ($nsec,$nmin,$nhour,$nmday,$nmon,$nyear) =
2220     (localtime($p->{ending}) )[0,1,2,3,4,5];
2221   my ($psec,$pmin,$phour,$pmday,$pmon,$pyear) =
2222     (localtime($p->{beginning}) )[0,1,2,3,4,5];
2223
2224   if ( $freq =~ /^\d+$/ ) {
2225     $nmon += $freq;
2226     until ( $nmon < 12 ) { $nmon -= 12; $nyear++; }
2227     $pmon -= $freq;
2228     until ( $pmon >= 0 ) { $pmon += 12; $pyear--; }
2229   } elsif ( $freq =~ /^(\d+)w$/ ) {
2230     my $weeks = $1;
2231     $nmday += $weeks * 7;
2232     $pmday -= $weeks * 7;
2233   } elsif ( $freq =~ /^(\d+)d$/ ) {
2234     my $days = $1;
2235     $nmday += $days;
2236     $pmday -= $days;
2237   } elsif ( $freq =~ /^(\d+)h$/ ) {
2238     my $hours = $1;
2239     $nhour += $hours;
2240     $phour -= $hours;
2241   } else {
2242     return { 'error' => "unparsable frequency: ". $freq };
2243   }
2244   
2245   my $previous  = timelocal_nocheck($psec,$pmin,$phour,$pmday,$pmon,$pyear);
2246   my $next      = timelocal_nocheck($nsec,$nmin,$nhour,$nmday,$nmon,$nyear);
2247
2248   { 
2249     'error'     => '',
2250     'svcnum'    => $p->{svcnum},
2251     'beginning' => $p->{beginning},
2252     'ending'    => $p->{ending},
2253     'inbound'   => $p->{inbound},
2254     'previous'  => ($previous > $start) ? $previous : $start,
2255     'next'      => ($next < $end) ? $next : $end,
2256     'header'    => $header,
2257     'usage'     => \@usage,
2258   };
2259 }
2260
2261 sub order_pkg {
2262   my $p = shift;
2263
2264   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2265   return { 'error' => $session } if $context eq 'error';
2266
2267   my $search = { 'custnum' => $custnum };
2268   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2269   my $cust_main = qsearchs('cust_main', $search )
2270     or return { 'error' => "unknown custnum $custnum" };
2271
2272   my $status = $cust_main->status;
2273
2274   my %order_pkg_options = ();
2275   if ( $p->{locationnum} > 0 ) {
2276     $order_pkg_options{locationnum} = delete($p->{locationnum});
2277   } elsif ( $p->{address1} ) {
2278     $order_pkg_options{'cust_location'} = new FS::cust_location {
2279       map { $_ => $p->{$_} }
2280         qw( address1 address2 city county state zip country )
2281     };
2282   }
2283
2284   #false laziness w/ClientAPI/Signup.pm
2285
2286   my $cust_pkg = new FS::cust_pkg ( {
2287     'custnum'  => $custnum,
2288     'pkgpart'  => $p->{'pkgpart'},
2289     'quantity' => $p->{'quantity'} || 1,
2290   } );
2291   my $error = $cust_pkg->check;
2292   return { 'error' => $error } if $error;
2293
2294   my @svc = ();
2295   unless ( $p->{'svcpart'} eq 'none' ) {
2296
2297     my $svcdb;
2298     my $svcpart = '';
2299     if ( $p->{'svcpart'} =~ /^(\d+)$/ ) {
2300       $svcpart = $1;
2301       my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
2302       return { 'error' => "Unknown svcpart $svcpart" } unless $part_svc;
2303       $svcdb = $part_svc->svcdb;
2304     } else {
2305       $svcdb = 'svc_acct';
2306     }
2307     $svcpart ||= $cust_pkg->part_pkg->svcpart($svcdb);
2308
2309     my %fields = (
2310       'svc_acct'     => [ qw( username domsvc _password sec_phrase popnum ) ],
2311       'svc_domain'   => [ qw( domain ) ],
2312       'svc_phone'    => [ qw( phonenum pin sip_password phone_name ) ],
2313       'svc_external' => [ qw( id title ) ],
2314       'svc_pbx'      => [ qw( id title ) ],
2315     );
2316   
2317     my $svc_x = "FS::$svcdb"->new( {
2318       'svcpart'   => $svcpart,
2319       map { $_ => $p->{$_} } @{$fields{$svcdb}}
2320     } );
2321     
2322     if ( $svcdb eq 'svc_acct' && exists($p->{"snarf_machine1"}) ) {
2323       my @acct_snarf;
2324       my $snarfnum = 1;
2325       while ( length($p->{"snarf_machine$snarfnum"}) ) {
2326         my $acct_snarf = new FS::acct_snarf ( {
2327           'machine'   => $p->{"snarf_machine$snarfnum"},
2328           'protocol'  => $p->{"snarf_protocol$snarfnum"},
2329           'username'  => $p->{"snarf_username$snarfnum"},
2330           '_password' => $p->{"snarf_password$snarfnum"},
2331         } );
2332         $snarfnum++;
2333         push @acct_snarf, $acct_snarf;
2334       }
2335       $svc_x->child_objects( \@acct_snarf );
2336     }
2337     
2338     my $y = $svc_x->setdefault; # arguably should be in new method
2339     return { 'error' => $y } if $y && !ref($y);
2340   
2341     $error = $svc_x->check;
2342     return { 'error' => $error } if $error;
2343
2344     push @svc, $svc_x;
2345
2346   }
2347
2348   $error = $cust_main->order_pkg(
2349     'cust_pkg' => $cust_pkg,
2350     'svcs'     => \@svc,
2351     'noexport' => 1,
2352     %order_pkg_options,
2353   );
2354   return { 'error' => $error } if $error;
2355
2356   my $conf = new FS::Conf;
2357   if ( $conf->exists('signup_server-realtime') ) {
2358
2359     my $bill_error = _do_bop_realtime( $cust_main, $status, 'collect'=>$p->{run_bill_events} );
2360
2361     if ($bill_error) {
2362       $cust_pkg->cancel('quiet'=>1);
2363       return $bill_error;
2364     } else {
2365       $cust_pkg->reexport;
2366     }
2367
2368   } else {
2369     $cust_pkg->reexport;
2370   }
2371
2372   my $svcnum = $svc[0] ? $svc[0]->svcnum : '';
2373
2374   return { error=>'', pkgnum=>$cust_pkg->pkgnum, svcnum=>$svcnum };
2375
2376 }
2377
2378 sub change_pkg {
2379   my $p = shift;
2380
2381   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2382   return { 'error' => $session } if $context eq 'error';
2383
2384   my $conf = new FS::Conf;
2385   my $immutable = $conf->exists('selfservice_immutable-package');
2386   return { 'error' => "Package modification disabled" } if $immutable;
2387
2388   my $search = { 'custnum' => $custnum };
2389   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2390   my $cust_main = qsearchs('cust_main', $search )
2391     or return { 'error' => "unknown custnum $custnum" };
2392
2393   my $status = $cust_main->status;
2394   my $cust_pkg = qsearchs('cust_pkg', { 'pkgnum' => $p->{pkgnum} } )
2395     or return { 'error' => "unknown package $p->{pkgnum}" };
2396
2397   #if someone does need self-service package change of suspended packages,
2398   # figure out how to be more discriminating
2399   return { error=>"Can't change a suspended package", pkgnum=>$cust_pkg->pkgnum}
2400     if $cust_pkg->status eq 'suspended';
2401
2402   my $err_or_cust_pkg = $cust_pkg->change( 'pkgpart'  => $p->{'pkgpart'},
2403                                            'quantity' => $p->{'quantity'} || 1,
2404                                          );
2405
2406   return { error=>$err_or_cust_pkg, pkgnum=>$cust_pkg->pkgnum }
2407     unless ref($err_or_cust_pkg);
2408
2409   if ( $conf->exists('signup_server-realtime') ) {
2410
2411     my $bill_error = _do_bop_realtime( $cust_main, $status, 'no_invoice_void'=>1 );
2412
2413     if ($bill_error) {
2414       $err_or_cust_pkg->suspend;
2415       return $bill_error;
2416     } else {
2417       $err_or_cust_pkg->reexport;
2418     }
2419
2420   } else {  
2421     $err_or_cust_pkg->reexport;
2422   }
2423
2424   return { error => '', pkgnum => $cust_pkg->pkgnum };
2425
2426 }
2427
2428 sub order_recharge {
2429   my $p = shift;
2430
2431   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2432   return { 'error' => $session } if $context eq 'error';
2433
2434   my $search = { 'custnum' => $custnum };
2435   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2436   my $cust_main = qsearchs('cust_main', $search )
2437     or return { 'error' => "unknown custnum $custnum" };
2438
2439   my $status = $cust_main->status;
2440   my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $p->{'svcnum'} } )
2441     or return { 'error' => "unknown service " . $p->{'svcnum'} };
2442
2443   my $svc_x = $cust_svc->svc_x;
2444   my $part_pkg = $cust_svc->cust_pkg->part_pkg;
2445
2446   my %vhash =
2447     map { $_ =~ /^recharge_(.*)$/; $1, $part_pkg->option($_, 1) } 
2448     qw ( recharge_seconds recharge_upbytes recharge_downbytes
2449          recharge_totalbytes );
2450   my $amount = $part_pkg->option('recharge_amount', 1); 
2451   
2452   my ($l, $v, $d) = $cust_svc->label;  # blah
2453   my $pkg = "Recharge $v"; 
2454
2455   my $bill_error = $cust_main->charge($amount, $pkg,
2456      "time: $vhash{seconds}, up: $vhash{upbytes}," . 
2457      "down: $vhash{downbytes}, total: $vhash{totalbytes}",
2458      $part_pkg->taxclass); #meh
2459
2460   my $conf = new FS::Conf;
2461   if ( $conf->exists('signup_server-realtime') && !$bill_error ) {
2462
2463     $bill_error = _do_bop_realtime( $cust_main, $status );
2464
2465     if ($bill_error) {
2466       return $bill_error;
2467     } else {
2468       my $error = $svc_x->recharge (\%vhash);
2469       return { 'error' => $error } if $error;
2470     }
2471
2472   } else {  
2473     my $error = $bill_error;
2474     $error ||= $svc_x->recharge (\%vhash);
2475     return { 'error' => $error } if $error;
2476   }
2477
2478   return { error => '', svc => $cust_svc->part_svc->svc };
2479
2480 }
2481
2482 sub _do_bop_realtime {
2483   my ($cust_main, $status, %opt) = @_;
2484
2485   my $old_balance = $cust_main->balance;
2486
2487   my @cust_bill;
2488   my $bill_error = $cust_main->bill(
2489     'return_bill'   => \@cust_bill,
2490   );
2491
2492   $bill_error ||= $cust_main->apply_payments_and_credits;
2493
2494   $bill_error ||= $cust_main->realtime_collect('selfservice' => 1)
2495     if $cust_main->payby =~ /^(CARD|CHEK)$/;
2496
2497   if (    $cust_main->balance > $old_balance
2498        && $cust_main->balance > 0
2499        && ( $cust_main->payby !~ /^(BILL|DCRD|DCHK)$/
2500               || $status eq 'suspended'
2501           )
2502      )
2503   {
2504     unless ( $opt{'no_invoice_void'} ) {
2505
2506       #this used to apply a credit, but now we can void invoices...
2507       foreach my $cust_bill (@cust_bill) {
2508         my $voiderror = $cust_bill->void('automatic payment failed');
2509         warn "Error voiding cust bill after decline: $voiderror" if $voiderror;
2510       }
2511
2512     }
2513
2514     return { 'error' => '_decline', 'bill_error' => $bill_error };
2515   }
2516
2517   if ( $opt{'collect'} ) {
2518     my $collect_error = $cust_main->collect();
2519     return { 'error' => '_decline', 'bill_error' => $collect_error }
2520      if $collect_error; #?
2521   }
2522
2523   '';
2524 }
2525
2526 sub renew_info {
2527   my $p = shift;
2528
2529   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2530   return { 'error' => $session } if $context eq 'error';
2531
2532   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2533     or return { 'error' => "unknown custnum $custnum" };
2534
2535   my @cust_pkg = sort { $a->bill <=> $b->bill }
2536                  grep { $_->part_pkg->freq ne '0' }
2537                  $cust_main->ncancelled_pkgs;
2538
2539   #return { 'error' => 'No active packages to renew.' } unless @cust_pkg;
2540
2541   my $total = $cust_main->balance;
2542
2543   my @array = map {
2544                     my $bill = $_->bill;
2545                     $total += $_->part_pkg->base_recur($_, \$bill);
2546                     my $renew_date = $_->part_pkg->add_freq($_->bill);
2547                     {
2548                       'pkgnum'             => $_->pkgnum,
2549                       'amount'             => sprintf('%.2f', $total),
2550                       'bill_date'          => $_->bill,
2551                       'bill_date_pretty'   => time2str('%x', $_->bill),
2552                       'renew_date'         => $renew_date,
2553                       'renew_date_pretty'  => time2str('%x', $renew_date),
2554                       'expire_date'        => $_->expire,
2555                       'expire_date_pretty' => time2str('%x', $_->expire),
2556                     };
2557                   }
2558                   @cust_pkg;
2559
2560   return { 'dates' => \@array };
2561
2562 }
2563
2564 sub payment_info_renew_info {
2565   my $p = shift;
2566   my $renew_info   = renew_info($p);
2567   my $payment_info = payment_info($p);
2568   return { %$renew_info,
2569            %$payment_info,
2570          };
2571 }
2572
2573 sub order_renew {
2574   my $p = shift;
2575
2576   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2577   return { 'error' => $session } if $context eq 'error';
2578
2579   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2580     or return { 'error' => "unknown custnum $custnum" };
2581
2582   my $date = $p->{'date'};
2583
2584   my $now = time;
2585
2586   #freeside-daily -n -d $date fs_daily $custnum
2587   $cust_main->bill_and_collect( 'time'         => $date,
2588                                 'invoice_time' => $now,
2589                                 'actual_time'  => $now,
2590                                 'check_freq'   => '1d',
2591                               );
2592
2593   return { 'error' => '' };
2594
2595 }
2596
2597 sub suspend_pkg {
2598   my $p = shift;
2599   my $session = _cache->get($p->{'session_id'})
2600     or return { 'error' => "Can't resume session" }; #better error message
2601
2602   my $custnum = $session->{'custnum'};
2603
2604   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2605     or return { 'error' => "unknown custnum $custnum" };
2606
2607   my $conf = new FS::Conf;
2608   my $reasonnum = 
2609     $conf->config('selfservice-self_suspend_reason', $cust_main->agentnum)
2610       or return { 'error' => 'Permission denied' };
2611
2612   my $pkgnum = $p->{'pkgnum'};
2613
2614   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2615                                         'pkgnum'  => $pkgnum,   } )
2616     or return { 'error' => "unknown pkgnum $pkgnum" };
2617
2618   my $error = $cust_pkg->suspend(reason => $reasonnum);
2619   return { 'error' => $error };
2620
2621 }
2622
2623 sub cancel_pkg {
2624   my $p = shift;
2625   my $session = _cache->get($p->{'session_id'})
2626     or return { 'error' => "Can't resume session" }; #better error message
2627
2628   my $custnum = $session->{'custnum'};
2629   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2630     or return { 'error' => "unknown custnum $custnum" };
2631
2632   my $pkgnum = $p->{'pkgnum'};
2633   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2634                                         'pkgnum'  => $pkgnum,   } )
2635     or return { 'error' => "unknown pkgnum $pkgnum" };
2636
2637   my $error = $cust_pkg->cancel( 'quiet' => 1,
2638                                  'date'  => $p->{'date'},
2639                                );
2640   return { 'error' => $error };
2641 }
2642
2643 sub provision_phone {
2644   my $p = shift;
2645   my @bulkdid;
2646   @bulkdid = @{$p->{'bulkdid'}} if $p->{'bulkdid'};
2647
2648   #editing an existing phone number
2649   if ( $p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ ) {
2650       my($context, $session, $custnum) = _custoragent_session_custnum($p);
2651       return { 'error' => $session } if $context eq 'error';
2652     
2653       my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2654       return { 'error' => 'service not found' } unless $svc_phone;
2655       return { 'error' => 'invalid svcnum' } 
2656         if $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum != $custnum;
2657
2658       $svc_phone->email($p->{'email'}) 
2659         if $svc_phone->email ne $p->{'email'} && $p->{'email'} =~ /^([\w\.\d@]+|)$/;
2660       $svc_phone->forwarddst($p->{'forwarddst'}) 
2661         if $svc_phone->forwarddst ne $p->{'forwarddst'} 
2662             && $p->{'forwarddst'} =~ /^(\d+|)$/;
2663       return { 'error' => $svc_phone->replace };
2664  }
2665
2666   # single DID LNP
2667   unless ( $p->{'lnp'} ) {
2668     $p->{'lnp_desired_due_date'} = parse_datetime($p->{'lnp_desired_due_date'});
2669     $p->{'lnp_status'} = "portingin";
2670     return _provision( 'FS::svc_phone',
2671                   [qw(lnp_desired_due_date lnp_other_provider 
2672                     lnp_other_provider_account phonenum countrycode lnp_status)],
2673                   [qw(phonenum countrycode)],
2674                   $p,
2675                   @_
2676                 );
2677   }
2678
2679   # single DID order (the usual case)
2680   unless (scalar(@bulkdid)) {
2681     return _provision( 'FS::svc_phone',
2682                   [qw(phonenum countrycode)],
2683                   [qw(phonenum countrycode)],
2684                   $p,
2685                   @_
2686                 );
2687   }
2688
2689   # bulk DID order case
2690   my $error;
2691   foreach my $did ( @bulkdid ) {
2692     $did =~ s/[^0-9]//g;
2693     $error = _provision( 'FS::svc_phone',
2694               [qw(phonenum countrycode)],
2695               [qw(phonenum countrycode)],
2696               {
2697                 'pkgnum' => $p->{'pkgnum'},
2698                 'svcpart' => $p->{'svcpart'},
2699                 'phonenum' => $did,
2700                 'countrycode' => $p->{'countrycode'},
2701                 'session_id' => $p->{'session_id'},
2702               }
2703             );
2704     return $error if ($error->{'error'} && length($error->{'error'}) > 1);
2705   }
2706   { 'bulkdid' => [ @bulkdid ], 'svc' => $error->{'svc'} }
2707 }
2708
2709 sub provision_pbx {
2710   my $p = shift;
2711   warn "provision_pbx called\n"
2712     if $DEBUG;
2713
2714   warn "provision_pbx calling _provision\n"
2715     if $DEBUG;
2716   _provision( 'FS::svc_pbx',
2717               [qw(id title max_extensions max_simultaneous ip_addr)],
2718               [qw(id title max_extensions max_simultaneous ip_addr)],
2719               $p,
2720               @_
2721             );
2722 }
2723
2724 sub provision_acct {
2725   my $p = shift;
2726   warn "provision_acct called\n"
2727     if $DEBUG;
2728
2729   return { 'error' => gettext('passwords_dont_match') }
2730     if $p->{'_password'} ne $p->{'_password2'};
2731   return { 'error' => gettext('empty_password') }
2732     unless length($p->{'_password'});
2733  
2734   if ($p->{'domsvc'}) {
2735     my %domains = domain_select_hash FS::svc_acct(map { $_ => $p->{$_} }
2736                                                   qw ( svcpart pkgnum ) );
2737     return { 'error' => gettext('invalid_domain') }
2738       unless ($domains{$p->{'domsvc'}});
2739   }
2740
2741   warn "provision_acct calling _provision\n"
2742     if $DEBUG;
2743   _provision( 'FS::svc_acct',
2744               [qw(username _password domsvc)],
2745               [qw(username _password domsvc)],
2746               $p,
2747               @_
2748             );
2749 }
2750
2751 sub provision_external {
2752   my $p = shift;
2753   #_provision( 'FS::svc_external', [qw(id title)], [qw(id title)], $p, @_ );
2754   _provision( 'FS::svc_external',
2755               [],
2756               [qw(id title)],
2757               $p,
2758               @_
2759             );
2760 }
2761
2762 sub provision_forward {
2763   my $p = shift;
2764   _provision( 'FS::svc_forward',
2765               ['srcsvc','src','dstsvc','dst'],
2766               [],
2767               $p,
2768             );
2769 }
2770
2771 sub _provision {
2772   my( $class, $fields, $return_fields, $p ) = splice(@_, 0, 4);
2773   warn "_provision called for $class\n"
2774     if $DEBUG;
2775
2776   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2777   return { 'error' => $session } if $context eq 'error';
2778
2779   my $search = { 'custnum' => $custnum };
2780   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2781   my $cust_main = qsearchs('cust_main', $search )
2782     or return { 'error' => "unknown custnum $custnum" };
2783
2784   my $pkgnum = $p->{'pkgnum'};
2785
2786   warn "searching for custnum $custnum pkgnum $pkgnum\n"
2787     if $DEBUG;
2788   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2789                                         'pkgnum'  => $pkgnum,
2790                                                                } )
2791     or return { 'error' => "unknown pkgnum $pkgnum" };
2792
2793   warn "searching for svcpart ". $p->{'svcpart'}. "\n"
2794     if $DEBUG;
2795   my $part_svc = qsearchs('part_svc', { 'svcpart' => $p->{'svcpart'} } )
2796     or return { 'error' => "unknown svcpart $p->{'svcpart'}" };
2797
2798   return { error=> 'svcpart '. $p->{'svcpart'}. " is not a $class definition" }
2799     if $class ne 'FS::'. $part_svc->svcdb;
2800
2801   warn "creating $class record\n"
2802     if $DEBUG;
2803   my $svc_x = $class->new( {
2804     'pkgnum'  => $p->{'pkgnum'},
2805     'svcpart' => $p->{'svcpart'},
2806     map { $_ => $p->{$_} } @$fields
2807   } );
2808
2809   my %insert_args = ();
2810   #i shouldn't be a special case here (pass an option or something)
2811   if ( $class eq 'FS::svc_phone'
2812          && grep length($p->{$_}), @location_editable_fields
2813      )
2814   {
2815     $insert_args{'cust_location'} = new FS::cust_location {
2816       map { $_ => $p->{$_} } @location_editable_fields
2817     };
2818   }
2819
2820   warn "inserting $class record\n"
2821     if $DEBUG;
2822   my $error = $svc_x->insert(%insert_args);
2823
2824   unless ( $error ) {
2825     warn "finding inserted record for svcnum ". $svc_x->svcnum. "\n"
2826       if $DEBUG;
2827     $svc_x = qsearchs($svc_x->table, { 'svcnum' => $svc_x->svcnum })
2828   }
2829
2830   my $return = { 'svc'   => $part_svc->svc,
2831                  'error' => $error,
2832                  map { $_ => $svc_x->get($_) } @$return_fields
2833                };
2834   warn "_provision returning ". Dumper($return). "\n"
2835     if $DEBUG;
2836   return $return;
2837
2838 }
2839
2840 sub part_svc_info {
2841   my $p = shift;
2842
2843   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2844   return { 'error' => $session } if $context eq 'error';
2845
2846   my $search = { 'custnum' => $custnum };
2847   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2848   my $cust_main = qsearchs('cust_main', $search )
2849     or return { 'error' => "unknown custnum $custnum" };
2850
2851   my $pkgnum = $p->{'pkgnum'};
2852
2853   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2854                                         'pkgnum'  => $pkgnum,
2855                                                                } )
2856     or return { 'error' => "unknown pkgnum $pkgnum" };
2857
2858   my $svcpart = $p->{'svcpart'};
2859
2860   my $pkg_svc = qsearchs('pkg_svc', { 'pkgpart' => $cust_pkg->pkgpart,
2861                                       'svcpart' => $svcpart,           } )
2862     or return { 'error' => "unknown svcpart $svcpart for pkgnum $pkgnum" };
2863   my $part_svc = $pkg_svc->part_svc;
2864
2865   my $conf = new FS::Conf;
2866
2867   my $ret = {
2868     'svc'     => $part_svc->svc,
2869     'svcdb'   => $part_svc->svcdb,
2870     'pkgnum'  => $pkgnum,
2871     'svcpart' => $svcpart,
2872     'custnum' => $custnum,
2873
2874     'security_phrase' => 0, #XXX !
2875     'svc_acct_pop'    => [], #XXX !
2876     'popnum'          => '',
2877     'init_popstate'   => '',
2878     'popac'           => '',
2879     'acstate'         => '',
2880
2881     'small_custview' =>
2882       small_custview( $cust_main, $conf->config('countrydefault') ),
2883
2884   };
2885
2886   if ($p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ 
2887                      && $ret->{'svcdb'} eq 'svc_phone') {
2888         $ret->{'svcnum'} = $p->{'svcnum'};
2889         my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2890         if ( $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum == $custnum ) {
2891             $ret->{'email'} = $svc_phone->email;
2892             $ret->{'forwarddst'} = $svc_phone->forwarddst;
2893         }
2894   }
2895
2896   if ($ret->{'svcdb'} eq 'svc_forward') {
2897     $ret->{'forward_emails'} = {$cust_pkg->forward_emails()};
2898   }
2899
2900   $ret;
2901 }
2902
2903 sub unprovision_svc {
2904   my $p = shift;
2905
2906   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2907   return { 'error' => $session } if $context eq 'error';
2908
2909   my $search = { 'custnum' => $custnum };
2910   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2911   my $cust_main = qsearchs('cust_main', $search )
2912     or return { 'error' => "unknown custnum $custnum" };
2913
2914   my $svcnum = $p->{'svcnum'};
2915
2916   my $cust_svc = qsearchs('cust_svc', { 'svcnum'  => $svcnum, } )
2917     or return { 'error' => "unknown svcnum $svcnum" };
2918
2919   return { 'error' => "Service $svcnum does not belong to customer $custnum" }
2920     unless $cust_svc->cust_pkg->custnum == $custnum;
2921
2922   my $conf = new FS::Conf;
2923
2924   return { 'svc'   => $cust_svc->part_svc->svc,
2925            'error' => $cust_svc->cancel,
2926            'small_custview' =>
2927              small_custview( $cust_main, $conf->config('countrydefault') ),
2928          };
2929
2930 }
2931
2932 sub myaccount_passwd {
2933   my $p = shift;
2934   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2935   return { 'error' => $session } if $context eq 'error';
2936
2937   return { 'error' => "New passwords don't match." }
2938     if $p->{'new_password'} ne $p->{'new_password2'};
2939
2940   return { 'error' => 'Enter new password' }
2941     unless length($p->{'new_password'});
2942
2943   #my $search = { 'custnum' => $custnum };
2944   #$search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2945   $custnum =~ /^(\d+)$/ or die "illegal custnum";
2946   my $search = " AND custnum = $1";
2947   $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
2948
2949   my $svc_acct = qsearchs( {
2950     'table'     => 'svc_acct',
2951     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
2952                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
2953                    'LEFT JOIN cust_main USING ( custnum ) ',
2954     'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
2955     'extra_sql' => $search, #important
2956   } )
2957     or return { 'error' => "Service not found" };
2958
2959   my $error = '';
2960
2961   my $conf = new FS::Conf;
2962
2963   return { 'error' => 'Incorrect current password.' }
2964     if  ( exists($p->{'old_password'})
2965           || $conf->exists('selfservice-password_change_oldpass')
2966         )
2967     && ! $svc_acct->check_password($p->{'old_password'});
2968
2969   $error ||= $svc_acct->is_password_allowed($p->{'new_password'})
2970          ||  $svc_acct->set_password($p->{'new_password'})
2971          ||  $svc_acct->replace();
2972
2973   #regular pw change in self-service should change contact pw too, otherwise its
2974   #way too confusing.  hell its confusing they're separate at all, but alas.
2975   #need to support the "ISP provides email that's used as a contact email" case
2976   #as well as we can.
2977   my $contact = FS::contact->by_selfservice_email($svc_acct->email);
2978   if ( $contact && $contact->custnum == $custnum ) {
2979     #svc_acct was successful but this one returns an error?  "shouldn't happen"
2980     #don't recheck is_password_allowed here; if the svc_acct password was
2981     #legal, that's good enough
2982     $error ||= $contact->change_password($p->{'new_password'});
2983   }
2984
2985   my($label, $value) = $svc_acct->cust_svc->label;
2986
2987   return { 'error' => $error,
2988            'label' => $label,
2989            'value' => $value,
2990          };
2991
2992 }
2993
2994 sub reset_passwd {
2995   my $p = shift;
2996
2997   my $info = skin_info($p);
2998
2999   my $conf = new FS::Conf;
3000   my $verification = $conf->config('selfservice-password_reset_verification')
3001     or return { %$info, 'error' => 'Password resets disabled' };
3002
3003   my $contact = '';
3004   my $svc_acct = '';
3005   my $cust_main = '';
3006   if ( $p->{'email'} ) { #new-style, changes contact and svc_acct
3007   
3008     $contact = FS::contact->by_selfservice_email($p->{'email'});
3009
3010     $cust_main = $contact->cust_main if $contact;
3011
3012     #also look for an svc_acct, otherwise it would be super confusing
3013
3014     my($username, $domain) = split('@', $p->{'email'});
3015     my $svc_domain = qsearchs('svc_domain', { 'domain' => $domain } );
3016     if ( $svc_domain ) {
3017       $svc_acct = qsearchs('svc_acct', { 'username' => $username,
3018                                          'domsvc'   => $svc_domain->svcnum  }
3019                           );
3020       if ( $svc_acct ) {
3021         my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
3022         $cust_main ||= $cust_pkg->cust_main if $cust_pkg;
3023
3024         #precaution: don't change svc_acct password not part of the same
3025         # customer as contact
3026         $svc_acct = '' if ! $cust_pkg
3027                        || $cust_pkg->custnum != $cust_main->custnum;
3028       }
3029       
3030     }
3031
3032     return { %$info, 'error' => 'Email address not found' }
3033       unless $contact || $svc_acct;
3034
3035   } elsif ( $p->{'username'} ) { #old style, looks in svc_acct only
3036
3037     my $svc_domain = qsearchs('svc_domain', { 'domain' => $p->{'domain'} } )
3038       or return { %$info, 'error' => 'Account not found' };
3039
3040     $svc_acct = qsearchs('svc_acct', { 'username' => $p->{'username'},
3041                                        'domsvc'   => $svc_domain->svcnum  }
3042                         )
3043       or return { %$info, 'error' => 'Account not found' };
3044
3045     my $cust_pkg = $svc_acct->cust_svc->cust_pkg
3046       or return { %$info, 'error' => 'Account not found' };
3047
3048     $cust_main = $cust_pkg->cust_main;
3049
3050   }
3051
3052   my %verify = (
3053     'email'   => sub { 1; },
3054     'paymask' => sub { 
3055       my( $p, $cust_main ) = @_;
3056       $cust_main->payby =~ /^(CARD|DCRD|CHEK|DCHK)$/
3057         && $p->{'paymask'} eq substr($cust_main->paymask, -4)
3058     },
3059     'amount'  => sub {
3060       my( $p, $cust_main ) = @_;
3061       my $cust_pay = qsearchs({
3062         'table' => 'cust_pay',
3063         'hashref' => { 'custnum' => $cust_main->custnum },
3064         'order_by' => 'ORDER BY _date DESC LIMIT 1',
3065       })
3066         or return 0;
3067
3068       $p->{'amount'} == $cust_pay->paid;
3069     },
3070     'zip'     => sub {
3071       my( $p, $cust_main ) = @_;
3072       $p->{'zip'} eq $cust_main->zip
3073         || ( $cust_main->ship_zip && $p->{'zip'} eq $cust_main->ship_zip );
3074     },
3075   );
3076
3077   foreach my $verify ( split(',', $verification) ) {
3078
3079     &{ $verify{$verify} }( $p, $cust_main )
3080       or return { %$info, 'error' => 'Account not found' };
3081
3082   }
3083
3084   #okay, we're verified
3085
3086   if ( $contact ) {
3087
3088     my $error = $contact->send_reset_email(
3089                             'svcnum' => ($svc_acct ? $svc_acct->svcnum : ''),
3090                           );
3091
3092     if ( $error ) {
3093       return { %$info, 'error' => $error }; #????
3094     }
3095
3096   } elsif ( $svc_acct ) {
3097
3098     #create a unique session
3099
3100     my $reset_session = {
3101       'svcnum'   => $svc_acct->svcnum,
3102       'agentnum' => $svc_acct->cust_main->agentnum,
3103     };
3104
3105     my $timeout = '1 hour'; #?
3106
3107     my $reset_session_id;
3108     do {
3109       $reset_session_id = sha512_hex(time(). {}. rand(). $$)
3110     } until ( ! defined _cache->get("reset_passwd_$reset_session_id") );
3111       #just in case
3112
3113     _cache->set( "reset_passwd_$reset_session_id", $reset_session, $timeout );
3114
3115     #email it
3116
3117     my $msgnum = $conf->config('selfservice-password_reset_msgnum',
3118                                $cust_main->agentnum);
3119     #die "selfservice-password_reset_msgnum unset" unless $msgnum;
3120     return { %$info, 'error' => "selfservice-password_reset_msgnum unset" }
3121       unless $msgnum;
3122     my $msg_template = qsearchs('msg_template', { msgnum => $msgnum } );
3123     my $error = $msg_template->send( 'cust_main'     => $cust_main,
3124                                      'object'        => $svc_acct,
3125                                      'substitutions' => {
3126                                        'session_id' => $reset_session_id,
3127                                      }
3128                                    );
3129     if ( $error ) {
3130       return { %$info, 'error' => $error }; #????
3131     }
3132
3133   }
3134
3135   return { %$info, 'error' => '' };
3136 }
3137
3138 sub check_reset_passwd {
3139   my $p = shift;
3140
3141   my $conf = new FS::Conf;
3142   my $verification = $conf->config('selfservice-password_reset_verification')
3143     or return { 'error' => 'Password resets disabled' };
3144
3145   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
3146     or return { 'error' => "Can't resume session" }; #better error message
3147
3148   if ( $reset_session->{'svcnum'} ) {
3149
3150     my $svcnum = $reset_session->{'svcnum'};
3151
3152     my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
3153       or return { 'error' => "Service not found" };
3154
3155     $p->{'agentnum'} = $svc_acct->cust_svc->cust_pkg->cust_main->agentnum;
3156     my $info = skin_info($p);
3157
3158     return { %$info,
3159              'error'      => '',
3160              'session_id' => $p->{'session_id'},
3161              'username'   => $svc_acct->username,
3162            };
3163
3164   } elsif ( $reset_session->{'contactnum'} ) {
3165
3166     my $contactnum = $reset_session->{'contactnum'};
3167
3168     my $contact = qsearchs('contact', { 'contactnum' => $contactnum } )
3169       or return { 'error' => "Contact not found" };
3170
3171     my @contact_email = $contact->contact_email;
3172     return { 'error' => 'No contact email' } unless @contact_email;
3173
3174     $p->{'agentnum'} = $contact->cust_main->agentnum;
3175     my $info = skin_info($p);
3176
3177     return { %$info,
3178              'error'      => '',
3179              'session_id' => $p->{'session_id'},
3180              'email'      => $contact_email[0]->email, #the first?
3181            };
3182
3183   } else {
3184
3185     return { 'error' => 'No svcnum or contactnum in session' }; #??
3186
3187   }
3188
3189 }
3190
3191 sub process_reset_passwd {
3192   my $p = shift;
3193
3194   my $conf = new FS::Conf;
3195   my $verification = $conf->config('selfservice-password_reset_verification')
3196     or return { 'error' => 'Password resets disabled' };
3197
3198   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
3199     or return { 'error' => "Can't resume session" }; #better error message
3200
3201   my $info = '';
3202
3203   my $svc_acct = '';
3204   if ( $reset_session->{'svcnum'} ) {
3205
3206     my $svcnum = $reset_session->{'svcnum'};
3207
3208     $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
3209       or return { 'error' => "Service not found" };
3210
3211     $p->{'agentnum'} ||= $svc_acct->cust_svc->cust_pkg->cust_main->agentnum;
3212     $info ||= skin_info($p);
3213
3214   }
3215
3216   my $contact = '';
3217   if ( $reset_session->{'contactnum'} ) {
3218
3219     my $contactnum = $reset_session->{'contactnum'};
3220
3221     $contact = qsearchs('contact', { 'contactnum' => $contactnum } )
3222       or return { 'error' => "Contact not found" };
3223
3224     $p->{'agentnum'} ||= $contact->cust_main->agentnum;
3225     $info ||= skin_info($p);
3226
3227   }
3228
3229   return { %$info, 'error' => "New passwords don't match." }
3230     if $p->{'new_password'} ne $p->{'new_password2'};
3231
3232   return { %$info, 'error' => 'Enter new password' }
3233     unless length($p->{'new_password'});
3234
3235   if ( $svc_acct ) {
3236
3237     my $error ||= $svc_acct->is_password_allowed($p->{'new_password'})
3238               ||  $svc_acct->set_password($p->{'new_password'})
3239               ||  $svc_acct->replace();
3240
3241     return { %$info, 'error' => $error } if $error;
3242
3243     #my($label, $value) = $svc_acct->cust_svc->label;
3244     #return { 'error' => $error,
3245     #         #'label' => $label,
3246     #         #'value' => $value,
3247     #       };
3248
3249   }
3250
3251   if ( $contact ) {
3252
3253     my $error = $contact->is_password_allowed($p->{'new_password'})
3254             ||  $contact->change_password($p->{'new_password'});
3255
3256     return { %$info, 'error' => $error }; # if $error;
3257
3258   }
3259
3260   #password changed ,so remove session, don't want it reused
3261   _cache->remove($p->{'session_id'});
3262
3263   return { %$info, 'error' => '' };
3264
3265 }
3266
3267 sub validate_passwd {
3268   my $p = shift;
3269
3270   my %result;
3271   %result = ( 'fieldid' => $p->{'fieldid'} )
3272     if $p->{'fieldid'} =~ /^\w+$/;
3273
3274   return { %result, 'password_invalid' => 'Enter new password' }
3275     unless length($p->{'check_password'});
3276
3277   my $svc_acct;
3278   if ($p->{'svcnum'}) {
3279     # false laziness with myaccount_passwd
3280     my($context, $session, $custnum) = _custoragent_session_custnum($p);
3281     return { %result, 'error' => $session } if $context eq 'error';
3282
3283     $custnum =~ /^(\d+)$/ or die "illegal custnum";
3284     my $search = " AND custnum = $1";
3285     $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
3286
3287     $svc_acct = qsearchs( {
3288       'table'     => 'svc_acct',
3289       'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
3290                      'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
3291                      'LEFT JOIN cust_main USING ( custnum ) ',
3292       'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
3293       'extra_sql' => $search, #important
3294     } )
3295       or return { %result, 'error' => "Service not found" };
3296     # end false laziness
3297   }
3298
3299   unless ($svc_acct) {
3300     my $conf = new FS::Conf;
3301     my $agentnum = $p->{'agentnum'};
3302     return { %result, 'password_valid' => 1 }
3303       if $conf->config_bool('password-insecure', $p->{'agentnum'});
3304   }
3305
3306   $svc_acct ||= new FS::svc_acct {};
3307
3308   my $error = $svc_acct->is_password_allowed($p->{'check_password'});
3309   return { %result, 'password_invalid' => $error } if $error;
3310   return { %result, 'password_valid' => 1 };
3311 }
3312
3313 sub list_tickets {
3314   my $p = shift;
3315   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3316   return { 'error' => $session } if $context eq 'error';
3317
3318   my @tickets = ();
3319   if ( $session->{'pkgnum'} ) { 
3320
3321     #tickets for specific service with pkg-balances on
3322     my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
3323                                           'pkgnum'  => $session->{'pkgnum'} })
3324                      or return { 'error' => 'unknown package' };
3325     foreach my $cust_svc ( $cust_pkg->cust_svc ) {
3326       push @tickets, $cust_svc->tickets( $p->{status} );
3327     }
3328
3329   } else {
3330
3331     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
3332       or return { 'error' => "unknown custnum $custnum" };
3333
3334     @tickets = $cust_main->tickets( $p->{status} );
3335   }
3336
3337   # unavoidable false laziness w/ httemplate/view/cust_main/tickets.html
3338   if ( $FS::TicketSystem::system && FS::TicketSystem->selfservice_priority ) {
3339     my $conf = new FS::Conf;
3340     my $dir = $conf->exists('ticket_system-priority_reverse') ? -1 : 1;
3341     +{ tickets => [ 
3342          sort { 
3343            (
3344              ($a->{'_selfservice_priority'} eq '') <=>
3345              ($b->{'_selfservice_priority'} eq '')
3346            ) ||
3347            ( $dir * 
3348              ($b->{'_selfservice_priority'} <=> $a->{'_selfservice_priority'})
3349            )
3350          } @tickets
3351        ]
3352     };
3353   } else {
3354     +{ tickets => \@tickets };
3355   }
3356
3357 }
3358
3359 sub create_ticket {
3360   my $p = shift;
3361   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3362   return { 'error' => $session } if $context eq 'error';
3363
3364   warn "$me create_ticket: initializing ticket system\n" if $DEBUG;
3365   FS::TicketSystem->init();
3366
3367   my $conf = new FS::Conf;
3368   my $queue = $p->{'queue'}
3369               || $conf->config('ticket_system-selfservice_queueid')
3370               || $conf->config('ticket_system-default_queueid');
3371
3372   warn "$me create_ticket: creating ticket\n" if $DEBUG;
3373   my $err_or_ticket = FS::TicketSystem->create_ticket(
3374     '', #create RT session based on FS CurrentUser (fs_selfservice)
3375     'queue'   => $queue,
3376     'custnum' => $custnum,
3377     'svcnum'  => $session->{'svcnum'},
3378     map { $_ => $p->{$_} } qw( requestor cc subject message mime_type )
3379   );
3380
3381   if ( ref($err_or_ticket) ) {
3382     warn "$me create_ticket: successful: ". $err_or_ticket->id. "\n"
3383       if $DEBUG;
3384     return { 'error'     => '',
3385              'ticket_id' => $err_or_ticket->id,
3386            };
3387   } else {
3388     warn "$me create_ticket: unsuccessful: $err_or_ticket\n"
3389       if $DEBUG;
3390     return { 'error' => $err_or_ticket };
3391   }
3392
3393
3394 }
3395
3396 sub did_report {
3397   my $p = shift;
3398   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3399   return { 'error' => $session } if $context eq 'error';
3400  
3401   return { error => 'requested format not implemented' } 
3402     unless ($p->{'format'} eq 'csv' || $p->{'format'} eq 'xls');
3403
3404   my $conf = new FS::Conf;
3405   my $age_threshold = 0;
3406   $age_threshold = time() - $conf->config('selfservice-recent-did-age')
3407     if ($p->{'recentonly'} && $conf->exists('selfservice-recent-did-age'));
3408
3409   my $search = { 'custnum' => $custnum };
3410   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3411   my $cust_main = qsearchs('cust_main', $search )
3412     or return { 'error' => "unknown custnum $custnum" };
3413
3414 # does it make more sense to just run one sql query for this instead of all the
3415 # insanity below? would increase performance greately for large data sets?
3416   my @svc_phone = ();
3417   foreach my $cust_pkg ( $cust_main->ncancelled_pkgs ) {
3418         my @part_svc = $cust_pkg->part_svc;
3419         foreach my $part_svc ( @part_svc ) {
3420             if($part_svc->svcdb eq 'svc_phone'){
3421                 my @cust_pkg_svc = @{$part_svc->cust_pkg_svc};
3422                 foreach my $cust_pkg_svc ( @cust_pkg_svc ) {
3423                     push @svc_phone, $cust_pkg_svc->svc_x
3424                         if $cust_pkg_svc->date_inserted >= $age_threshold;
3425                 }
3426             }
3427         }
3428   }
3429
3430   my $csv;
3431   my $xls;
3432   my($xls_r,$xls_c) = (0,0);
3433   my $xls_workbook;
3434   my $content = '';
3435   my @fields = qw( countrycode phonenum pin sip_password phone_name );
3436   if($p->{'format'} eq 'csv') {
3437     $csv = new Text::CSV_XS { 'always_quote' => 1,
3438                                  'eol'          => "\n",
3439                                 };
3440     return { 'error' => 'Unable to create CSV' } unless $csv->combine(@fields);
3441     $content .= $csv->string;
3442   }
3443   elsif($p->{'format'} eq 'xls') {
3444     my $XLS1 = new IO::Scalar \$content;
3445     $xls_workbook = Spreadsheet::WriteExcel->new($XLS1) 
3446         or return { 'error' => "Error opening .xls file: $!" };
3447     $xls = $xls_workbook->add_worksheet('DIDs');
3448     foreach ( @fields ) {
3449         $xls->write(0,$xls_c++,$_);
3450     }
3451     $xls_r++;
3452   }
3453
3454   foreach my $svc_phone ( @svc_phone ) {
3455     my @cols = map { $svc_phone->$_ } @fields;
3456     if($p->{'format'} eq 'csv') {
3457         return { 'error' => 'Unable to create CSV' } 
3458             unless $csv->combine(@cols);
3459         $content .= $csv->string;
3460     }
3461     elsif($p->{'format'} eq 'xls') {
3462         $xls_c = 0;
3463         foreach ( @cols ) {
3464             $xls->write($xls_r,$xls_c++,$_);
3465         }
3466         $xls_r++;
3467     }
3468   }
3469
3470   $xls_workbook->close() if $p->{'format'} eq 'xls';
3471   
3472   { content => $content, format => $p->{'format'}, };
3473 }
3474
3475 sub get_ticket {
3476   my $p = shift;
3477   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3478   return { 'error' => $session } if $context eq 'error';
3479
3480 #  warn "$me get_ticket: initializing ticket system\n" if $DEBUG;
3481 #  FS::TicketSystem->init();
3482 #  return { 'error' => 'get_ticket configuration error' }
3483 #    if $FS::TicketSystem::system ne 'RT_Internal';
3484
3485   # check existence and ownership as part of this
3486   warn "$me get_ticket: fetching ticket\n" if $DEBUG;
3487   my $rt_session = FS::TicketSystem->session('');
3488   my $Ticket = FS::TicketSystem->get_ticket_object(
3489     $rt_session, 
3490     ticket_id => $p->{'ticket_id'},
3491     custnum => $custnum
3492   );
3493   return { 'error' => 'ticket not found' } if !$Ticket;
3494
3495   if ( length( $p->{'subject'} || '' ) ) {
3496     # subject change
3497     if ( $p->{'subject'} ne $Ticket->Subject ) {
3498       my ($val, $msg) = $Ticket->SetSubject($p->{'subject'});
3499       return { 'error' => "unable to set subject: $msg" } if !$val;
3500     }
3501   }
3502
3503   if(length($p->{'reply'})) {
3504     my @err_or_res = FS::TicketSystem->correspond_ticket(
3505       $rt_session,
3506       'ticket_id' => $p->{'ticket_id'},
3507       'content' => $p->{'reply'},
3508     );
3509
3510     return { 'error' => 'unable to reply to ticket' } 
3511     unless ( $err_or_res[0] != 0 && defined $err_or_res[2] );
3512   }
3513
3514   warn "$me get_ticket: getting ticket history\n" if $DEBUG;
3515   my $err_or_ticket = FS::TicketSystem->get_ticket(
3516     $rt_session,
3517     'ticket_id' => $p->{'ticket_id'},
3518   );
3519
3520   if ( !ref($err_or_ticket) ) { # there is no way this should ever happen
3521     warn "$me get_ticket: unsuccessful: $err_or_ticket\n"
3522       if $DEBUG;
3523     return { 'error' => $err_or_ticket };
3524   }
3525
3526   my @custs = @{$err_or_ticket->{'custs'}};
3527   my @txns = @{$err_or_ticket->{'txns'}};
3528   my @filtered_txns;
3529
3530   # superseded by check in get_ticket_object
3531   #return { 'error' => 'invalid ticket requested' } 
3532   #unless grep($_ eq $custnum, @custs);
3533
3534   foreach my $txn ( @txns ) {
3535     push @filtered_txns, $txn 
3536     if ($txn->{'type'} eq 'EmailRecord' 
3537       || $txn->{'type'} eq 'Correspond'
3538       || $txn->{'type'} eq 'Create');
3539   }
3540
3541   warn "$me get_ticket: successful: \n"
3542   if $DEBUG;
3543   return { 'error'     => '',
3544     'transactions' => \@filtered_txns,
3545     'ticket_fields' => $err_or_ticket->{'fields'},
3546     'ticket_id' => $p->{'ticket_id'},
3547   };
3548 }
3549
3550 sub adjust_ticket_priority {
3551   my $p = shift;
3552   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3553   return { 'error' => $session } if $context eq 'error';
3554
3555 #  warn "$me adjust_ticket_priority: initializing ticket system\n" if $DEBUG;
3556 #  FS::TicketSystem->init;
3557   my $ss_priority = FS::TicketSystem->selfservice_priority;
3558
3559   return { 'error' => 'adjust_ticket_priority configuration error' }
3560     if $FS::TicketSystem::system ne 'RT_Internal'
3561       or !$ss_priority;
3562
3563   my $values = $p->{'values'}; #hashref, id => priority value
3564   my %ticket_error;
3565
3566   foreach my $id (keys %$values) {
3567     warn "$me adjust_ticket_priority: fetching ticket $id\n" if $DEBUG;
3568     my $Ticket = FS::TicketSystem->get_ticket_object('',
3569       'ticket_id' => $id,
3570       'custnum'   => $custnum,
3571     );
3572     if ( !$Ticket ) {
3573       $ticket_error{$id} = 'ticket not found';
3574       next;
3575     }
3576     
3577   # RT API stuff--would we gain anything by wrapping this in FS::TicketSystem?
3578   # We're not going to implement it for RT_External.
3579     my $old_value = $Ticket->FirstCustomFieldValue($ss_priority);
3580     my $new_value = $values->{$id};
3581     next if $old_value eq $new_value;
3582
3583     warn "$me adjust_ticket_priority: updating ticket $id\n" if $DEBUG;
3584
3585     # AddCustomFieldValue works fine (replacing any existing value) if it's 
3586     # a single-valued custom field, which it should be.  If it's not, you're 
3587     # doing something wrong.
3588     my ($val, $msg);
3589     if ( length($new_value) ) {
3590       ($val, $msg) = $Ticket->AddCustomFieldValue( 
3591         Field => $ss_priority,
3592         Value => $new_value,
3593       );
3594     }
3595     else {
3596       ($val, $msg) = $Ticket->DeleteCustomFieldValue(
3597         Field => $ss_priority,
3598         Value => $old_value,
3599       );
3600     }
3601
3602     $ticket_error{$id} = $msg if !$val;
3603     warn "$me adjust_ticket_priority: $id: $msg\n" if $DEBUG and !$val;
3604   }
3605   return { 'error' => '',
3606            'ticket_error' => \%ticket_error,
3607            %{ customer_info($p) } # send updated customer info back
3608          }
3609 }
3610
3611 #--
3612
3613 sub _custoragent_session_custnum {
3614   my $p = shift;
3615
3616   my($context, $session, $custnum);
3617   if ( $p->{'session_id'} ) {
3618
3619     $context = 'customer';
3620     $session = _cache->get($p->{'session_id'})
3621       or return ( 'error' => "Can't resume session" ); #better error message
3622     $custnum = $session->{'custnum'};
3623
3624   } elsif ( $p->{'agent_session_id'} ) {
3625
3626     $context = 'agent';
3627     my $agent_cache = new FS::ClientAPI_SessionCache( {
3628       'namespace' => 'FS::ClientAPI::Agent',
3629     } );
3630     $session = $agent_cache->get($p->{'agent_session_id'})
3631       or return ( 'error' => "Can't resume session" ); #better error message
3632     $custnum = $p->{'custnum'};
3633
3634   } else {
3635     $context = 'error';
3636     return ( 'error' => "Can't resume session" ); #better error message
3637   }
3638
3639   ($context, $session, $custnum);
3640
3641 }
3642
3643 1;
3644