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