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