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