Merge branch 'master' of git.freeside.biz:/home/git/freeside
[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 ( $svcdb eq 'svc_acct' ) {
1860       foreach (qw(username email finger seconds)) {
1861         $hash{$_} = $svc_x->$_;
1862       }
1863
1864       if (!$hide_usage) {
1865         %hash = (
1866           %hash,
1867           'upbytes'    => display_bytecount($svc_x->upbytes),
1868           'downbytes'  => display_bytecount($svc_x->downbytes),
1869           'totalbytes' => display_bytecount($svc_x->totalbytes),
1870
1871           'recharge_amount'  => $part_pkg->option('recharge_amount',1),
1872           'recharge_seconds' => $part_pkg->option('recharge_seconds',1),
1873           'recharge_upbytes'    =>
1874             display_bytecount($part_pkg->option('recharge_upbytes',1)),
1875           'recharge_downbytes'  =>
1876             display_bytecount($part_pkg->option('recharge_downbytes',1)),
1877           'recharge_totalbytes' =>
1878             display_bytecount($part_pkg->option('recharge_totalbytes',1)),
1879           # more...
1880         );
1881       }
1882
1883     } elsif ( $svcdb eq 'svc_dsl' ) {
1884
1885       $hash{'phonenum'} = $svc_x->phonenum;
1886       if ( $svc_x->first || $svc_x->get('last') || $svc_x->company ) {
1887         $hash{'name'} = $svc_x->first. ' '. $svc_x->get('last');
1888         $hash{'name'} = $svc_x->company. ' ('. $hash{'name'}. ')'
1889           if $svc_x->company;
1890       } else {
1891         $hash{'name'} = $cust_main->name;
1892       }
1893       # no usage to hide here
1894
1895     } elsif ( $svcdb eq 'svc_phone' or $svcdb eq 'svc_pbx' ) {
1896       if (!$hide_usage) {
1897         # could potentially show lots of things...
1898         $hash{'outbound'} = 1;
1899         $hash{'inbound'}  = 0;
1900         if ( $svcdb eq 'svc_phone' ) {
1901           if ( $part_pkg->plan eq 'voip_inbound' ) {
1902             $hash{'outbound'} = 0;
1903             $hash{'inbound'}  = 1;
1904           } elsif ( $part_pkg->option('selfservice_inbound_format')
1905                 or  $conf->config('selfservice-default_inbound_cdr_format')
1906           ) {
1907             $hash{'inbound'}  = 1;
1908           }
1909         }
1910         foreach (qw(inbound outbound)) {
1911           # hmm...we can't filter by status here, because there might
1912           # not be cdr_terminations at all.  have to go by date.
1913           # find all since the last bill date.
1914           # XXX cdr types?  we are going to need them.
1915           if ( $hash{$_} ) {
1916             my $sum_cdr = $svc_x->sum_cdrs(
1917               'inbound' => ( $_ eq 'inbound' ? 1 : 0 ),
1918               'begin'   => ($cust_pkg->last_bill || 0),
1919               'nonzero' => 1,
1920               'disable_charged_party' => 1,
1921             );
1922             $hash{$_} = $sum_cdr->hashref;
1923           }
1924         }
1925       } # not hiding usage
1926     } # svcdb
1927
1928     push @svcs, \%hash;
1929   } # foreach $cust_svc
1930
1931   return { 
1932     'svcnum'   => $session->{'svcnum'},
1933     'custnum'  => $custnum,
1934     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1935     'view_usage_nodomain' => $conf->exists('selfservice-view_usage_nodomain'),
1936     'svcs'     => \@svcs,
1937     'usage_pools' => [
1938       map { $usage_pools{$_} }
1939       sort { $a cmp $b }
1940       keys %usage_pools
1941     ],
1942     'hide_usage' => $hide_usage,
1943   };
1944
1945 }
1946
1947 sub _customer_svc_x {
1948   my($custnum, $svcnum, $table) = (shift, shift, shift);
1949   my $hashref = ref($svcnum) ? $svcnum : { 'svcnum' => $svcnum };
1950
1951   $custnum =~ /^(\d+)$/ or die "illegal custnum";
1952   my $search = " AND custnum = $1";
1953   #$search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
1954
1955   qsearchs( {
1956     'table'     => ($table || 'svc_acct'),
1957     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
1958                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) ',#.
1959                    #'LEFT JOIN cust_main USING ( custnum ) ',
1960     'hashref'   => $hashref,
1961     'extra_sql' => $search, #important
1962   } );
1963
1964 }
1965
1966 sub svc_status_html {
1967   my $p = shift;
1968
1969   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1970   return { 'error' => $session } if $context eq 'error';
1971
1972   #XXX only svc_dsl for now
1973   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl')
1974     or return { 'error' => "Service not found" };
1975
1976   my $html = $svc_x->getstatus_html;
1977
1978   return { 'html' => $html };
1979
1980 }
1981
1982 sub svc_status_hash {
1983   my $p = shift;
1984
1985   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1986   return { 'error' => $session } if $context eq 'error';
1987
1988   #XXX only svc_acct for now
1989   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct')
1990     or return { 'error' => "Service not found" };
1991
1992   my ( $html, $hashref ) = $svc_x->export_getstatus;
1993   return $hashref;
1994
1995 }
1996
1997 sub set_svc_status_hash    { _svc_method_X(shift, 'export_setstatus') }
1998 sub set_svc_status_listadd { _svc_method_X(shift, 'export_setstatus_listadd') }
1999 sub set_svc_status_listdel { _svc_method_X(shift, 'export_setstatus_listdel') }
2000 sub set_svc_status_vacationadd { _svc_method_X(shift, 'export_setstatus_vacationadd') }
2001 sub set_svc_status_vacationdel { _svc_method_X(shift, 'export_setstatus_vacationdel') }
2002
2003 sub _svc_method_X {
2004   my( $p, $method ) = @_;
2005
2006   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2007   return { 'error' => $session } if $context eq 'error';
2008
2009   #XXX only svc_acct for now
2010   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct')
2011     or return { 'error' => "Service not found" };
2012
2013   warn "$method ". join(' / ', map "$_=>".$p->{$_}, keys %$p )
2014     if $DEBUG;
2015   my $error = $svc_x->$method($p); #$p? returns error?
2016   return { 'error' => $error } if $error;
2017
2018   return {}; #? { 'error' => '' }
2019
2020 }
2021
2022 sub acct_forward_info {
2023   my $p = shift;
2024
2025   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2026   return { 'error' => $session } if $context eq 'error';
2027
2028   my $svc_forward = _customer_svc_x( $custnum,
2029                                      { 'srcsvc' => $p->{'svcnum'} },
2030                                      'svc_forward',
2031                                    )
2032     or return { 'error' => '',
2033                 'dst'   => '',
2034               };
2035
2036   return { 'error' => '',
2037            'dst'   => $svc_forward->dst || $svc_forward->dstsvc_acct->email,
2038          };
2039
2040 }
2041
2042 sub process_acct_forward {
2043   my $p = shift;
2044   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2045   return { 'error' => $session } if $context eq 'error';
2046
2047   my $old = _customer_svc_x( $custnum,
2048                              { 'srcsvc' => $p->{'svcnum'} },
2049                              'svc_forward',
2050                            );
2051
2052   if ( $p->{'dst'} eq '' ) {
2053     if ( $old ) {
2054       my $error = $old->delete;
2055       return { 'error' => $error };
2056     }
2057     return { 'error' => '' };
2058   }
2059
2060   my $new = new FS::svc_forward { 'srcsvc' => $p->{'svcnum'},
2061                                   'dst'    => $p->{'dst'},
2062                                 };
2063
2064   my $error;
2065   if ( $old ) {
2066     $new->svcnum($old->svcnum);
2067     my $cust_svc = $old->cust_svc;
2068     $new->svcpart($old->svcpart);
2069     $new->pkgnuym($old->pkgnum);
2070     $error = $new->replace($old);
2071   } else {
2072     my $conf = new FS::Conf;
2073     $new->svcpart($conf->config('selfservice-svc_forward_svcpart'));
2074
2075     my $svc_acct = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct' )
2076       or return { 'error' => 'No service' }; #how would we even get here?
2077
2078     $new->pkgnum( $svc_acct->cust_svc->pkgnum );
2079
2080     $error = $new->insert;
2081   }
2082
2083   return { 'error' => $error };
2084
2085 }
2086
2087 sub list_dsl_devices {
2088   my $p = shift;
2089
2090   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2091   return { 'error' => $session } if $context eq 'error';
2092
2093   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2094     or return { 'error' => "Service not found" };
2095
2096   return {
2097     'devices' => [ map {
2098                          +{ 'mac_addr' => $_->mac_addr };
2099                        } $svc_dsl->dsl_device
2100                  ],
2101   };
2102
2103 }
2104
2105 sub add_dsl_device {
2106   my $p = shift;
2107
2108   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2109   return { 'error' => $session } if $context eq 'error';
2110
2111   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2112     or return { 'error' => "Service not found" };
2113
2114   return { 'error' => 'No MAC address supplied' }
2115     unless length($p->{'mac_addr'});
2116
2117   my $dsl_device = new FS::dsl_device { 'svcnum'   => $svc_dsl->svcnum,
2118                                         'mac_addr' => scalar($p->{'mac_addr'}),
2119                                       };
2120   my $error = $dsl_device->insert;
2121   return { 'error' => $error };
2122
2123 }
2124
2125 sub delete_dsl_device {
2126   my $p = shift;
2127
2128   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2129   return { 'error' => $session } if $context eq 'error';
2130
2131   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2132     or return { 'error' => "Service not found" };
2133
2134   my $dsl_device = qsearchs('dsl_device', { 'svcnum'   => $svc_dsl->svcnum,
2135                                             'mac_addr' => scalar($p->{'mac_addr'}),
2136                                           }
2137                            )
2138     or return { 'error' => 'Unknown MAC address: '. $p->{'mac_addr'} };
2139
2140   my $error = $dsl_device->delete;
2141   return { 'error' => $error };
2142
2143 }
2144
2145 sub port_graph {
2146   my $p = shift;
2147   _usage_details( \&_port_graph, $p,
2148                   'svcdb' => 'svc_port',
2149                 );
2150 }
2151
2152 sub _port_graph {
2153   my($svc_port, $begin, $end) = @_;
2154   my @usage = ();
2155   my $pngOrError = $svc_port->graph_png( start=>$begin, end=> $end );
2156   push @usage, { 'png' => $pngOrError };
2157   (@usage);
2158 }
2159
2160 sub _list_svc_usage {
2161   my($svc_acct, $begin, $end) = @_;
2162   my @usage = ();
2163   foreach my $part_export ( 
2164     map { qsearch ( 'part_export', { 'exporttype' => $_ } ) }
2165     qw( sqlradius sqlradius_withdomain )
2166   ) {
2167     push @usage, @ { $part_export->usage_sessions($begin, $end, $svc_acct) };
2168   }
2169   (@usage);
2170 }
2171
2172 sub list_svc_usage {
2173   _usage_details(\&_list_svc_usage, @_);
2174 }
2175
2176 sub _list_support_usage {
2177   my($svc_acct, $begin, $end) = @_;
2178   my @usage = ();
2179   foreach ( grep { $begin <= $_->_date && $_->_date <= $end }
2180             qsearch('acct_rt_transaction', { 'svcnum' => $svc_acct->svcnum })
2181           ) {
2182     push @usage, { 'seconds'  => $_->seconds,
2183                    'support'  => $_->support,
2184                    '_date'    => $_->_date,
2185                    'id'       => $_->transaction_id,
2186                    'creator'  => $_->creator,
2187                    'subject'  => $_->subject,
2188                    'status'   => $_->status,
2189                    'ticketid' => $_->ticketid,
2190                  };
2191   }
2192   (@usage);
2193 }
2194
2195 sub list_support_usage {
2196   _usage_details(\&_list_support_usage, @_);
2197 }
2198
2199 sub _list_cdr_usage {
2200   # XXX CDR type support...
2201   # XXX any way to do a paged search on this?
2202   # we have to return the results all at once...
2203   my($svc_x, $begin, $end, %opt) = @_;
2204   map [ $_->downstream_csv(%opt, 'keeparray' => 1) ],
2205     $svc_x->get_cdrs(
2206       'begin' => $begin,
2207       'end'   => $end,
2208       'disable_charged_party' => 1,
2209       %opt
2210     );
2211 }
2212
2213 sub list_cdr_usage {
2214   my $p = shift;
2215   _usage_details( \&_list_cdr_usage, $p );
2216 }
2217
2218 sub _usage_details {
2219   my($callback, $p, %opt) = @_;
2220   my $conf = FS::Conf->new;
2221
2222   if ( $conf->exists('selfservice_hide-usage') ) {
2223     return { 'error' => 'Viewing usage is not allowed.' };
2224   }
2225
2226   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2227   return { 'error' => $session } if $context eq 'error';
2228
2229   my $search = { 'svcnum' => $p->{'svcnum'} };
2230   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2231
2232   my $cust_svc = qsearchs( 'cust_svc', $search );
2233   return { 'error' => 'No service selected in list_svc_usage' } 
2234     unless $cust_svc;
2235
2236   my $svc_x = $cust_svc->svc_x;
2237   my $svcdb = $svc_x->table;
2238   my $cust_pkg = $cust_svc->cust_pkg;
2239   my $freq     = $cust_pkg->part_pkg->freq;
2240   my %callback_opt;
2241   my $header = [];
2242   if ( $svcdb eq 'svc_phone' or $svcdb eq 'svc_pbx' ) {
2243     my $format = '';
2244     if ( $p->{inbound} ) {
2245       $format = $cust_pkg->part_pkg->option('selfservice_inbound_format') 
2246                 || $conf->config('selfservice-default_inbound_cdr_format')
2247                 || 'source_default';
2248       $callback_opt{inbound} = 1;
2249     } else {
2250       $format = $cust_pkg->part_pkg->option('selfservice_format')
2251                 || $conf->config('selfservice-default_cdr_format')
2252                 || 'default';
2253     }
2254
2255     $callback_opt{format} = $format;
2256     $callback_opt{use_clid} = 1;
2257     $header = [ split(',', FS::cdr::invoice_header($format) ) ];
2258   }
2259
2260   my $start    = $cust_pkg->setup;
2261   #my $end      = $cust_pkg->bill; # or time?
2262   my $end      = time;
2263
2264   unless ( $p->{beginning} ) {
2265     $p->{beginning} = $cust_pkg->last_bill;
2266     $p->{ending}    = $end;
2267   }
2268
2269   die "illegal beginning" if $p->{beginning} !~ /^\d*$/;
2270   die "illegal ending"    if $p->{ending}    !~ /^\d*$/;
2271
2272   my (@usage) = &$callback($svc_x, $p->{beginning}, $p->{ending}, 
2273     %callback_opt
2274   );
2275
2276   if ( $conf->exists('selfservice-hide_cdr_price') ) {
2277     # ugly kludge, I know
2278     my ($delete_col) = grep { $header->[$_] eq 'Price' } (0..scalar(@$header));
2279     if (defined $delete_col) {
2280       delete($_->[$delete_col]) foreach ($header, @usage);
2281     }
2282   }
2283
2284   #kinda false laziness with FS::cust_main::bill, but perhaps
2285   #we should really change this bit to DateTime and DateTime::Duration
2286   #
2287   #change this bit to use Date::Manip? CAREFUL with timezones (see
2288   # mailing list archive)
2289   my ($nsec,$nmin,$nhour,$nmday,$nmon,$nyear) =
2290     (localtime($p->{ending}) )[0,1,2,3,4,5];
2291   my ($psec,$pmin,$phour,$pmday,$pmon,$pyear) =
2292     (localtime($p->{beginning}) )[0,1,2,3,4,5];
2293
2294   if ( $freq =~ /^\d+$/ ) {
2295     $nmon += $freq;
2296     until ( $nmon < 12 ) { $nmon -= 12; $nyear++; }
2297     $pmon -= $freq;
2298     until ( $pmon >= 0 ) { $pmon += 12; $pyear--; }
2299   } elsif ( $freq =~ /^(\d+)w$/ ) {
2300     my $weeks = $1;
2301     $nmday += $weeks * 7;
2302     $pmday -= $weeks * 7;
2303   } elsif ( $freq =~ /^(\d+)d$/ ) {
2304     my $days = $1;
2305     $nmday += $days;
2306     $pmday -= $days;
2307   } elsif ( $freq =~ /^(\d+)h$/ ) {
2308     my $hours = $1;
2309     $nhour += $hours;
2310     $phour -= $hours;
2311   } else {
2312     return { 'error' => "unparsable frequency: ". $freq };
2313   }
2314   
2315   my $previous  = timelocal_nocheck($psec,$pmin,$phour,$pmday,$pmon,$pyear);
2316   my $next      = timelocal_nocheck($nsec,$nmin,$nhour,$nmday,$nmon,$nyear);
2317
2318   { 
2319     'error'     => '',
2320     'svcnum'    => $p->{svcnum},
2321     'beginning' => $p->{beginning},
2322     'ending'    => $p->{ending},
2323     'inbound'   => $p->{inbound},
2324     'previous'  => ($previous > $start) ? $previous : $start,
2325     'next'      => ($next < $end) ? $next : $end,
2326     'header'    => $header,
2327     'usage'     => \@usage,
2328   };
2329 }
2330
2331 sub order_pkg {
2332   my $p = shift;
2333
2334   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2335   return { 'error' => $session } if $context eq 'error';
2336
2337   my $search = { 'custnum' => $custnum };
2338   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2339   my $cust_main = qsearchs('cust_main', $search )
2340     or return { 'error' => "unknown custnum $custnum" };
2341
2342   my $status = $cust_main->status;
2343
2344   my %order_pkg_options = ();
2345   if ( $p->{locationnum} > 0 ) {
2346     $order_pkg_options{locationnum} = delete($p->{locationnum});
2347   } elsif ( $p->{address1} ) {
2348     $order_pkg_options{'cust_location'} = new FS::cust_location {
2349       map { $_ => $p->{$_} }
2350         qw( address1 address2 city county state zip country )
2351     };
2352   }
2353
2354   #false laziness w/ClientAPI/Signup.pm
2355
2356   my $cust_pkg = new FS::cust_pkg ( {
2357     'custnum'  => $custnum,
2358     'pkgpart'  => $p->{'pkgpart'},
2359     'quantity' => $p->{'quantity'} || 1,
2360   } );
2361   my $error = $cust_pkg->check;
2362   return { 'error' => $error } if $error;
2363
2364   my @svc = ();
2365   unless ( $p->{'svcpart'} eq 'none' ) {
2366
2367     my $svcdb;
2368     my $svcpart = '';
2369     if ( $p->{'svcpart'} =~ /^(\d+)$/ ) {
2370       $svcpart = $1;
2371       my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
2372       return { 'error' => "Unknown svcpart $svcpart" } unless $part_svc;
2373       $svcdb = $part_svc->svcdb;
2374     } else {
2375       $svcdb = 'svc_acct';
2376     }
2377     $svcpart ||= $cust_pkg->part_pkg->svcpart($svcdb);
2378
2379     my %fields = (
2380       'svc_acct'     => [ qw( username domsvc _password sec_phrase popnum ) ],
2381       'svc_domain'   => [ qw( domain ) ],
2382       'svc_phone'    => [ qw( phonenum pin sip_password phone_name ) ],
2383       'svc_external' => [ qw( id title ) ],
2384       'svc_pbx'      => [ qw( id title ) ],
2385     );
2386   
2387     my $svc_x = "FS::$svcdb"->new( {
2388       'svcpart'   => $svcpart,
2389       map { $_ => $p->{$_} } @{$fields{$svcdb}}
2390     } );
2391     
2392     if ( $svcdb eq 'svc_acct' && exists($p->{"snarf_machine1"}) ) {
2393       my @acct_snarf;
2394       my $snarfnum = 1;
2395       while ( length($p->{"snarf_machine$snarfnum"}) ) {
2396         my $acct_snarf = new FS::acct_snarf ( {
2397           'machine'   => $p->{"snarf_machine$snarfnum"},
2398           'protocol'  => $p->{"snarf_protocol$snarfnum"},
2399           'username'  => $p->{"snarf_username$snarfnum"},
2400           '_password' => $p->{"snarf_password$snarfnum"},
2401         } );
2402         $snarfnum++;
2403         push @acct_snarf, $acct_snarf;
2404       }
2405       $svc_x->child_objects( \@acct_snarf );
2406     }
2407     
2408     my $y = $svc_x->setdefault; # arguably should be in new method
2409     return { 'error' => $y } if $y && !ref($y);
2410   
2411     $error = $svc_x->check;
2412     return { 'error' => $error } if $error;
2413
2414     push @svc, $svc_x;
2415
2416   }
2417
2418   $error = $cust_main->order_pkg(
2419     'cust_pkg' => $cust_pkg,
2420     'svcs'     => \@svc,
2421     'noexport' => 1,
2422     %order_pkg_options,
2423   );
2424   return { 'error' => $error } if $error;
2425
2426   my $conf = new FS::Conf;
2427   if ( $conf->exists('signup_server-realtime') ) {
2428
2429     my $bill_error = _do_bop_realtime( $cust_main, $status, 'collect'=>$p->{run_bill_events} );
2430
2431     if ($bill_error) {
2432       $cust_pkg->cancel('quiet'=>1);
2433       return $bill_error;
2434     } else {
2435       $cust_pkg->reexport;
2436     }
2437
2438   } else {
2439     $cust_pkg->reexport;
2440   }
2441
2442   my $svcnum = $svc[0] ? $svc[0]->svcnum : '';
2443
2444   return { error=>'', pkgnum=>$cust_pkg->pkgnum, svcnum=>$svcnum };
2445
2446 }
2447
2448 sub change_pkg {
2449   my $p = shift;
2450
2451   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2452   return { 'error' => $session } if $context eq 'error';
2453
2454   my $conf = new FS::Conf;
2455   my $immutable = $conf->exists('selfservice_immutable-package');
2456   return { 'error' => "Package modification disabled" } if $immutable;
2457
2458   my $search = { 'custnum' => $custnum };
2459   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2460   my $cust_main = qsearchs('cust_main', $search )
2461     or return { 'error' => "unknown custnum $custnum" };
2462
2463   my $status = $cust_main->status;
2464   my $cust_pkg = qsearchs('cust_pkg', { 'pkgnum' => $p->{pkgnum} } )
2465     or return { 'error' => "unknown package $p->{pkgnum}" };
2466
2467   #if someone does need self-service package change of suspended packages,
2468   # figure out how to be more discriminating
2469   return { error=>"Can't change a suspended package", pkgnum=>$cust_pkg->pkgnum}
2470     if $cust_pkg->status eq 'suspended';
2471
2472   my $err_or_cust_pkg = $cust_pkg->change( 'pkgpart'  => $p->{'pkgpart'},
2473                                            'quantity' => $p->{'quantity'} || 1,
2474                                          );
2475
2476   return { error=>$err_or_cust_pkg, pkgnum=>$cust_pkg->pkgnum }
2477     unless ref($err_or_cust_pkg);
2478
2479   if ( $conf->exists('signup_server-realtime') ) {
2480
2481     my $bill_error = _do_bop_realtime( $cust_main, $status, 'no_invoice_void'=>1 );
2482
2483     if ($bill_error) {
2484       $err_or_cust_pkg->suspend;
2485       return $bill_error;
2486     } else {
2487       $err_or_cust_pkg->reexport;
2488     }
2489
2490   } else {  
2491     $err_or_cust_pkg->reexport;
2492   }
2493
2494   return { error => '', pkgnum => $cust_pkg->pkgnum };
2495
2496 }
2497
2498 sub order_recharge {
2499   my $p = shift;
2500
2501   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2502   return { 'error' => $session } if $context eq 'error';
2503
2504   my $search = { 'custnum' => $custnum };
2505   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2506   my $cust_main = qsearchs('cust_main', $search )
2507     or return { 'error' => "unknown custnum $custnum" };
2508
2509   my $status = $cust_main->status;
2510   my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $p->{'svcnum'} } )
2511     or return { 'error' => "unknown service " . $p->{'svcnum'} };
2512
2513   my $svc_x = $cust_svc->svc_x;
2514   my $part_pkg = $cust_svc->cust_pkg->part_pkg;
2515
2516   my %vhash =
2517     map { $_ =~ /^recharge_(.*)$/; $1, $part_pkg->option($_, 1) } 
2518     qw ( recharge_seconds recharge_upbytes recharge_downbytes
2519          recharge_totalbytes );
2520   my $amount = $part_pkg->option('recharge_amount', 1); 
2521   
2522   my ($l, $v, $d) = $cust_svc->label;  # blah
2523   my $pkg = "Recharge $v"; 
2524
2525   my $bill_error = $cust_main->charge($amount, $pkg,
2526      "time: $vhash{seconds}, up: $vhash{upbytes}," . 
2527      "down: $vhash{downbytes}, total: $vhash{totalbytes}",
2528      $part_pkg->taxclass); #meh
2529
2530   my $conf = new FS::Conf;
2531   if ( $conf->exists('signup_server-realtime') && !$bill_error ) {
2532
2533     $bill_error = _do_bop_realtime( $cust_main, $status );
2534
2535     if ($bill_error) {
2536       return $bill_error;
2537     } else {
2538       my $error = $svc_x->recharge (\%vhash);
2539       return { 'error' => $error } if $error;
2540     }
2541
2542   } else {  
2543     my $error = $bill_error;
2544     $error ||= $svc_x->recharge (\%vhash);
2545     return { 'error' => $error } if $error;
2546   }
2547
2548   return { error => '', svc => $cust_svc->part_svc->svc };
2549
2550 }
2551
2552 sub _do_bop_realtime {
2553   my ($cust_main, $status, %opt) = @_;
2554
2555   my $old_balance = $cust_main->balance;
2556
2557   my @cust_bill;
2558   my $bill_error = $cust_main->bill(
2559     'return_bill'   => \@cust_bill,
2560   );
2561
2562   $bill_error ||= $cust_main->apply_payments_and_credits;
2563
2564   $bill_error ||= $cust_main->realtime_collect('selfservice' => 1);
2565
2566   if (    $cust_main->balance > $old_balance
2567        && $cust_main->balance > 0
2568        && ( $cust_main->has_cust_payby_auto || $status eq 'suspended' )
2569      )
2570   {
2571     unless ( $opt{'no_invoice_void'} ) {
2572
2573       #this used to apply a credit, but now we can void invoices...
2574       foreach my $cust_bill (@cust_bill) {
2575         my $voiderror = $cust_bill->void('automatic payment failed');
2576         warn "Error voiding cust bill after decline: $voiderror" if $voiderror;
2577       }
2578
2579     }
2580
2581     return { 'error' => '_decline', 'bill_error' => $bill_error };
2582   }
2583
2584   if ( $opt{'collect'} ) {
2585     my $collect_error = $cust_main->collect();
2586     return { 'error' => '_decline', 'bill_error' => $collect_error }
2587      if $collect_error; #?
2588   }
2589
2590   '';
2591 }
2592
2593 sub renew_info {
2594   my $p = shift;
2595
2596   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2597   return { 'error' => $session } if $context eq 'error';
2598
2599   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2600     or return { 'error' => "unknown custnum $custnum" };
2601
2602   my @cust_pkg = sort { $a->bill <=> $b->bill }
2603                  grep { $_->part_pkg->freq ne '0' }
2604                  $cust_main->ncancelled_pkgs;
2605
2606   #return { 'error' => 'No active packages to renew.' } unless @cust_pkg;
2607
2608   my $total = $cust_main->balance;
2609
2610   my @array = map {
2611                     my $bill = $_->bill;
2612                     $total += $_->part_pkg->base_recur($_, \$bill);
2613                     my $renew_date = $_->part_pkg->add_freq($_->bill);
2614                     {
2615                       'pkgnum'             => $_->pkgnum,
2616                       'amount'             => sprintf('%.2f', $total),
2617                       'bill_date'          => $_->bill,
2618                       'bill_date_pretty'   => time2str('%x', $_->bill),
2619                       'renew_date'         => $renew_date,
2620                       'renew_date_pretty'  => time2str('%x', $renew_date),
2621                       'expire_date'        => $_->expire,
2622                       'expire_date_pretty' => time2str('%x', $_->expire),
2623                     };
2624                   }
2625                   @cust_pkg;
2626
2627   return { 'dates' => \@array };
2628
2629 }
2630
2631 sub payment_info_renew_info {
2632   my $p = shift;
2633   my $renew_info   = renew_info($p);
2634   my $payment_info = payment_info($p);
2635   return { %$renew_info,
2636            %$payment_info,
2637          };
2638 }
2639
2640 sub order_renew {
2641   my $p = shift;
2642
2643   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2644   return { 'error' => $session } if $context eq 'error';
2645
2646   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2647     or return { 'error' => "unknown custnum $custnum" };
2648
2649   my $date = $p->{'date'};
2650
2651   my $now = time;
2652
2653   #freeside-daily -n -d $date fs_daily $custnum
2654   $cust_main->bill_and_collect( 'time'         => $date,
2655                                 'invoice_time' => $now,
2656                                 'actual_time'  => $now,
2657                                 'check_freq'   => '1d',
2658                               );
2659
2660   return { 'error' => '' };
2661
2662 }
2663
2664 sub suspend_pkg {
2665   my $p = shift;
2666   my $session = _cache->get($p->{'session_id'})
2667     or return { 'error' => "Can't resume session" }; #better error message
2668
2669   my $custnum = $session->{'custnum'};
2670
2671   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2672     or return { 'error' => "unknown custnum $custnum" };
2673
2674   my $conf = new FS::Conf;
2675   my $reasonnum = 
2676     $conf->config('selfservice-self_suspend_reason', $cust_main->agentnum)
2677       or return { 'error' => 'Permission denied' };
2678
2679   my $pkgnum = $p->{'pkgnum'};
2680
2681   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2682                                         'pkgnum'  => $pkgnum,   } )
2683     or return { 'error' => "unknown pkgnum $pkgnum" };
2684
2685   my $error = $cust_pkg->suspend(reason => $reasonnum);
2686   return { 'error' => $error };
2687
2688 }
2689
2690 sub cancel_pkg {
2691   my $p = shift;
2692   my $session = _cache->get($p->{'session_id'})
2693     or return { 'error' => "Can't resume session" }; #better error message
2694
2695   my $custnum = $session->{'custnum'};
2696   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2697     or return { 'error' => "unknown custnum $custnum" };
2698
2699   my $pkgnum = $p->{'pkgnum'};
2700   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2701                                         'pkgnum'  => $pkgnum,   } )
2702     or return { 'error' => "unknown pkgnum $pkgnum" };
2703
2704   my $error = $cust_pkg->cancel( 'quiet' => 1,
2705                                  'date'  => $p->{'date'},
2706                                );
2707   return { 'error' => $error };
2708 }
2709
2710 sub provision_phone {
2711   my $p = shift;
2712   my @bulkdid;
2713   @bulkdid = @{$p->{'bulkdid'}} if $p->{'bulkdid'};
2714
2715   #editing an existing phone number
2716   if ( $p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ ) {
2717       my($context, $session, $custnum) = _custoragent_session_custnum($p);
2718       return { 'error' => $session } if $context eq 'error';
2719     
2720       my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2721       return { 'error' => 'service not found' } unless $svc_phone;
2722       return { 'error' => 'invalid svcnum' } 
2723         if $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum != $custnum;
2724
2725       $svc_phone->email($p->{'email'}) 
2726         if $svc_phone->email ne $p->{'email'} && $p->{'email'} =~ /^([\w\.\d@]+|)$/;
2727       $svc_phone->forwarddst($p->{'forwarddst'}) 
2728         if $svc_phone->forwarddst ne $p->{'forwarddst'} 
2729             && $p->{'forwarddst'} =~ /^(\d+|)$/;
2730       return { 'error' => $svc_phone->replace };
2731  }
2732
2733   # single DID LNP
2734   unless ( $p->{'lnp'} ) {
2735     $p->{'lnp_desired_due_date'} = parse_datetime($p->{'lnp_desired_due_date'});
2736     $p->{'lnp_status'} = "portingin";
2737     return _provision( 'FS::svc_phone',
2738                   [qw(lnp_desired_due_date lnp_other_provider 
2739                     lnp_other_provider_account phonenum countrycode lnp_status)],
2740                   [qw(phonenum countrycode)],
2741                   $p,
2742                   @_
2743                 );
2744   }
2745
2746   # single DID order (the usual case)
2747   unless (scalar(@bulkdid)) {
2748     return _provision( 'FS::svc_phone',
2749                   [qw(phonenum countrycode)],
2750                   [qw(phonenum countrycode)],
2751                   $p,
2752                   @_
2753                 );
2754   }
2755
2756   # bulk DID order case
2757   my $error;
2758   foreach my $did ( @bulkdid ) {
2759     $did =~ s/[^0-9]//g;
2760     $error = _provision( 'FS::svc_phone',
2761               [qw(phonenum countrycode)],
2762               [qw(phonenum countrycode)],
2763               {
2764                 'pkgnum' => $p->{'pkgnum'},
2765                 'svcpart' => $p->{'svcpart'},
2766                 'phonenum' => $did,
2767                 'countrycode' => $p->{'countrycode'},
2768                 'session_id' => $p->{'session_id'},
2769               }
2770             );
2771     return $error if ($error->{'error'} && length($error->{'error'}) > 1);
2772   }
2773   { 'bulkdid' => [ @bulkdid ], 'svc' => $error->{'svc'} }
2774 }
2775
2776 sub provision_pbx {
2777   my $p = shift;
2778   warn "provision_pbx called\n"
2779     if $DEBUG;
2780
2781   warn "provision_pbx calling _provision\n"
2782     if $DEBUG;
2783   _provision( 'FS::svc_pbx',
2784               [qw(id title max_extensions max_simultaneous ip_addr)],
2785               [qw(id title max_extensions max_simultaneous ip_addr)],
2786               $p,
2787               @_
2788             );
2789 }
2790
2791 sub provision_acct {
2792   my $p = shift;
2793   warn "provision_acct called\n"
2794     if $DEBUG;
2795
2796   return { 'error' => gettext('passwords_dont_match') }
2797     if $p->{'_password'} ne $p->{'_password2'};
2798   return { 'error' => gettext('empty_password') }
2799     unless length($p->{'_password'});
2800  
2801   if ($p->{'domsvc'}) {
2802     my %domains = domain_select_hash FS::svc_acct(map { $_ => $p->{$_} }
2803                                                   qw ( svcpart pkgnum ) );
2804     return { 'error' => gettext('invalid_domain') }
2805       unless ($domains{$p->{'domsvc'}});
2806   }
2807
2808   warn "provision_acct calling _provision\n"
2809     if $DEBUG;
2810   _provision( 'FS::svc_acct',
2811               [qw(username _password domsvc)],
2812               [qw(username _password domsvc)],
2813               $p,
2814               @_
2815             );
2816 }
2817
2818 sub provision_external {
2819   my $p = shift;
2820   #_provision( 'FS::svc_external', [qw(id title)], [qw(id title)], $p, @_ );
2821   _provision( 'FS::svc_external',
2822               [],
2823               [qw(id title)],
2824               $p,
2825               @_
2826             );
2827 }
2828
2829 sub provision_forward {
2830   my $p = shift;
2831   _provision( 'FS::svc_forward',
2832               ['srcsvc','src','dstsvc','dst'],
2833               [],
2834               $p,
2835             );
2836 }
2837
2838 sub _provision {
2839   my( $class, $fields, $return_fields, $p ) = splice(@_, 0, 4);
2840   warn "_provision called for $class\n"
2841     if $DEBUG;
2842
2843   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2844   return { 'error' => $session } if $context eq 'error';
2845
2846   my $search = { 'custnum' => $custnum };
2847   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2848   my $cust_main = qsearchs('cust_main', $search )
2849     or return { 'error' => "unknown custnum $custnum" };
2850
2851   my $pkgnum = $p->{'pkgnum'};
2852
2853   warn "searching for custnum $custnum pkgnum $pkgnum\n"
2854     if $DEBUG;
2855   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2856                                         'pkgnum'  => $pkgnum,
2857                                                                } )
2858     or return { 'error' => "unknown pkgnum $pkgnum" };
2859
2860   warn "searching for svcpart ". $p->{'svcpart'}. "\n"
2861     if $DEBUG;
2862   my $part_svc = qsearchs('part_svc', { 'svcpart' => $p->{'svcpart'} } )
2863     or return { 'error' => "unknown svcpart $p->{'svcpart'}" };
2864
2865   return { error=> 'svcpart '. $p->{'svcpart'}. " is not a $class definition" }
2866     if $class ne 'FS::'. $part_svc->svcdb;
2867
2868   warn "creating $class record\n"
2869     if $DEBUG;
2870   my $svc_x = $class->new( {
2871     'pkgnum'  => $p->{'pkgnum'},
2872     'svcpart' => $p->{'svcpart'},
2873     map { $_ => $p->{$_} } @$fields
2874   } );
2875
2876   my %insert_args = ();
2877   #i shouldn't be a special case here (pass an option or something)
2878   if ( $class eq 'FS::svc_phone'
2879          && grep length($p->{$_}), @location_editable_fields
2880      )
2881   {
2882     $insert_args{'cust_location'} = new FS::cust_location {
2883       map { $_ => $p->{$_} } @location_editable_fields
2884     };
2885   }
2886
2887   warn "inserting $class record\n"
2888     if $DEBUG;
2889   my $error = $svc_x->insert(%insert_args);
2890
2891   unless ( $error ) {
2892     warn "finding inserted record for svcnum ". $svc_x->svcnum. "\n"
2893       if $DEBUG;
2894     $svc_x = qsearchs($svc_x->table, { 'svcnum' => $svc_x->svcnum })
2895   }
2896
2897   my $return = { 'svc'   => $part_svc->svc,
2898                  'error' => $error,
2899                  map { $_ => $svc_x->get($_) } @$return_fields
2900                };
2901   warn "_provision returning ". Dumper($return). "\n"
2902     if $DEBUG;
2903   return $return;
2904
2905 }
2906
2907 sub part_svc_info {
2908   my $p = shift;
2909
2910   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2911   return { 'error' => $session } if $context eq 'error';
2912
2913   my $search = { 'custnum' => $custnum };
2914   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2915   my $cust_main = qsearchs('cust_main', $search )
2916     or return { 'error' => "unknown custnum $custnum" };
2917
2918   my $pkgnum = $p->{'pkgnum'};
2919
2920   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2921                                         'pkgnum'  => $pkgnum,
2922                                                                } )
2923     or return { 'error' => "unknown pkgnum $pkgnum" };
2924
2925   my $svcpart = $p->{'svcpart'};
2926
2927   my $pkg_svc = qsearchs('pkg_svc', { 'pkgpart' => $cust_pkg->pkgpart,
2928                                       'svcpart' => $svcpart,           } )
2929     or return { 'error' => "unknown svcpart $svcpart for pkgnum $pkgnum" };
2930   my $part_svc = $pkg_svc->part_svc;
2931
2932   my $conf = new FS::Conf;
2933
2934   my $ret = {
2935     'svc'     => $part_svc->svc,
2936     'svcdb'   => $part_svc->svcdb,
2937     'pkgnum'  => $pkgnum,
2938     'svcpart' => $svcpart,
2939     'custnum' => $custnum,
2940
2941     'security_phrase' => 0, #XXX !
2942     'svc_acct_pop'    => [], #XXX !
2943     'popnum'          => '',
2944     'init_popstate'   => '',
2945     'popac'           => '',
2946     'acstate'         => '',
2947
2948     'small_custview' =>
2949       small_custview( $cust_main, $conf->config('countrydefault') ),
2950
2951   };
2952
2953   if ($p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ 
2954                      && $ret->{'svcdb'} eq 'svc_phone') {
2955         $ret->{'svcnum'} = $p->{'svcnum'};
2956         my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2957         if ( $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum == $custnum ) {
2958             $ret->{'email'} = $svc_phone->email;
2959             $ret->{'forwarddst'} = $svc_phone->forwarddst;
2960         }
2961   }
2962
2963   if ($ret->{'svcdb'} eq 'svc_forward') {
2964     $ret->{'forward_emails'} = {$cust_pkg->forward_emails()};
2965   }
2966
2967   $ret;
2968 }
2969
2970 sub unprovision_svc {
2971   my $p = shift;
2972
2973   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2974   return { 'error' => $session } if $context eq 'error';
2975
2976   my $search = { 'custnum' => $custnum };
2977   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2978   my $cust_main = qsearchs('cust_main', $search )
2979     or return { 'error' => "unknown custnum $custnum" };
2980
2981   my $svcnum = $p->{'svcnum'};
2982
2983   my $cust_svc = qsearchs('cust_svc', { 'svcnum'  => $svcnum, } )
2984     or return { 'error' => "unknown svcnum $svcnum" };
2985
2986   return { 'error' => "Service $svcnum does not belong to customer $custnum" }
2987     unless $cust_svc->cust_pkg->custnum == $custnum;
2988
2989   my $conf = new FS::Conf;
2990
2991   return { 'svc'   => $cust_svc->part_svc->svc,
2992            'error' => $cust_svc->cancel,
2993            'small_custview' =>
2994              small_custview( $cust_main, $conf->config('countrydefault') ),
2995          };
2996
2997 }
2998
2999 sub myaccount_passwd {
3000   my $p = shift;
3001   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3002   return { 'error' => $session } if $context eq 'error';
3003
3004   return { 'error' => "New passwords don't match." }
3005     if $p->{'new_password'} ne $p->{'new_password2'};
3006
3007   return { 'error' => 'Enter new password' }
3008     unless length($p->{'new_password'});
3009
3010   #my $search = { 'custnum' => $custnum };
3011   #$search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3012   $custnum =~ /^(\d+)$/ or die "illegal custnum";
3013   my $search = " AND custnum = $1";
3014   $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
3015
3016   my $svc_acct = qsearchs( {
3017     'table'     => 'svc_acct',
3018     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
3019                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
3020                    'LEFT JOIN cust_main USING ( custnum ) ',
3021     'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
3022     'extra_sql' => $search, #important
3023   } )
3024     or return { 'error' => "Service not found" };
3025
3026   my $error = '';
3027
3028   my $conf = new FS::Conf;
3029
3030   return { 'error' => 'Incorrect current password.' }
3031     if  ( exists($p->{'old_password'})
3032           || $conf->exists('selfservice-password_change_oldpass')
3033         )
3034     && ! $svc_acct->check_password($p->{'old_password'});
3035
3036   $error ||= $svc_acct->is_password_allowed($p->{'new_password'})
3037          ||  $svc_acct->set_password($p->{'new_password'})
3038          ||  $svc_acct->replace();
3039
3040   #regular pw change in self-service should change contact pw too, otherwise its
3041   #way too confusing.  hell its confusing they're separate at all, but alas.
3042   #need to support the "ISP provides email that's used as a contact email" case
3043   #as well as we can.
3044   my $contact = FS::contact->by_selfservice_email($svc_acct->email);
3045   if ( $contact && qsearchs('cust_contact', { contactnum=> $contact->contactnum,
3046                                               custnum   => $custnum,
3047                                               selfservice_access => 'Y',
3048                                             }
3049                            )
3050   ) {
3051     #svc_acct was successful but this one returns an error?  "shouldn't happen"
3052     #don't recheck is_password_allowed here; if the svc_acct password was
3053     #legal, that's good enough
3054     $error ||= $contact->change_password($p->{'new_password'});
3055   }
3056
3057   my($label, $value) = $svc_acct->cust_svc->label;
3058
3059   return { 'error' => $error,
3060            'label' => $label,
3061            'value' => $value,
3062          };
3063
3064 }
3065
3066 sub reset_passwd {
3067   my $p = shift;
3068
3069   my $info = skin_info($p);
3070
3071   my $conf = new FS::Conf;
3072   my $verification = $conf->config('selfservice-password_reset_verification')
3073     or return { %$info, 'error' => 'Password resets disabled' };
3074
3075   my $contact = '';
3076   my $svc_acct = '';
3077   my $cust_main = '';
3078   if ( $p->{'email'} ) { #new-style, changes contact and svc_acct
3079   
3080     $contact = FS::contact->by_selfservice_email($p->{'email'});
3081
3082     if ( $contact ) {
3083       my @cust_contact = grep $_->selfservice_access, $contact->cust_contact;
3084       $cust_main = $cust_contact[0]->cust_main if scalar(@cust_contact) == 1;
3085     }
3086
3087     #also look for an svc_acct, otherwise it would be super confusing
3088
3089     my($username, $domain) = split('@', $p->{'email'});
3090     my $svc_domain = qsearchs('svc_domain', { 'domain' => $domain } );
3091     if ( $svc_domain ) {
3092       $svc_acct = qsearchs('svc_acct', { 'username' => $username,
3093                                          'domsvc'   => $svc_domain->svcnum  }
3094                           );
3095       if ( $svc_acct ) {
3096         my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
3097         $cust_main ||= $cust_pkg->cust_main if $cust_pkg;
3098
3099         #precaution: don't change svc_acct password not part of the same
3100         # customer as contact
3101         $svc_acct = '' if ! $cust_pkg
3102                        || $cust_pkg->custnum != $cust_main->custnum;
3103       }
3104       
3105     }
3106
3107     return { %$info, 'error' => 'Email address not found' }
3108       unless $contact || $svc_acct;
3109
3110   } elsif ( $p->{'username'} ) { #old style, looks in svc_acct only
3111
3112     my $svc_domain = qsearchs('svc_domain', { 'domain' => $p->{'domain'} } )
3113       or return { %$info, 'error' => 'Account not found' };
3114
3115     $svc_acct = qsearchs('svc_acct', { 'username' => $p->{'username'},
3116                                        'domsvc'   => $svc_domain->svcnum  }
3117                         )
3118       or return { %$info, 'error' => 'Account not found' };
3119
3120     my $cust_pkg = $svc_acct->cust_svc->cust_pkg
3121       or return { %$info, 'error' => 'Account not found' };
3122
3123     $cust_main = $cust_pkg->cust_main;
3124
3125   }
3126
3127   return { %$info, 'error' => 'Multi-customer contacts incompatible with customer-based verification' }
3128     if ! $cust_main && $verification ne 'email';
3129
3130   my %verify = (
3131     'email'   => sub { 1; },
3132     'paymask' => sub { 
3133       my( $p, $cust_main ) = @_;
3134       $cust_main->payby =~ /^(CARD|DCRD|CHEK|DCHK)$/
3135         && $p->{'paymask'} eq substr($cust_main->paymask, -4)
3136     },
3137     'amount'  => sub {
3138       my( $p, $cust_main ) = @_;
3139       my $cust_pay = qsearchs({
3140         'table' => 'cust_pay',
3141         'hashref' => { 'custnum' => $cust_main->custnum },
3142         'order_by' => 'ORDER BY _date DESC LIMIT 1',
3143       })
3144         or return 0;
3145
3146       $p->{'amount'} == $cust_pay->paid;
3147     },
3148     'zip'     => sub {
3149       my( $p, $cust_main ) = @_;
3150       $p->{'zip'} eq $cust_main->zip
3151         || ( $cust_main->ship_zip && $p->{'zip'} eq $cust_main->ship_zip );
3152     },
3153   );
3154
3155   foreach my $verify ( split(',', $verification) ) {
3156
3157     &{ $verify{$verify} }( $p, $cust_main )
3158       or return { %$info, 'error' => 'Account not found' };
3159
3160   }
3161
3162   #okay, we're verified
3163
3164   if ( $contact ) {
3165
3166     my $error = $contact->send_reset_email(
3167                             'svcnum' => ($svc_acct ? $svc_acct->svcnum : ''),
3168                           );
3169
3170     if ( $error ) {
3171       return { %$info, 'error' => $error }; #????
3172     }
3173
3174   } elsif ( $svc_acct ) {
3175
3176     #create a unique session
3177
3178     my $reset_session = {
3179       'svcnum'   => $svc_acct->svcnum,
3180       'agentnum' => $svc_acct->cust_main->agentnum,
3181     };
3182
3183     my $timeout = '1 hour'; #?
3184
3185     my $reset_session_id;
3186     do {
3187       $reset_session_id = sha512_hex(time(). {}. rand(). $$)
3188     } until ( ! defined _cache->get("reset_passwd_$reset_session_id") );
3189       #just in case
3190
3191     _cache->set( "reset_passwd_$reset_session_id", $reset_session, $timeout );
3192
3193     #email it
3194
3195     my $msgnum = $conf->config('selfservice-password_reset_msgnum',
3196                                $cust_main->agentnum);
3197     #die "selfservice-password_reset_msgnum unset" unless $msgnum;
3198     return { %$info, 'error' => "selfservice-password_reset_msgnum unset" }
3199       unless $msgnum;
3200     my $msg_template = qsearchs('msg_template', { msgnum => $msgnum } );
3201     my $error = $msg_template->send( 'cust_main'     => $cust_main,
3202                                      'object'        => $svc_acct,
3203                                      'substitutions' => {
3204                                        'session_id' => $reset_session_id,
3205                                      }
3206                                    );
3207     if ( $error ) {
3208       return { %$info, 'error' => $error }; #????
3209     }
3210
3211   }
3212
3213   return { %$info, 'error' => '' };
3214 }
3215
3216 sub check_reset_passwd {
3217   my $p = shift;
3218
3219   my $conf = new FS::Conf;
3220   my $verification = $conf->config('selfservice-password_reset_verification')
3221     or return { 'error' => 'Password resets disabled' };
3222
3223   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
3224     or return { 'error' => "Can't resume session" }; #better error message
3225
3226   if ( $reset_session->{'svcnum'} ) {
3227
3228     my $svcnum = $reset_session->{'svcnum'};
3229
3230     my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
3231       or return { 'error' => "Service not found" };
3232
3233     $p->{'agentnum'} = $svc_acct->cust_svc->cust_pkg->cust_main->agentnum;
3234     my $info = skin_info($p);
3235
3236     return { %$info,
3237              'error'      => '',
3238              'session_id' => $p->{'session_id'},
3239              'username'   => $svc_acct->username,
3240            };
3241
3242   } elsif ( $reset_session->{'contactnum'} ) {
3243
3244     my $contactnum = $reset_session->{'contactnum'};
3245
3246     my $contact = qsearchs('contact', { 'contactnum' => $contactnum } )
3247       or return { 'error' => "Contact not found" };
3248
3249     my @contact_email = $contact->contact_email;
3250     return { 'error' => 'No contact email' } unless @contact_email;
3251
3252     my @cust_contact = grep $_->selfservice_access, $contact->cust_contact;
3253     $p->{'agentnum'} = $cust_contact[0]->cust_main->agentnum
3254       if scalar(@cust_contact) == 1;
3255     my $info = skin_info($p);
3256
3257     return { %$info,
3258              'error'      => '',
3259              'session_id' => $p->{'session_id'},
3260              'email'      => $contact_email[0]->email, #the first?
3261            };
3262
3263   } else {
3264
3265     return { 'error' => 'No svcnum or contactnum in session' }; #??
3266
3267   }
3268
3269 }
3270
3271 sub process_reset_passwd {
3272   my $p = shift;
3273
3274   my $conf = new FS::Conf;
3275   my $verification = $conf->config('selfservice-password_reset_verification')
3276     or return { 'error' => 'Password resets disabled' };
3277
3278   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
3279     or return { 'error' => "Can't resume session" }; #better error message
3280
3281   my $info = '';
3282
3283   my $svc_acct = '';
3284   if ( $reset_session->{'svcnum'} ) {
3285
3286     my $svcnum = $reset_session->{'svcnum'};
3287
3288     $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
3289       or return { 'error' => "Service not found" };
3290
3291     $p->{'agentnum'} ||= $svc_acct->cust_svc->cust_pkg->cust_main->agentnum;
3292     $info ||= skin_info($p);
3293
3294   }
3295
3296   my $contact = '';
3297   if ( $reset_session->{'contactnum'} ) {
3298
3299     my $contactnum = $reset_session->{'contactnum'};
3300
3301     $contact = qsearchs('contact', { 'contactnum' => $contactnum } )
3302       or return { 'error' => "Contact not found" };
3303
3304     my @cust_contact = grep $_->selfservice_access, $contact->cust_contact;
3305     $p->{'agentnum'} = $cust_contact[0]->cust_main->agentnum
3306       if scalar(@cust_contact) == 1;
3307     $info ||= skin_info($p);
3308
3309   }
3310
3311   return { %$info, 'error' => "New passwords don't match." }
3312     if $p->{'new_password'} ne $p->{'new_password2'};
3313
3314   return { %$info, 'error' => 'Enter new password' }
3315     unless length($p->{'new_password'});
3316
3317   if ( $svc_acct ) {
3318
3319     my $error ||= $svc_acct->is_password_allowed($p->{'new_password'})
3320               ||  $svc_acct->set_password($p->{'new_password'})
3321               ||  $svc_acct->replace();
3322
3323     return { %$info, 'error' => $error } if $error;
3324
3325     #my($label, $value) = $svc_acct->cust_svc->label;
3326     #return { 'error' => $error,
3327     #         #'label' => $label,
3328     #         #'value' => $value,
3329     #       };
3330
3331   }
3332
3333   if ( $contact ) {
3334
3335     my $error = $contact->is_password_allowed($p->{'new_password'})
3336             ||  $contact->change_password($p->{'new_password'});
3337
3338     return { %$info, 'error' => $error }; # if $error;
3339
3340   }
3341
3342   #password changed ,so remove session, don't want it reused
3343   _cache->remove($p->{'session_id'});
3344
3345   return { %$info, 'error' => '' };
3346
3347 }
3348
3349 sub validate_passwd {
3350   my $p = shift;
3351
3352   my %result;
3353   %result = ( 'fieldid' => $p->{'fieldid'} )
3354     if $p->{'fieldid'} =~ /^\w+$/;
3355
3356   return { %result, 'password_invalid' => 'Enter new password' }
3357     unless length($p->{'check_password'});
3358
3359   my $svc_acct;
3360   if ($p->{'svcnum'}) {
3361     # false laziness with myaccount_passwd
3362     my($context, $session, $custnum) = _custoragent_session_custnum($p);
3363     return { %result, 'error' => $session } if $context eq 'error';
3364
3365     $custnum =~ /^(\d+)$/ or die "illegal custnum";
3366     my $search = " AND custnum = $1";
3367     $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
3368
3369     $svc_acct = qsearchs( {
3370       'table'     => 'svc_acct',
3371       'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
3372                      'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
3373                      'LEFT JOIN cust_main USING ( custnum ) ',
3374       'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
3375       'extra_sql' => $search, #important
3376     } )
3377       or return { %result, 'error' => "Service not found" };
3378     # end false laziness
3379   }
3380
3381   $svc_acct ||= new FS::svc_acct {};
3382
3383   my $error = $svc_acct->is_password_allowed($p->{'check_password'});
3384   return { %result, 'password_invalid' => $error } if $error;
3385   return { %result, 'password_valid' => 1 };
3386 }
3387
3388 sub list_tickets {
3389   my $p = shift;
3390   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3391   return { 'error' => $session } if $context eq 'error';
3392
3393   my @tickets = ();
3394   if ( $session->{'pkgnum'} ) { 
3395
3396     #tickets for specific service with pkg-balances on
3397     my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
3398                                           'pkgnum'  => $session->{'pkgnum'} })
3399                      or return { 'error' => 'unknown package' };
3400     foreach my $cust_svc ( $cust_pkg->cust_svc ) {
3401       push @tickets, $cust_svc->tickets( $p->{status} );
3402     }
3403
3404   } else {
3405
3406     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
3407       or return { 'error' => "unknown custnum $custnum" };
3408
3409     @tickets = $cust_main->tickets( $p->{status} );
3410   }
3411
3412   # unavoidable false laziness w/ httemplate/view/cust_main/tickets.html
3413   if ( $FS::TicketSystem::system && FS::TicketSystem->selfservice_priority ) {
3414     my $conf = new FS::Conf;
3415     my $dir = $conf->exists('ticket_system-priority_reverse') ? -1 : 1;
3416     +{ tickets => [ 
3417          sort { 
3418            (
3419              ($a->{'_selfservice_priority'} eq '') <=>
3420              ($b->{'_selfservice_priority'} eq '')
3421            ) ||
3422            ( $dir * 
3423              ($b->{'_selfservice_priority'} <=> $a->{'_selfservice_priority'})
3424            )
3425          } @tickets
3426        ]
3427     };
3428   } else {
3429     +{ tickets => \@tickets };
3430   }
3431
3432 }
3433
3434 sub create_ticket {
3435   my $p = shift;
3436   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3437   return { 'error' => $session } if $context eq 'error';
3438
3439   warn "$me create_ticket: initializing ticket system\n" if $DEBUG;
3440   FS::TicketSystem->init();
3441
3442   my $conf = new FS::Conf;
3443   my $queue = $p->{'queue'}
3444               || $conf->config('ticket_system-selfservice_queueid')
3445               || $conf->config('ticket_system-default_queueid');
3446
3447   warn "$me create_ticket: creating ticket\n" if $DEBUG;
3448   my $err_or_ticket = FS::TicketSystem->create_ticket(
3449     '', #create RT session based on FS CurrentUser (fs_selfservice)
3450     'queue'   => $queue,
3451     'custnum' => $custnum,
3452     'svcnum'  => $session->{'svcnum'},
3453     map { $_ => $p->{$_} } qw( requestor cc subject message mime_type )
3454   );
3455
3456   if ( ref($err_or_ticket) ) {
3457     warn "$me create_ticket: successful: ". $err_or_ticket->id. "\n"
3458       if $DEBUG;
3459     return { 'error'     => '',
3460              'ticket_id' => $err_or_ticket->id,
3461            };
3462   } else {
3463     warn "$me create_ticket: unsuccessful: $err_or_ticket\n"
3464       if $DEBUG;
3465     return { 'error' => $err_or_ticket };
3466   }
3467
3468
3469 }
3470
3471 sub did_report {
3472   my $p = shift;
3473   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3474   return { 'error' => $session } if $context eq 'error';
3475  
3476   return { error => 'requested format not implemented' } 
3477     unless ($p->{'format'} eq 'csv' || $p->{'format'} eq 'xls');
3478
3479   my $conf = new FS::Conf;
3480   my $age_threshold = 0;
3481   $age_threshold = time() - $conf->config('selfservice-recent-did-age')
3482     if ($p->{'recentonly'} && $conf->exists('selfservice-recent-did-age'));
3483
3484   my $search = { 'custnum' => $custnum };
3485   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3486   my $cust_main = qsearchs('cust_main', $search )
3487     or return { 'error' => "unknown custnum $custnum" };
3488
3489 # does it make more sense to just run one sql query for this instead of all the
3490 # insanity below? would increase performance greately for large data sets?
3491   my @svc_phone = ();
3492   foreach my $cust_pkg ( $cust_main->ncancelled_pkgs ) {
3493         my @part_svc = $cust_pkg->part_svc;
3494         foreach my $part_svc ( @part_svc ) {
3495             if($part_svc->svcdb eq 'svc_phone'){
3496                 my @cust_pkg_svc = @{$part_svc->cust_pkg_svc};
3497                 foreach my $cust_pkg_svc ( @cust_pkg_svc ) {
3498                     push @svc_phone, $cust_pkg_svc->svc_x
3499                         if $cust_pkg_svc->date_inserted >= $age_threshold;
3500                 }
3501             }
3502         }
3503   }
3504
3505   my $csv;
3506   my $xls;
3507   my($xls_r,$xls_c) = (0,0);
3508   my $xls_workbook;
3509   my $content = '';
3510   my @fields = qw( countrycode phonenum pin sip_password phone_name );
3511   if($p->{'format'} eq 'csv') {
3512     $csv = new Text::CSV_XS { 'always_quote' => 1,
3513                                  'eol'          => "\n",
3514                                 };
3515     return { 'error' => 'Unable to create CSV' } unless $csv->combine(@fields);
3516     $content .= $csv->string;
3517   }
3518   elsif($p->{'format'} eq 'xls') {
3519     my $XLS1 = new IO::Scalar \$content;
3520     $xls_workbook = Spreadsheet::WriteExcel->new($XLS1) 
3521         or return { 'error' => "Error opening .xls file: $!" };
3522     $xls = $xls_workbook->add_worksheet('DIDs');
3523     foreach ( @fields ) {
3524         $xls->write(0,$xls_c++,$_);
3525     }
3526     $xls_r++;
3527   }
3528
3529   foreach my $svc_phone ( @svc_phone ) {
3530     my @cols = map { $svc_phone->$_ } @fields;
3531     if($p->{'format'} eq 'csv') {
3532         return { 'error' => 'Unable to create CSV' } 
3533             unless $csv->combine(@cols);
3534         $content .= $csv->string;
3535     }
3536     elsif($p->{'format'} eq 'xls') {
3537         $xls_c = 0;
3538         foreach ( @cols ) {
3539             $xls->write($xls_r,$xls_c++,$_);
3540         }
3541         $xls_r++;
3542     }
3543   }
3544
3545   $xls_workbook->close() if $p->{'format'} eq 'xls';
3546   
3547   { content => $content, format => $p->{'format'}, };
3548 }
3549
3550 sub get_ticket {
3551   my $p = shift;
3552   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3553   return { 'error' => $session } if $context eq 'error';
3554
3555 #  warn "$me get_ticket: initializing ticket system\n" if $DEBUG;
3556 #  FS::TicketSystem->init();
3557 #  return { 'error' => 'get_ticket configuration error' }
3558 #    if $FS::TicketSystem::system ne 'RT_Internal';
3559
3560   # check existence and ownership as part of this
3561   warn "$me get_ticket: fetching ticket\n" if $DEBUG;
3562   my $rt_session = FS::TicketSystem->session('');
3563   my $Ticket = FS::TicketSystem->get_ticket_object(
3564     $rt_session, 
3565     ticket_id => $p->{'ticket_id'},
3566     custnum => $custnum
3567   );
3568   return { 'error' => 'ticket not found' } if !$Ticket;
3569
3570   if ( length( $p->{'subject'} || '' ) ) {
3571     # subject change
3572     if ( $p->{'subject'} ne $Ticket->Subject ) {
3573       my ($val, $msg) = $Ticket->SetSubject($p->{'subject'});
3574       return { 'error' => "unable to set subject: $msg" } if !$val;
3575     }
3576   }
3577
3578   if(length($p->{'reply'})) {
3579     my @err_or_res = FS::TicketSystem->correspond_ticket(
3580       $rt_session,
3581       'ticket_id' => $p->{'ticket_id'},
3582       'content' => $p->{'reply'},
3583     );
3584
3585     return { 'error' => 'unable to reply to ticket' } 
3586     unless ( $err_or_res[0] != 0 && defined $err_or_res[2] );
3587   }
3588
3589   warn "$me get_ticket: getting ticket history\n" if $DEBUG;
3590   my $err_or_ticket = FS::TicketSystem->get_ticket(
3591     $rt_session,
3592     'ticket_id' => $p->{'ticket_id'},
3593   );
3594
3595   if ( !ref($err_or_ticket) ) { # there is no way this should ever happen
3596     warn "$me get_ticket: unsuccessful: $err_or_ticket\n"
3597       if $DEBUG;
3598     return { 'error' => $err_or_ticket };
3599   }
3600
3601   my @custs = @{$err_or_ticket->{'custs'}};
3602   my @txns = @{$err_or_ticket->{'txns'}};
3603   my @filtered_txns;
3604
3605   # superseded by check in get_ticket_object
3606   #return { 'error' => 'invalid ticket requested' } 
3607   #unless grep($_ eq $custnum, @custs);
3608
3609   foreach my $txn ( @txns ) {
3610     push @filtered_txns, $txn 
3611     if ($txn->{'type'} eq 'EmailRecord' 
3612       || $txn->{'type'} eq 'Correspond'
3613       || $txn->{'type'} eq 'Create');
3614   }
3615
3616   warn "$me get_ticket: successful: \n"
3617   if $DEBUG;
3618   return { 'error'     => '',
3619     'transactions' => \@filtered_txns,
3620     'ticket_fields' => $err_or_ticket->{'fields'},
3621     'ticket_id' => $p->{'ticket_id'},
3622   };
3623 }
3624
3625 sub adjust_ticket_priority {
3626   my $p = shift;
3627   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3628   return { 'error' => $session } if $context eq 'error';
3629
3630 #  warn "$me adjust_ticket_priority: initializing ticket system\n" if $DEBUG;
3631 #  FS::TicketSystem->init;
3632   my $ss_priority = FS::TicketSystem->selfservice_priority;
3633
3634   return { 'error' => 'adjust_ticket_priority configuration error' }
3635     if $FS::TicketSystem::system ne 'RT_Internal'
3636       or !$ss_priority;
3637
3638   my $values = $p->{'values'}; #hashref, id => priority value
3639   my %ticket_error;
3640
3641   foreach my $id (keys %$values) {
3642     warn "$me adjust_ticket_priority: fetching ticket $id\n" if $DEBUG;
3643     my $Ticket = FS::TicketSystem->get_ticket_object('',
3644       'ticket_id' => $id,
3645       'custnum'   => $custnum,
3646     );
3647     if ( !$Ticket ) {
3648       $ticket_error{$id} = 'ticket not found';
3649       next;
3650     }
3651     
3652   # RT API stuff--would we gain anything by wrapping this in FS::TicketSystem?
3653   # We're not going to implement it for RT_External.
3654     my $old_value = $Ticket->FirstCustomFieldValue($ss_priority);
3655     my $new_value = $values->{$id};
3656     next if $old_value eq $new_value;
3657
3658     warn "$me adjust_ticket_priority: updating ticket $id\n" if $DEBUG;
3659
3660     # AddCustomFieldValue works fine (replacing any existing value) if it's 
3661     # a single-valued custom field, which it should be.  If it's not, you're 
3662     # doing something wrong.
3663     my ($val, $msg);
3664     if ( length($new_value) ) {
3665       ($val, $msg) = $Ticket->AddCustomFieldValue( 
3666         Field => $ss_priority,
3667         Value => $new_value,
3668       );
3669     }
3670     else {
3671       ($val, $msg) = $Ticket->DeleteCustomFieldValue(
3672         Field => $ss_priority,
3673         Value => $old_value,
3674       );
3675     }
3676
3677     $ticket_error{$id} = $msg if !$val;
3678     warn "$me adjust_ticket_priority: $id: $msg\n" if $DEBUG and !$val;
3679   }
3680   return { 'error' => '',
3681            'ticket_error' => \%ticket_error,
3682            %{ customer_info($p) } # send updated customer info back
3683          }
3684 }
3685
3686 #--
3687
3688 sub _custoragent_session_custnum {
3689   my $p = shift;
3690
3691   my($context, $session, $custnum);
3692   if ( $p->{'session_id'} ) {
3693
3694     $context = 'customer';
3695     $session = _cache->get($p->{'session_id'})
3696       or return ( 'error' => "Can't resume session" ); #better error message
3697     $custnum = $session->{'custnum'};
3698
3699   } elsif ( $p->{'agent_session_id'} ) {
3700
3701     $context = 'agent';
3702     my $agent_cache = new FS::ClientAPI_SessionCache( {
3703       'namespace' => 'FS::ClientAPI::Agent',
3704     } );
3705     $session = $agent_cache->get($p->{'agent_session_id'})
3706       or return ( 'error' => "Can't resume session" ); #better error message
3707     $custnum = $p->{'custnum'};
3708
3709   } else {
3710     $context = 'error';
3711     return ( 'error' => "Can't resume session" ); #better error message
3712   }
3713
3714   ($context, $session, $custnum);
3715
3716 }
3717
3718 1;
3719