also supress sending invoices w/selfservice-hide_invoices-taxclass, RT#15327
[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 Date::Format;
11 use Time::Duration;
12 use Time::Local qw(timelocal_nocheck);
13 use Business::CreditCard;
14 use HTML::Entities;
15 use Text::CSV_XS;
16 use Spreadsheet::WriteExcel;
17 use FS::UI::Web::small_custview qw(small_custview); #less doh
18 use FS::UI::Web;
19 use FS::UI::bytecount qw( display_bytecount );
20 use FS::Conf;
21 #use FS::UID qw(dbh);
22 use FS::Record qw(qsearch qsearchs dbh);
23 use FS::Msgcat qw(gettext);
24 use FS::Misc qw(card_types);
25 use FS::Misc::DateTime qw(parse_datetime);
26 use FS::TicketSystem;
27 use FS::ClientAPI_SessionCache;
28 use FS::cust_svc;
29 use FS::svc_acct;
30 use FS::svc_domain;
31 use FS::svc_phone;
32 use FS::svc_external;
33 use FS::svc_dsl;
34 use FS::dsl_device;
35 use FS::part_svc;
36 use FS::cust_main;
37 use FS::cust_bill;
38 use FS::legacy_cust_bill;
39 use FS::cust_main_county;
40 use FS::cust_pkg;
41 use FS::payby;
42 use FS::acct_rt_transaction;
43 use FS::msg_template;
44
45 $DEBUG = 0;
46 $me = '[FS::ClientAPI::MyAccount]';
47
48 use vars qw( @cust_main_editable_fields );
49 @cust_main_editable_fields = qw(
50   first last company address1 address2 city
51     county state zip country
52     daytime night fax mobile
53   ship_first ship_last ship_company ship_address1 ship_address2 ship_city
54     ship_state ship_zip ship_country
55     ship_daytime ship_night ship_fax ship_mobile
56   locale
57   payby payinfo payname paystart_month paystart_year payissue payip
58   ss paytype paystate stateid stateid_state
59 );
60
61 BEGIN { #preload to reduce time customer_info takes
62   if ( $FS::TicketSystem::system ) {
63     warn "$me: initializing ticket system\n" if $DEBUG;
64     FS::TicketSystem->init();
65   }
66 }
67
68 sub _cache {
69   $cache ||= new FS::ClientAPI_SessionCache( {
70                'namespace' => 'FS::ClientAPI::MyAccount',
71              } );
72 }
73
74 sub skin_info {
75   my $p = shift;
76
77   my($context, $session, $custnum) = _custoragent_session_custnum($p);
78   #return { 'error' => $session } if $context eq 'error';
79
80   my $agentnum = '';
81   if ( $context eq 'customer' ) {
82
83     my $sth = dbh->prepare('SELECT agentnum FROM cust_main WHERE custnum = ?')
84       or die dbh->errstr;
85
86     $sth->execute($custnum) or die $sth->errstr;
87
88     $agentnum = $sth->fetchrow_arrayref->[0]
89       or die "no agentnum for custnum $custnum";
90
91   #} elsif ( $context eq 'agent' ) {
92   } elsif ( defined($p->{'agentnum'}) and $p->{'agentnum'} =~ /^(\d+)$/ ) {
93     $agentnum = $1;
94   }
95
96   my $conf = new FS::Conf;
97
98   #false laziness w/Signup.pm
99
100   my $skin_info_cache_agent = _cache->get("skin_info_cache_agent$agentnum");
101
102   if ( $skin_info_cache_agent ) {
103
104     warn "$me loading cached skin info for agentnum $agentnum\n"
105       if $DEBUG > 1;
106
107   } else {
108
109     warn "$me populating skin info cache for agentnum $agentnum\n"
110       if $DEBUG > 1;
111
112     $skin_info_cache_agent = {
113       'agentnum' => $agentnum,
114       ( map { $_ => scalar( $conf->config($_, $agentnum) ) }
115         qw( company_name date_format ) ),
116       ( map { $_ => scalar( $conf->config("selfservice-$_", $agentnum ) ) }
117         qw( body_bgcolor box_bgcolor
118             text_color link_color vlink_color hlink_color alink_color
119             font title_color title_align title_size menu_bgcolor menu_fontsize
120           )
121       ),
122       ( map { $_ => $conf->exists("selfservice-$_", $agentnum ) }
123         qw( menu_skipblanks menu_skipheadings menu_nounderline )
124       ),
125       ( map { $_ => scalar($conf->config_binary("selfservice-$_", $agentnum)) }
126         qw( title_left_image title_right_image
127             menu_top_image menu_body_image menu_bottom_image
128           )
129       ),
130       'logo' => scalar($conf->config_binary('logo.png', $agentnum )),
131       ( map { $_ => join("\n", $conf->config("selfservice-$_", $agentnum ) ) }
132         qw( head body_header body_footer company_address ) ),
133     };
134
135     _cache->set("skin_info_cache_agent$agentnum", $skin_info_cache_agent);
136
137   }
138
139   #{ %$skin_info_cache_agent };
140   $skin_info_cache_agent;
141
142 }
143
144 sub login_info {
145   my $p = shift;
146
147   my $conf = new FS::Conf;
148
149   my %info = (
150     %{ skin_info($p) },
151     'phone_login'  => $conf->exists('selfservice_server-phone_login'),
152     'single_domain'=> scalar($conf->config('selfservice_server-single_domain')),
153   );
154
155   return \%info;
156
157 }
158
159 #false laziness w/FS::ClientAPI::passwd::passwd
160 sub login {
161   my $p = shift;
162
163   my $conf = new FS::Conf;
164
165   my $svc_x = '';
166   if ( $p->{'domain'} eq 'svc_phone'
167        && $conf->exists('selfservice_server-phone_login') ) { 
168
169     my $svc_phone = qsearchs( 'svc_phone', { 'phonenum' => $p->{'username'} } );
170     return { error => 'Number not found.' } unless $svc_phone;
171
172     #XXX?
173     #my $pkg_svc = $svc_acct->cust_svc->pkg_svc;
174     #return { error => 'Only primary user may log in.' } 
175     #  if $conf->exists('selfservice_server-primary_only')
176     #    && ( ! $pkg_svc || $pkg_svc->primary_svc ne 'Y' );
177
178     return { error => 'Incorrect PIN.' }
179       unless $svc_phone->check_pin($p->{'password'});
180
181     $svc_x = $svc_phone;
182
183   } else {
184
185     my $svc_domain = qsearchs('svc_domain', { 'domain' => $p->{'domain'} } )
186       or return { error => 'Domain '. $p->{'domain'}. ' not found' };
187
188     my $svc_acct = qsearchs( 'svc_acct', { 'username'  => $p->{'username'},
189                                            'domsvc'    => $svc_domain->svcnum, }
190                            );
191     return { error => 'User not found.' } unless $svc_acct;
192
193     if($conf->exists('selfservice_server-login_svcpart')) {
194         my @svcpart = $conf->config('selfservice_server-login_svcpart');
195         my $svcpart = $svc_acct->cust_svc->svcpart;
196         return { error => 'Invalid user.' } 
197             unless grep($_ eq $svcpart, @svcpart);
198     }
199
200     return { error => 'Incorrect password.' }
201       unless $svc_acct->check_password($p->{'password'});
202
203     $svc_x = $svc_acct;
204
205   }
206
207   my $session = {
208     'svcnum' => $svc_x->svcnum,
209   };
210
211   my $cust_svc = $svc_x->cust_svc;
212   my $cust_pkg = $cust_svc->cust_pkg;
213   if ( $cust_pkg ) {
214     my $cust_main = $cust_pkg->cust_main;
215     $session->{'custnum'} = $cust_main->custnum;
216     if ( $conf->exists('pkg-balances') ) {
217       my @cust_pkg = grep { $_->part_pkg->freq !~ /^(0|$)/ }
218                           $cust_main->ncancelled_pkgs;
219       $session->{'pkgnum'} = $cust_pkg->pkgnum
220         if scalar(@cust_pkg) > 1;
221     }
222   }
223
224   #my $pkg_svc = $svc_acct->cust_svc->pkg_svc;
225   #return { error => 'Only primary user may log in.' } 
226   #  if $conf->exists('selfservice_server-primary_only')
227   #    && ( ! $pkg_svc || $pkg_svc->primary_svc ne 'Y' );
228   my $part_pkg = $cust_pkg->part_pkg;
229   return { error => 'Only primary user may log in.' }
230     if $conf->exists('selfservice_server-primary_only')
231        && $cust_svc->svcpart != $part_pkg->svcpart([qw( svc_acct svc_phone )]);
232
233   my $session_id;
234   do {
235     $session_id = md5_hex(md5_hex(time(). {}. rand(). $$))
236   } until ( ! defined _cache->get($session_id) ); #just in case
237
238   my $timeout = $conf->config('selfservice-session_timeout') || '1 hour';
239   _cache->set( $session_id, $session, $timeout );
240
241   return { 'error'      => '',
242            'session_id' => $session_id,
243          };
244 }
245
246 sub logout {
247   my $p = shift;
248   if ( $p->{'session_id'} ) {
249     _cache->remove($p->{'session_id'});
250     return { %{ skin_info($p) }, 'error' => '' };
251   } else {
252     return { %{ skin_info($p) }, 'error' => "Can't resume session" }; #better error message
253   }
254 }
255
256 sub switch_acct {
257   my $p = shift;
258
259   my($context, $session, $custnum) = _custoragent_session_custnum($p);
260   return { 'error' => $session } if $context eq 'error';
261
262   my $svc_acct = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct' )
263     or return { 'error' => "Service not found" };
264
265   $session->{'svcnum'} = $svc_acct->svcnum;
266
267   my $conf = new FS::Conf;
268   my $timeout = $conf->config('selfservice-session_timeout') || '1 hour';
269   _cache->set( $p->{'session_id'}, $session, $timeout );
270
271   return { 'error' => '' };
272
273 }
274
275 sub payment_gateway {
276   # internal use only
277   # takes a cust_main and a cust_payby entry, returns the payment_gateway
278   my $conf = new FS::Conf;
279   my $cust_main = shift;
280   my $cust_payby = shift;
281   my $gatewaynum = $conf->config('selfservice-payment_gateway');
282   if ( $gatewaynum ) {
283     my $pg = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
284     die "configured gatewaynum $gatewaynum not found!" if !$pg;
285     return $pg;
286   }
287   else {
288     return '' if ! FS::payby->realtime($cust_payby);
289     my $pg = $cust_main->agent->payment_gateway(
290       'method'  => FS::payby->payby2bop($cust_payby),
291       'nofatal' => 1
292     );
293     return $pg;
294   }
295 }
296
297 sub access_info {
298   my $p = shift;
299
300   my $conf = new FS::Conf;
301
302   my $info = skin_info($p);
303
304   use vars qw( $cust_paybys ); #cache for performance
305   unless ( $cust_paybys ) {
306
307     my %cust_paybys = map { $_ => 1 }
308                       map { FS::payby->payby2payment($_) }
309                           $conf->config('signup_server-payby');
310
311     $cust_paybys = [ keys %cust_paybys ];
312
313   }
314   $info->{'cust_paybys'} = $cust_paybys;
315
316   my($context, $session, $custnum) = _custoragent_session_custnum($p);
317   return { 'error' => $session } if $context eq 'error';
318
319   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
320     or return { 'error' => "unknown custnum $custnum" };
321
322   $info->{'hide_payment_fields'} = [ 
323     map { 
324       my $pg = payment_gateway($cust_main, $_);
325       $pg && $pg->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
326     } @{ $info->{cust_paybys} }
327   ];
328
329   $info->{'self_suspend_reason'} = 
330       $conf->config('selfservice-self_suspend_reason', $cust_main->agentnum);
331
332   $info->{'edit_ticket_subject'} =
333       $conf->exists('ticket_system-selfservice_edit_subject') && 
334       $cust_main->edit_subject;
335
336   return { %$info,
337            'custnum'       => $custnum,
338            'access_pkgnum' => $session->{'pkgnum'},
339            'access_svcnum' => $session->{'svcnum'},
340          };
341 }
342
343 sub customer_info {
344   my $p = shift;
345
346   my($context, $session, $custnum) = _custoragent_session_custnum($p);
347   return { 'error' => $session } if $context eq 'error';
348
349   my %return;
350
351   my $conf = new FS::Conf;
352   if ($conf->exists('cust_main-require_address2')) {
353     $return{'require_address2'} = '1';
354   }else{
355     $return{'require_address2'} = '';
356   }
357
358   if ( $FS::TicketSystem::system ) {
359     warn "$me customer_info: initializing ticket system\n" if $DEBUG;
360     FS::TicketSystem->init();
361   }
362  
363   if ( $custnum ) { #customer record
364
365     my $search = { 'custnum' => $custnum };
366     $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
367     my $cust_main = qsearchs('cust_main', $search )
368       or return { 'error' => "unknown custnum $custnum" };
369
370     if ( $session->{'pkgnum'} ) { 
371       $return{balance} = $cust_main->balance_pkgnum( $session->{'pkgnum'} );
372     } else {
373       $return{balance} = $cust_main->balance;
374     }
375
376     my @tickets = $cust_main->tickets;
377     # unavoidable false laziness w/ httemplate/view/cust_main/tickets.html
378     if ( FS::TicketSystem->selfservice_priority ) {
379       my $dir = $conf->exists('ticket_system-priority_reverse') ? -1 : 1;
380       $return{tickets} = [ 
381         sort { 
382           (
383             ($a->{'_selfservice_priority'} eq '') <=>
384             ($b->{'_selfservice_priority'} eq '')
385           ) ||
386           ( $dir * 
387             ($b->{'_selfservice_priority'} <=> $a->{'_selfservice_priority'}) 
388           )
389         } @tickets
390       ];
391     }
392     else {
393       $return{tickets} = \@tickets;
394     }
395
396     unless ( $session->{'pkgnum'} ) {
397       my @open = map {
398                        {
399                          invnum => $_->invnum,
400                          date   => time2str("%b %o, %Y", $_->_date),
401                          owed   => $_->owed,
402                        };
403                      } $cust_main->open_cust_bill;
404       $return{open_invoices} = \@open;
405     }
406
407     $return{small_custview} =
408       small_custview( $cust_main,
409                       scalar($conf->config('countrydefault')),
410                       ( $session->{'pkgnum'} ? 1 : 0 ), #nobalance
411                     );
412
413     $return{name} = $cust_main->first. ' '. $cust_main->get('last');
414     $return{ship_name} = $cust_main->ship_first. ' '. $cust_main->get('ship_last');
415
416     for (@cust_main_editable_fields) {
417       $return{$_} = $cust_main->get($_);
418     }
419
420     if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
421       $return{payinfo} = $cust_main->paymask;
422       @return{'month', 'year'} = $cust_main->paydate_monthyear;
423     }
424
425     $return{'invoicing_list'} =
426       join(', ', grep { $_ !~ /^(POST|FAX)$/ } $cust_main->invoicing_list );
427     $return{'postal_invoicing'} =
428       0 < ( grep { $_ eq 'POST' } $cust_main->invoicing_list );
429
430     if (scalar($conf->config('support_packages'))) {
431       my @support_services = ();
432       foreach ($cust_main->support_services) {
433         my $seconds = $_->svc_x->seconds;
434         my $time_remaining = (($seconds < 0) ? '-' : '' ).
435                              int(abs($seconds)/3600)."h".
436                              sprintf("%02d",(abs($seconds)%3600)/60)."m";
437         my $cust_pkg = $_->cust_pkg;
438         my $pkgnum = '';
439         my $pkg = '';
440         $pkgnum = $cust_pkg->pkgnum if $cust_pkg;
441         $pkg = $cust_pkg->part_pkg->pkg if $cust_pkg;
442         push @support_services, { svcnum => $_->svcnum,
443                                   time => $time_remaining,
444                                   pkgnum => $pkgnum,
445                                   pkg => $pkg,
446                                 };
447       }
448       $return{support_services} = \@support_services;
449     }
450
451     if ( $conf->config('prepayment_discounts-credit_type') ) {
452       #need to eval?
453       $return{discount_terms_hash} = { $cust_main->discount_terms_hash };
454     }
455
456     if ( $session->{'svcnum'} ) {
457       my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $session->{'svcnum'} });
458       $return{'svc_label'} = ($cust_svc->label)[1] if $cust_svc;
459       $return{'svcnum'} = $session->{'svcnum'};
460     }
461
462   } elsif ( $session->{'svcnum'} ) { #no customer record
463
464     my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $session->{'svcnum'} } )
465       or die "unknown svcnum";
466     $return{name} = $svc_acct->email;
467
468   } else {
469
470     return { 'error' => 'Expired session' }; #XXX redirect to login w/this err!
471
472   }
473
474   return { 'error'          => '',
475            'custnum'        => $custnum,
476            %return,
477          };
478
479 }
480
481 sub customer_info_short {
482   my $p = shift;
483
484   my($context, $session, $custnum) = _custoragent_session_custnum($p);
485   return { 'error' => $session } if $context eq 'error';
486
487   my %return;
488
489   my $conf = new FS::Conf;
490
491   if ( $custnum ) { #customer record
492
493     my $search = { 'custnum' => $custnum };
494     $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
495     my $cust_main = qsearchs('cust_main', $search )
496       or return { 'error' => "unknown custnum $custnum" };
497
498     $return{small_custview} =
499       small_custview( $cust_main,
500                       scalar($conf->config('countrydefault')),
501                       1, ##nobalance
502                     );
503
504     $return{name} = $cust_main->first. ' '. $cust_main->get('last');
505     $return{ship_name} = $cust_main->ship_first. ' '. $cust_main->get('ship_last');
506
507     $return{payby} = $cust_main->payby;
508
509     #none of these are terribly expensive if we want 'em...
510     for (@cust_main_editable_fields) {
511       $return{$_} = $cust_main->get($_);
512     }
513     
514     if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
515       $return{payinfo} = $cust_main->paymask;
516       @return{'month', 'year'} = $cust_main->paydate_monthyear;
517     }
518     
519     $return{'invoicing_list'} =
520       join(', ', grep { $_ !~ /^(POST|FAX)$/ } $cust_main->invoicing_list );
521     #$return{'postal_invoicing'} =
522     #  0 < ( grep { $_ eq 'POST' } $cust_main->invoicing_list );
523
524     if ( $session->{'svcnum'} ) {
525       my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $session->{'svcnum'} });
526       $return{'svc_label'} = ($cust_svc->label)[1] if $cust_svc;
527       $return{'svcnum'} = $session->{'svcnum'};
528     }
529
530   } elsif ( $session->{'svcnum'} ) { #no customer record
531
532     #uuh, not supproted yet... die?
533     return { 'error' => 'customer_info_short not yet supported as agent' };
534
535   } else {
536
537     return { 'error' => 'Expired session' }; #XXX redirect to login w/this err!
538
539   }
540
541   return { 'error'          => '',
542            'custnum'        => $custnum,
543            %return,
544          };
545 }
546
547 sub edit_info {
548   my $p = shift;
549   my $session = _cache->get($p->{'session_id'})
550     or return { 'error' => "Can't resume session" }; #better error message
551
552   my $custnum = $session->{'custnum'}
553     or return { 'error' => "no customer record" };
554
555   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
556     or return { 'error' => "unknown custnum $custnum" };
557
558   my $new = new FS::cust_main { $cust_main->hash };
559   $new->set( $_ => $p->{$_} )
560     foreach grep { exists $p->{$_} } @cust_main_editable_fields;
561
562   my $payby = '';
563   if (exists($p->{'payby'})) {
564     $p->{'payby'} =~ /^([A-Z]{4})$/
565       or return { 'error' => "illegal_payby " . $p->{'payby'} };
566     $payby = $1;
567   }
568
569   if ( $payby =~ /^(CARD|DCRD)$/ ) {
570
571     $new->paydate($p->{'year'}. '-'. $p->{'month'}. '-01');
572
573     if ( $new->payinfo eq $cust_main->paymask ) {
574       $new->payinfo($cust_main->payinfo);
575     } else {
576       $new->payinfo($p->{'payinfo'});
577     }
578
579     $new->set( 'payby' => $p->{'auto'} ? 'CARD' : 'DCRD' );
580
581   } elsif ( $payby =~ /^(CHEK|DCHK)$/ ) {
582
583     my $payinfo;
584     $p->{'payinfo1'} =~ /^([\dx]+)$/
585       or return { 'error' => "illegal account number ". $p->{'payinfo1'} };
586     my $payinfo1 = $1;
587      $p->{'payinfo2'} =~ /^([\dx\.]+)$/ # . turned on by -require-bank-branch?
588       or return { 'error' => "illegal ABA/routing number ". $p->{'payinfo2'} };
589     my $payinfo2 = $1;
590     $payinfo = $payinfo1. '@'. $payinfo2;
591
592     $new->payinfo( ($payinfo eq $cust_main->paymask)
593                      ? $cust_main->payinfo
594                      : $payinfo
595                  );
596
597     $new->set( 'payby' => $p->{'auto'} ? 'CHEK' : 'DCHK' );
598
599   } elsif ( $payby =~ /^(BILL)$/ ) {
600     #no-op
601   } elsif ( $payby ) {  #notyet ready
602     return { 'error' => "unknown payby $payby" };
603   }
604
605   my @invoicing_list;
606   if ( exists $p->{'invoicing_list'} || exists $p->{'postal_invoicing'} ) {
607     #false laziness with httemplate/edit/process/cust_main.cgi
608     @invoicing_list = split( /\s*\,\s*/, $p->{'invoicing_list'} );
609     push @invoicing_list, 'POST' if $p->{'postal_invoicing'};
610   } else {
611     @invoicing_list = $cust_main->invoicing_list;
612   }
613
614   my $error = $new->replace($cust_main, \@invoicing_list);
615   return { 'error' => $error } if $error;
616   #$cust_main = $new;
617   
618   return { 'error' => '' };
619 }
620
621 sub payment_info {
622   my $p = shift;
623   my $session = _cache->get($p->{'session_id'})
624     or return { 'error' => "Can't resume session" }; #better error message
625
626   ##
627   #generic
628   ##
629
630   my $conf = new FS::Conf;
631   use vars qw($payment_info); #cache for performance
632   unless ( $payment_info ) {
633
634     my %states = map { $_->state => 1 }
635                    qsearch('cust_main_county', {
636                      'country' => $conf->config('countrydefault') || 'US'
637                    } );
638
639     my %cust_paybys = map { $_ => 1 }
640                       map { FS::payby->payby2payment($_) }
641                           $conf->config('signup_server-payby');
642
643     my @cust_paybys = keys %cust_paybys;
644
645     $payment_info = {
646
647       #list all counties/states/countries
648       'cust_main_county' => 
649         [ map { $_->hashref } qsearch('cust_main_county', {}) ],
650
651       #shortcut for one-country folks
652       'states' =>
653         [ sort { $a cmp $b } keys %states ],
654
655       'card_types' => card_types(),
656
657       'paytypes' => [ @FS::cust_main::paytypes ],
658
659       'paybys' => [ $conf->config('signup_server-payby') ],
660       'cust_paybys' => \@cust_paybys,
661
662       'stateid_label' => FS::Msgcat::_gettext('stateid'),
663       'stateid_state_label' => FS::Msgcat::_gettext('stateid_state'),
664
665       'show_ss'  => $conf->exists('show_ss'),
666       'show_stateid' => $conf->exists('show_stateid'),
667       'show_paystate' => $conf->exists('show_bankstate'),
668
669       'save_unchecked' => $conf->exists('selfservice-save_unchecked'),
670
671       'credit_card_surcharge_percentage' => $conf->config('credit-card-surcharge-percentage'),
672     };
673
674   }
675
676   ##
677   #customer-specific
678   ##
679
680   my %return = %$payment_info;
681
682   my $custnum = $session->{'custnum'};
683
684   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
685     or return { 'error' => "unknown custnum $custnum" };
686
687   $return{'hide_payment_fields'} = [
688     map { 
689       my $pg = payment_gateway($cust_main, $_);
690       $pg && $pg->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
691     } @{ $return{cust_paybys} }
692   ];
693
694   $return{balance} = $cust_main->balance; #XXX pkg-balances?
695
696   $return{payname} = $cust_main->payname
697                      || ( $cust_main->first. ' '. $cust_main->get('last') );
698
699   $return{$_} = $cust_main->get($_) for qw(address1 address2 city state zip);
700
701   $return{payby} = $cust_main->payby;
702   $return{stateid_state} = $cust_main->stateid_state;
703
704   if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) {
705     $return{card_type} = cardtype($cust_main->payinfo);
706     $return{payinfo} = $cust_main->paymask;
707
708     @return{'month', 'year'} = $cust_main->paydate_monthyear;
709
710   }
711
712   if ( $cust_main->payby =~ /^(CHEK|DCHK)$/ ) {
713     my ($payinfo1, $payinfo2) = split '@', $cust_main->paymask;
714     $return{payinfo1} = $payinfo1;
715     $return{payinfo2} = $payinfo2;
716     $return{paytype}  = $cust_main->paytype;
717     $return{paystate} = $cust_main->paystate;
718
719   }
720
721   if ( $conf->config('prepayment_discounts-credit_type') ) {
722     #need to eval?
723     $return{discount_terms_hash} = { $cust_main->discount_terms_hash };
724   }
725
726   #doubleclick protection
727   my $_date = time;
728   $return{paybatch} = "webui-MyAccount-$_date-$$-". rand() * 2**32;
729
730   return { 'error' => '',
731            %return,
732          };
733
734 }
735
736 #some false laziness with httemplate/process/payment.cgi - look there for
737 #ACH and CVV support stuff
738
739 sub validate_payment {
740   my $p = shift;
741
742   my $session = _cache->get($p->{'session_id'})
743     or return { 'error' => "Can't resume session" }; #better error message
744
745   my $custnum = $session->{'custnum'};
746
747   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
748     or return { 'error' => "unknown custnum $custnum" };
749
750   $p->{'amount'} =~ /^\s*(\d+(\.\d{2})?)\s*$/
751     or return { 'error' => gettext('illegal_amount') };
752   my $amount = $1;
753   return { error => 'Amount must be greater than 0' } unless $amount > 0;
754
755   $p->{'discount_term'} =~ /^\s*(\d*)\s*$/
756     or return { 'error' => gettext('illegal_discount_term'). ': '. $p->{'discount_term'} };
757   my $discount_term = $1;
758
759   $p->{'payname'} =~ /^([\w \,\.\-\']+)$/
760     or return { 'error' => gettext('illegal_name'). " payname: ". $p->{'payname'} };
761   my $payname = $1;
762
763   $p->{'paybatch'} =~ /^([\w \!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\=]*)$/
764     or return { 'error' => gettext('illegal_text'). " paybatch: ". $p->{'paybatch'} };
765   my $paybatch = $1;
766
767   $p->{'payby'} ||= 'CARD';
768   $p->{'payby'} =~ /^([A-Z]{4})$/
769     or return { 'error' => "illegal_payby " . $p->{'payby'} };
770   my $payby = $1;
771
772   #false laziness w/process/payment.cgi
773   my $payinfo;
774   my $paycvv = '';
775   if ( $payby eq 'CHEK' || $payby eq 'DCHK' ) {
776   
777     $p->{'payinfo1'} =~ /^([\dx]+)$/
778       or return { 'error' => "illegal account number ". $p->{'payinfo1'} };
779     my $payinfo1 = $1;
780      $p->{'payinfo2'} =~ /^([\dx]+)$/
781       or return { 'error' => "illegal ABA/routing number ". $p->{'payinfo2'} };
782     my $payinfo2 = $1;
783     $payinfo = $payinfo1. '@'. $payinfo2;
784
785     $payinfo = $cust_main->payinfo
786       if $cust_main->paymask eq $payinfo;
787    
788   } elsif ( $payby eq 'CARD' || $payby eq 'DCRD' ) {
789    
790     $payinfo = $p->{'payinfo'};
791
792     #more intelligent mathing will be needed here if you change
793     #card_masking_method and don't remove existing paymasks
794     $payinfo = $cust_main->payinfo
795       if $cust_main->paymask eq $payinfo;
796
797     $payinfo =~ s/\D//g;
798     $payinfo =~ /^(\d{13,16}|\d{8,9})$/
799       or return { 'error' => gettext('invalid_card') }; # . ": ". $self->payinfo
800     $payinfo = $1;
801
802     validate($payinfo)
803       or return { 'error' => gettext('invalid_card') }; # . ": ". $self->payinfo
804     return { 'error' => gettext('unknown_card_type') }
805       if $payinfo !~ /^99\d{14}$/ && cardtype($payinfo) eq "Unknown";
806
807     if ( length($p->{'paycvv'}) && $p->{'paycvv'} !~ /^\s*$/ ) {
808       if ( cardtype($payinfo) eq 'American Express card' ) {
809         $p->{'paycvv'} =~ /^\s*(\d{4})\s*$/
810           or return { 'error' => "CVV2 (CID) for American Express cards is four digits." };
811         $paycvv = $1;
812       } else {
813         $p->{'paycvv'} =~ /^\s*(\d{3})\s*$/
814           or return { 'error' => "CVV2 (CVC2/CID) is three digits." };
815         $paycvv = $1;
816       }
817     }
818   
819   } else {
820     die "unknown payby $payby";
821   }
822
823   my %payby2fields = (
824     'CARD' => [ qw( paystart_month paystart_year payissue payip
825                     address1 address2 city state zip country    ) ],
826     'CHEK' => [ qw( ss paytype paystate stateid stateid_state payip ) ],
827   );
828
829   my $card_type = '';
830   $card_type = cardtype($payinfo) if $payby eq 'CARD';
831
832   { 
833     'cust_main'      => $cust_main, #XXX or just custnum??
834     'amount'         => $amount,
835     'payby'          => $payby,
836     'payinfo'        => $payinfo,
837     'paymask'        => $cust_main->mask_payinfo( $payby, $payinfo ),
838     'card_type'      => $card_type,
839     'paydate'        => $p->{'year'}. '-'. $p->{'month'}. '-01',
840     'paydate_pretty' => $p->{'month'}. ' / '. $p->{'year'},
841     'payname'        => $payname,
842     'paybatch'       => $paybatch, #this doesn't actually do anything
843     'paycvv'         => $paycvv,
844     'payname'        => $payname,
845     'discount_term'  => $discount_term,
846     'pkgnum'         => $session->{'pkgnum'},
847     map { $_ => $p->{$_} } ( @{ $payby2fields{$payby} },
848                              qw( save auto ),
849                            )
850   };
851
852 }
853
854 sub store_payment {
855   my $p = shift;
856
857   my $validate = validate_payment($p);
858   return $validate if $validate->{'error'};
859
860   my $conf = new FS::Conf;
861   my $timeout = $conf->config('selfservice-session_timeout') || '1 hour'; #?
862   _cache->set( 'payment_'.$p->{'session_id'}, $validate, $timeout );
863
864   +{ map { $_=>$validate->{$_} }
865       qw( card_type paymask payname paydate_pretty amount )
866   };
867
868 }
869
870 sub process_stored_payment {
871   my $p = shift;
872
873   my $session_id = $p->{'session_id'};
874
875   my $payment_info = _cache->get( "payment_$session_id" )
876     or return { 'error' => "Can't resume session" }; #better error message
877
878   do_process_payment($payment_info);
879
880 }
881
882 sub process_payment {
883   my $p = shift;
884
885   my $payment_info = validate_payment($p);
886   return $payment_info if $payment_info->{'error'};
887
888   do_process_payment($payment_info);
889
890 }
891
892 sub do_process_payment {
893   my $validate = shift;
894
895   my $cust_main = $validate->{'cust_main'};
896
897   my $amount = delete $validate->{'amount'};
898   my $paynum = '';
899
900   my $payby = delete $validate->{'payby'};
901
902   my $error = $cust_main->realtime_bop( $FS::payby::payby2bop{$payby}, $amount,
903     'quiet'       => 1,
904     'selfservice' => 1,
905     'paynum_ref'  => \$paynum,
906     %$validate,
907   );
908   return { 'error' => $error } if $error;
909
910   $cust_main->apply_payments;
911
912   if ( $validate->{'save'} ) {
913     my $new = new FS::cust_main { $cust_main->hash };
914     if ($validate->{'payby'} eq 'CARD' || $validate->{'payby'} eq 'DCRD') {
915       $new->set( $_ => $validate->{$_} )
916         foreach qw( payname paystart_month paystart_year payissue payip
917                     address1 address2 city state zip country );
918       $new->set( 'payby' => $validate->{'auto'} ? 'CARD' : 'DCRD' );
919     } elsif ($payby eq 'CHEK' || $payby eq 'DCHK') {
920       $new->set( $_ => $validate->{$_} )
921         foreach qw( payname payip paytype paystate
922                     stateid stateid_state );
923       $new->set( 'payby' => $validate->{'auto'} ? 'CHEK' : 'DCHK' );
924     }
925     $new->set( 'payinfo' => $cust_main->card_token || $validate->{'payinfo'} );
926     $new->set( 'paydate' => $validate->{'paydate'} );
927     my $error = $new->replace($cust_main);
928     if ( $error ) {
929       #no, this causes customers to process their payments again
930       #return { 'error' => $error };
931       #XXX just warn verosely for now so i can figure out how these happen in
932       # the first place, eventually should redirect them to the "change
933       #address" page but indicate the payment did process??
934       delete($validate->{'payinfo'}); #don't want to log this!
935       warn "WARNING: error changing customer info when processing payment (not returning to customer as a processing error): $error\n".
936            "NEW: ". Dumper($new)."\n".
937            "OLD: ". Dumper($cust_main)."\n".
938            "PACKET: ". Dumper($validate)."\n";
939     #} else {
940       #not needed...
941       #$cust_main = $new;
942     }
943   }
944
945   my $cust_pay = '';
946   my $receipt_html = '';
947   if ($paynum) {
948       # currently supported for realtime CC only; send receipt data to SS
949       $cust_pay = qsearchs('cust_pay', { 'paynum' => $paynum } );
950       if($cust_pay) {
951         $receipt_html = qq!
952 <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2>
953
954 <TR>
955   <TD ALIGN="right">Payment#</TD>
956   <TD BGCOLOR="#FFFFFF"><B>! . $cust_pay->paynum . qq!</B></TD>
957 </TR>
958
959 <TR>
960   <TD ALIGN="right">Date</TD>
961
962   <TD BGCOLOR="#FFFFFF"><B>! . 
963         time2str("%a&nbsp;%b&nbsp;%o,&nbsp;%Y&nbsp;%r", $cust_pay->_date)
964                                                             . qq!</B></TD>
965 </TR>
966
967
968 <TR>
969   <TD ALIGN="right">Amount</TD>
970   <TD BGCOLOR="#FFFFFF"><B>! . sprintf('%.2f', $cust_pay->paid) . qq!</B></TD>
971
972 </TR>
973
974 <TR>
975   <TD ALIGN="right">Payment method</TD>
976   <TD BGCOLOR="#FFFFFF"><B>! . $cust_pay->payby_name .' #'. $cust_pay->paymask
977                                                                 . qq!</B></TD>
978 </TR>
979
980 </TABLE>
981 !;
982       }
983   }
984
985   if ( $cust_pay ) {
986
987     my($gw, $auth, $order) = split(':', $cust_pay->paybatch);
988
989     return {
990       'error'        => '',
991       'amount'       => sprintf('%.2f', $cust_pay->paid),
992       'date'         => $cust_pay->_date,
993       'date_pretty'  => time2str('%Y-%m-%d', $cust_pay->_date),
994       'time_pretty'  => time2str('%T', $cust_pay->_date),
995       'auth_num'     => $auth,
996       'order_num'    => $order,
997       'receipt_html' => $receipt_html,
998     };
999
1000   } else {
1001
1002     return {
1003       'error'        => '',
1004       'receipt_html' => '',
1005     };
1006
1007   }
1008
1009 }
1010
1011 sub realtime_collect {
1012   my $p = shift;
1013
1014   my $session = _cache->get($p->{'session_id'})
1015     or return { 'error' => "Can't resume session" }; #better error message
1016
1017   my $custnum = $session->{'custnum'};
1018
1019   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1020     or return { 'error' => "unknown custnum $custnum" };
1021
1022   my $amount;
1023   if ( $p->{'amount'} ) {
1024     $amount = $p->{'amount'};
1025   }
1026   elsif ( $session->{'pkgnum'} ) {
1027     $amount = $cust_main->balance_pkgnum( $session->{'pkgnum'} );
1028   }
1029   else {
1030     $amount = $cust_main->balance;
1031   }
1032
1033   my $error = $cust_main->realtime_collect(
1034     'method'     => $p->{'method'},
1035     'amount'     => $amount,
1036     'pkgnum'     => $session->{'pkgnum'},
1037     'session_id' => $p->{'session_id'},
1038     'apply'      => 1,
1039     'selfservice'=> 1,
1040   );
1041   return { 'error' => $error } unless ref( $error );
1042
1043   return { 'error' => '', amount => $amount, %$error };
1044 }
1045
1046 sub process_payment_order_pkg {
1047   my $p = shift;
1048
1049   my $hr = process_payment($p);
1050   return $hr if $hr->{'error'};
1051
1052   order_pkg($p);
1053 }
1054
1055 sub process_payment_order_renew {
1056   my $p = shift;
1057
1058   my $hr = process_payment($p);
1059   return $hr if $hr->{'error'};
1060
1061   order_renew($p);
1062 }
1063
1064 sub process_prepay {
1065
1066   my $p = shift;
1067
1068   my $session = _cache->get($p->{'session_id'})
1069     or return { 'error' => "Can't resume session" }; #better error message
1070
1071   my %return;
1072
1073   my $custnum = $session->{'custnum'};
1074
1075   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1076     or return { 'error' => "unknown custnum $custnum" };
1077
1078   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes ) = ( 0, 0, 0, 0, 0 );
1079   my $error = $cust_main->recharge_prepay( $p->{'prepaid_cardnum'},
1080                                            \$amount,
1081                                            \$seconds,
1082                                            \$upbytes,
1083                                            \$downbytes,
1084                                            \$totalbytes,
1085                                          );
1086
1087   return { 'error' => $error } if $error;
1088
1089   return { 'error'     => '',
1090            'amount'    => $amount,
1091            'seconds'   => $seconds,
1092            'duration'  => duration_exact($seconds),
1093            'upbytes'   => $upbytes,
1094            'upload'    => FS::UI::bytecount::bytecount_unexact($upbytes),
1095            'downbytes' => $downbytes,
1096            'download'  => FS::UI::bytecount::bytecount_unexact($downbytes),
1097            'totalbytes'=> $totalbytes,
1098            'totalload' => FS::UI::bytecount::bytecount_unexact($totalbytes),
1099          };
1100
1101 }
1102
1103 sub invoice {
1104   my $p = shift;
1105   my $session = _cache->get($p->{'session_id'})
1106     or return { 'error' => "Can't resume session" }; #better error message
1107
1108   my $custnum = $session->{'custnum'};
1109
1110   my $invnum = $p->{'invnum'};
1111
1112   my $cust_bill = qsearchs('cust_bill', { 'invnum'  => $invnum,
1113                                           'custnum' => $custnum } )
1114     or return { 'error' => "Can't find invnum" };
1115
1116   #my %return;
1117
1118   return { 'error'        => '',
1119            'invnum'       => $invnum,
1120            'invoice_text' => join('', $cust_bill->print_text ),
1121            'invoice_html' => $cust_bill->print_html( { unsquelch_cdr => 1 } ),
1122          };
1123
1124 }
1125
1126 sub invoice_pdf {
1127   my $p = shift;
1128   my $session = _cache->get($p->{'session_id'})
1129     or return { 'error' => "Can't resume session" }; #better error message
1130
1131   my $custnum = $session->{'custnum'};
1132
1133   my $invnum = $p->{'invnum'};
1134
1135   my $cust_bill = qsearchs('cust_bill', { 'invnum'  => $invnum,
1136                                           'custnum' => $custnum } )
1137     or return { 'error' => "Can't find invnum" };
1138
1139   #my %return;
1140
1141   return { 'error'       => '',
1142            'invnum'      => $invnum,
1143            'invoice_pdf' => $cust_bill->print_pdf({
1144                               'unsquelch_cdr' => 1,
1145                               'locale'        => $p->{'locale'},
1146                             }),
1147          };
1148
1149 }
1150
1151 sub legacy_invoice {
1152   my $p = shift;
1153   my $session = _cache->get($p->{'session_id'})
1154     or return { 'error' => "Can't resume session" }; #better error message
1155
1156   my $custnum = $session->{'custnum'};
1157
1158   my $legacyinvnum = $p->{'legacyinvnum'};
1159
1160   my %hash = (
1161     'legacyinvnum' => $legacyinvnum,
1162     'custnum'      => $custnum,
1163   );
1164
1165   my $legacy_cust_bill =
1166          qsearchs('legacy_cust_bill', { %hash, 'locale' => $p->{'locale'} } )
1167       || qsearchs('legacy_cust_bill', \%hash )
1168     or return { 'error' => "Can't find legacyinvnum" };
1169
1170   #my %return;
1171
1172   return { 'error'        => '',
1173            'legacyinvnum' => $legacyinvnum,
1174            'legacyid'     => $legacy_cust_bill->legacyid,
1175            'invoice_html' => $legacy_cust_bill->content_html,
1176          };
1177
1178 }
1179
1180 sub legacy_invoice_pdf {
1181   my $p = shift;
1182   my $session = _cache->get($p->{'session_id'})
1183     or return { 'error' => "Can't resume session" }; #better error message
1184
1185   my $custnum = $session->{'custnum'};
1186
1187   my $legacyinvnum = $p->{'legacyinvnum'};
1188
1189   my $legacy_cust_bill = qsearchs('legacy_cust_bill', {
1190     'legacyinvnum' => $legacyinvnum,
1191     'custnum'      => $custnum,
1192   }) or return { 'error' => "Can't find legacyinvnum" };
1193
1194   #my %return;
1195
1196   return { 'error'        => '',
1197            'legacyinvnum' => $legacyinvnum,
1198            'legacyid'     => $legacy_cust_bill->legacyid,
1199            'invoice_pdf'  => $legacy_cust_bill->content_pdf,
1200          };
1201
1202 }
1203
1204 sub invoice_logo {
1205   my $p = shift;
1206
1207   #sessioning for this?  how do we get the session id to the backend invoice
1208   # template so it can add it to the link, blah
1209
1210   my $agentnum = '';
1211   if ( $p->{'invnum'} ) {
1212     my $cust_bill = qsearchs('cust_bill', { 'invnum' => $p->{'invnum'} } )
1213       or return { 'error' => 'unknown invnum' };
1214     $agentnum = $cust_bill->cust_main->agentnum;
1215   }
1216
1217   my $templatename = $p->{'template'} || $p->{'templatename'};
1218
1219   #false laziness-ish w/view/cust_bill-logo.cgi
1220
1221   my $conf = new FS::Conf;
1222   if ( $templatename =~ /^([^\.\/]*)$/ && $conf->exists("logo_$1.png") ) {
1223     $templatename = "_$1";
1224   } else {
1225     $templatename = '';
1226   }
1227
1228   my $filename = "logo$templatename.png";
1229
1230   return { 'error'        => '',
1231            'logo'         => $conf->config_binary($filename, $agentnum),
1232            'content_type' => 'image/png', #should allow gif, jpg too
1233          };
1234 }
1235
1236
1237 sub list_invoices {
1238   my $p = shift;
1239   my $session = _cache->get($p->{'session_id'})
1240     or return { 'error' => "Can't resume session" }; #better error message
1241
1242   my $custnum = $session->{'custnum'};
1243
1244   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1245     or return { 'error' => "unknown custnum $custnum" };
1246
1247   my $conf = new FS::Conf;
1248
1249   my @legacy_cust_bill = $cust_main->legacy_cust_bill;
1250
1251   my @cust_bill = grep ! $_->hide, $cust_main->cust_bill;
1252
1253   my $balance = 0;
1254
1255   return  { 'error'       => '',
1256             'balance'     => $cust_main->balance,
1257             'invoices'    => [
1258               map {
1259                     my $owed = $_->owed;
1260                     $balance += $owed;
1261                     +{ 'invnum'       => $_->invnum,
1262                        '_date'        => $_->_date,
1263                        'date'         => time2str("%b %o, %Y", $_->_date),
1264                        'date_short'   => time2str("%m-%d-%Y",  $_->_date),
1265                        'previous'     => sprintf('%.2f', ($_->previous)[0]),
1266                        'charged'      => sprintf('%.2f', $_->charged),
1267                        'owed'         => sprintf('%.2f', $owed),
1268                        'balance'      => sprintf('%.2f', $balance),
1269                      }
1270                   }
1271                   @cust_bill
1272             ],
1273             'legacy_invoices' => [
1274               map {
1275                     +{ 'legacyinvnum' => $_->legacyinvnum,
1276                        'legacyid'     => $_->legacyid,
1277                        '_date'        => $_->_date,
1278                        'date'         => time2str("%b %o, %Y", $_->_date),
1279                        'date_short'   => time2str("%m-%d-%Y",  $_->_date),
1280                        'charged'      => sprintf('%.2f', $_->charged),
1281                        'has_content'  => (    length($_->content_pdf)
1282                                            || length($_->content_html) ),
1283                      }
1284                   }
1285                   @legacy_cust_bill
1286             ],
1287           };
1288 }
1289
1290 sub cancel {
1291   my $p = shift;
1292   my $session = _cache->get($p->{'session_id'})
1293     or return { 'error' => "Can't resume session" }; #better error message
1294
1295   my $custnum = $session->{'custnum'};
1296
1297   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1298     or return { 'error' => "unknown custnum $custnum" };
1299
1300   my @errors = $cust_main->cancel( 'quiet'=>1 );
1301
1302   my $error = scalar(@errors) ? join(' / ', @errors) : '';
1303
1304   return { 'error' => $error };
1305
1306 }
1307
1308 sub list_pkgs {
1309   my $p = shift;
1310
1311   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1312   return { 'error' => $session } if $context eq 'error';
1313
1314   my $search = { 'custnum' => $custnum };
1315   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1316   my $cust_main = qsearchs('cust_main', $search )
1317     or return { 'error' => "unknown custnum $custnum" };
1318
1319   my $conf = new FS::Conf;
1320   
1321 # the duplication below is necessary:
1322 # 1. to maintain the current buggy behaviour wrt the cust_pkg and part_pkg
1323 # hashes overwriting each other (setup and no_auto fields). Fixing that is a
1324 # non-backwards-compatible change breaking the software of anyone using the API
1325 # instead of the stock selfservice
1326 # 2. to return cancelled packages as well - for wholesale and non-wholesale
1327   if( $conf->exists('selfservice_server-view-wholesale') ) {
1328     return { 'svcnum'   => $session->{'svcnum'},
1329             'custnum'  => $custnum,
1330             'cust_pkg' => [ map {
1331                           { $_->hash,
1332                             part_pkg => [ map $_->hashref, $_->part_pkg ],
1333                             part_svc =>
1334                               [ map $_->hashref, $_->available_part_svc ],
1335                             cust_svc => 
1336                               [ map { my $ref = { $_->hash,
1337                                                   label => [ $_->label ],
1338                                                 };
1339                                       $ref->{_password} = $_->svc_x->_password
1340                                         if $context eq 'agent'
1341                                         && $conf->exists('agent-showpasswords')
1342                                         && $_->part_svc->svcdb eq 'svc_acct';
1343                                       $ref;
1344                                     } $_->cust_svc
1345                               ],
1346                           };
1347                         } $cust_main->cust_pkg
1348                   ],
1349     'small_custview' =>
1350       small_custview( $cust_main, $conf->config('countrydefault') ),
1351     'wholesale_view' => 1,
1352     'login_svcpart' => [ $conf->config('selfservice_server-login_svcpart') ],
1353     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1354     'lnp' => $conf->exists('svc_phone-lnp'),
1355       };
1356   }
1357
1358   { 'svcnum'   => $session->{'svcnum'},
1359     'custnum'  => $custnum,
1360     'cust_pkg' => [ map {
1361                           my $primary_cust_svc = $_->primary_cust_svc;
1362                           +{ $_->hash,
1363                             $_->part_pkg->hash,
1364                             status => $_->status,
1365                             part_svc =>
1366                               [ map $_->hashref, $_->available_part_svc ],
1367                             cust_svc => 
1368                               [ map { my $ref = { $_->hash,
1369                                                   label => [ $_->label ],
1370                                                 };
1371                                       $ref->{_password} = $_->svc_x->_password
1372                                         if $context eq 'agent'
1373                                         && $conf->exists('agent-showpasswords')
1374                                         && $_->part_svc->svcdb eq 'svc_acct';
1375                                       $ref->{svchash} = { $_->svc_x->hash } if 
1376                                         $_->part_svc->svcdb eq 'svc_phone';
1377                                       $ref->{svchash}->{svcpart} =  $_->part_svc->svcpart
1378                                         if $_->part_svc->svcdb eq 'svc_phone'; # hack
1379                                       $ref;
1380                                     } $_->cust_svc
1381                               ],
1382                             primary_cust_svc =>
1383                               $primary_cust_svc
1384                                 ? { $primary_cust_svc->hash,
1385                                     label => [ $primary_cust_svc->label ],
1386                                     finger => $primary_cust_svc->svc_x->finger, #uuh
1387                                     $primary_cust_svc->part_svc->hash,
1388                                   }
1389                                 : {}, #'' ?
1390                           };
1391                         } $cust_main->ncancelled_pkgs
1392                   ],
1393     'small_custview' =>
1394       small_custview( $cust_main, $conf->config('countrydefault') ),
1395   };
1396
1397 }
1398
1399 sub list_svcs {
1400   my $p = shift;
1401
1402   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1403   return { 'error' => $session } if $context eq 'error';
1404
1405   my $search = { 'custnum' => $custnum };
1406   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1407   my $cust_main = qsearchs('cust_main', $search )
1408     or return { 'error' => "unknown custnum $custnum" };
1409
1410   my $pkgnum = $session->{'pkgnum'} || $p->{'pkgnum'} || '';
1411   if ( ! $pkgnum && $p->{'svcnum'} ) {
1412     my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $p->{'svcnum'} } );
1413     $pkgnum = $cust_svc->pkgnum if $cust_svc;
1414   }
1415
1416   my @cust_svc = ();
1417   #foreach my $cust_pkg ( $cust_main->ncancelled_pkgs ) {
1418   foreach my $cust_pkg ( $p->{'ncancelled'} 
1419                          ? $cust_main->ncancelled_pkgs
1420                          : $cust_main->unsuspended_pkgs ) {
1421     next if $pkgnum && $cust_pkg->pkgnum != $pkgnum;
1422     push @cust_svc, @{[ $cust_pkg->cust_svc ]}; #@{[ ]} to force array context
1423   }
1424   if ( $p->{'svcdb'} ) {
1425     my $svcdb = ref($p->{'svcdb'}) eq 'HASH'
1426                   ? $p->{'svcdb'}
1427                   : ref($p->{'svcdb'}) eq 'ARRAY'
1428                     ? { map { $_=>1 } @{ $p->{'svcdb'} } }
1429                     : { $p->{'svcdb'} => 1 };
1430     @cust_svc = grep $svcdb->{ $_->part_svc->svcdb }, @cust_svc
1431   }
1432
1433   #@svc_x = sort { $a->domain cmp $b->domain || $a->username cmp $b->username }
1434   #              @svc_x;
1435
1436     my $conf = new FS::Conf;
1437
1438   { 
1439     'svcnum'   => $session->{'svcnum'},
1440     'custnum'  => $custnum,
1441     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1442     'view_usage_nodomain' => $conf->exists('selfservice-view_usage_nodomain'),
1443     'svcs'     => [
1444       map { 
1445             my $svc_x = $_->svc_x;
1446             my($label, $value) = $_->label;
1447             my $svcdb = $_->part_svc->svcdb;
1448             my $cust_pkg = $_->cust_pkg;
1449             my $part_pkg = $cust_pkg->part_pkg;
1450
1451             my %hash = (
1452               'svcnum'     => $_->svcnum,
1453               'svcdb'      => $svcdb,
1454               'label'      => $label,
1455               'value'      => $value,
1456               'pkg_status' => $cust_pkg->status,
1457             );
1458
1459             if ( $svcdb eq 'svc_acct' ) {
1460               %hash = (
1461                 %hash,
1462                 'username'   => $svc_x->username,
1463                 'email'      => $svc_x->email,
1464                 'finger'     => $svc_x->finger,
1465                 'seconds'    => $svc_x->seconds,
1466                 'upbytes'    => display_bytecount($svc_x->upbytes),
1467                 'downbytes'  => display_bytecount($svc_x->downbytes),
1468                 'totalbytes' => display_bytecount($svc_x->totalbytes),
1469
1470                 'recharge_amount'  => $part_pkg->option('recharge_amount',1),
1471                 'recharge_seconds' => $part_pkg->option('recharge_seconds',1),
1472                 'recharge_upbytes'    =>
1473                   display_bytecount($part_pkg->option('recharge_upbytes',1)),
1474                 'recharge_downbytes'  =>
1475                   display_bytecount($part_pkg->option('recharge_downbytes',1)),
1476                 'recharge_totalbytes' =>
1477                   display_bytecount($part_pkg->option('recharge_totalbytes',1)),
1478                 # more...
1479               );
1480
1481             } elsif ( $svcdb eq 'svc_dsl' ) {
1482               $hash{'phonenum'} = $svc_x->phonenum;
1483               if ( $svc_x->first || $svc_x->get('last') || $svc_x->company ) {
1484                 $hash{'name'} = $svc_x->first. ' '. $svc_x->get('last');
1485                 $hash{'name'} = $svc_x->company. ' ('. $hash{'name'}. ')'
1486                   if $svc_x->company;
1487               } else {
1488                 $hash{'name'} = $cust_main->name;
1489               }
1490             }
1491             # elsif ( $svcdb eq 'svc_phone' || $svcdb eq 'svc_port' ) {
1492             #  %hash = (
1493             #    %hash,
1494             #  );
1495             #}
1496
1497             \%hash;
1498           }
1499           @cust_svc
1500     ],
1501   };
1502
1503 }
1504
1505 sub _customer_svc_x {
1506   my($custnum, $svcnum, $table) = @_;
1507
1508   $custnum =~ /^(\d+)$/ or die "illegal custnum";
1509   my $search = " AND custnum = $1";
1510   #$search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
1511
1512   qsearchs( {
1513     'table'     => ($table || 'svc_acct'),
1514     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
1515                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) ',#.
1516                    #'LEFT JOIN cust_main USING ( custnum ) ',
1517     'hashref'   => { 'svcnum' => $svcnum, },
1518     'extra_sql' => $search, #important
1519   } );
1520
1521 }
1522
1523 sub svc_status_html {
1524   my $p = shift;
1525
1526   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1527   return { 'error' => $session } if $context eq 'error';
1528
1529   #XXX only svc_dsl for now
1530   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl')
1531     or return { 'error' => "Service not found" };
1532
1533   my $html = $svc_x->getstatus_html;
1534
1535   return { 'html' => $html };
1536
1537 }
1538
1539 sub list_dsl_devices {
1540   my $p = shift;
1541
1542   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1543   return { 'error' => $session } if $context eq 'error';
1544
1545   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
1546     or return { 'error' => "Service not found" };
1547
1548   return {
1549     'devices' => [ map {
1550                          +{ 'mac_addr' => $_->mac_addr };
1551                        } $svc_dsl->dsl_device
1552                  ],
1553   };
1554
1555 }
1556
1557 sub add_dsl_device {
1558   my $p = shift;
1559
1560   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1561   return { 'error' => $session } if $context eq 'error';
1562
1563   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
1564     or return { 'error' => "Service not found" };
1565
1566   return { 'error' => 'No MAC address supplied' }
1567     unless length($p->{'mac_addr'});
1568
1569   my $dsl_device = new FS::dsl_device { 'svcnum'   => $svc_dsl->svcnum,
1570                                         'mac_addr' => scalar($p->{'mac_addr'}),
1571                                       };
1572   my $error = $dsl_device->insert;
1573   return { 'error' => $error };
1574
1575 }
1576
1577 sub delete_dsl_device {
1578   my $p = shift;
1579
1580   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1581   return { 'error' => $session } if $context eq 'error';
1582
1583   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
1584     or return { 'error' => "Service not found" };
1585
1586   my $dsl_device = qsearchs('dsl_device', { 'svcnum'   => $svc_dsl->svcnum,
1587                                             'mac_addr' => scalar($p->{'mac_addr'}),
1588                                           }
1589                            )
1590     or return { 'error' => 'Unknown MAC address: '. $p->{'mac_addr'} };
1591
1592   my $error = $dsl_device->delete;
1593   return { 'error' => $error };
1594
1595 }
1596
1597 sub port_graph {
1598   my $p = shift;
1599   _usage_details( \&_port_graph, $p,
1600                   'svcdb' => 'svc_port',
1601                 );
1602 }
1603
1604 sub _port_graph {
1605   my($svc_port, $begin, $end) = @_;
1606   my @usage = ();
1607   my $pngOrError = $svc_port->graph_png( start=>$begin, end=> $end );
1608   push @usage, { 'png' => $pngOrError };
1609   (@usage);
1610 }
1611
1612 sub _list_svc_usage {
1613   my($svc_acct, $begin, $end) = @_;
1614   my @usage = ();
1615   foreach my $part_export ( 
1616     map { qsearch ( 'part_export', { 'exporttype' => $_ } ) }
1617     qw( sqlradius sqlradius_withdomain )
1618   ) {
1619     push @usage, @ { $part_export->usage_sessions($begin, $end, $svc_acct) };
1620   }
1621   (@usage);
1622 }
1623
1624 sub list_svc_usage {
1625   _usage_details(\&_list_svc_usage, @_);
1626 }
1627
1628 sub _list_support_usage {
1629   my($svc_acct, $begin, $end) = @_;
1630   my @usage = ();
1631   foreach ( grep { $begin <= $_->_date && $_->_date <= $end }
1632             qsearch('acct_rt_transaction', { 'svcnum' => $svc_acct->svcnum })
1633           ) {
1634     push @usage, { 'seconds'  => $_->seconds,
1635                    'support'  => $_->support,
1636                    '_date'    => $_->_date,
1637                    'id'       => $_->transaction_id,
1638                    'creator'  => $_->creator,
1639                    'subject'  => $_->subject,
1640                    'status'   => $_->status,
1641                    'ticketid' => $_->ticketid,
1642                  };
1643   }
1644   (@usage);
1645 }
1646
1647 sub list_support_usage {
1648   _usage_details(\&_list_support_usage, @_);
1649 }
1650
1651 sub _list_cdr_usage {
1652   my($svc_phone, $begin, $end) = @_;
1653   map [ $_->downstream_csv('format' => 'default', 'keeparray' => 1) ], #XXX config for format
1654                        $svc_phone->get_cdrs( 'begin'=>$begin, 'end'=>$end, );
1655 }
1656
1657 sub list_cdr_usage {
1658   my $p = shift;
1659   _usage_details( \&_list_cdr_usage, $p,
1660                   'svcdb' => 'svc_phone',
1661                 );
1662 }
1663
1664 sub _usage_details {
1665   my($callback, $p, %opt) = @_;
1666
1667   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1668   return { 'error' => $session } if $context eq 'error';
1669
1670   my $search = { 'svcnum' => $p->{'svcnum'} };
1671   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1672
1673   my $svcdb = $opt{'svcdb'} || 'svc_acct';
1674
1675   my $svc_x = qsearchs( $svcdb, $search );
1676   return { 'error' => 'No service selected in list_svc_usage' } 
1677     unless $svc_x;
1678
1679   my $header = $svcdb eq 'svc_phone'
1680                  ? [ split(',', FS::cdr::invoice_header('default') ) ]  #XXX
1681                  : [];
1682
1683   my $cust_pkg = $svc_x->cust_svc->cust_pkg;
1684   my $freq     = $cust_pkg->part_pkg->freq;
1685   my $start    = $cust_pkg->setup;
1686   #my $end      = $cust_pkg->bill; # or time?
1687   my $end      = time;
1688
1689   unless ( $p->{beginning} ) {
1690     $p->{beginning} = $cust_pkg->last_bill;
1691     $p->{ending}    = $end;
1692   }
1693
1694   my (@usage) = &$callback($svc_x, $p->{beginning}, $p->{ending});
1695
1696   #kinda false laziness with FS::cust_main::bill, but perhaps
1697   #we should really change this bit to DateTime and DateTime::Duration
1698   #
1699   #change this bit to use Date::Manip? CAREFUL with timezones (see
1700   # mailing list archive)
1701   my ($nsec,$nmin,$nhour,$nmday,$nmon,$nyear) =
1702     (localtime($p->{ending}) )[0,1,2,3,4,5];
1703   my ($psec,$pmin,$phour,$pmday,$pmon,$pyear) =
1704     (localtime($p->{beginning}) )[0,1,2,3,4,5];
1705
1706   if ( $freq =~ /^\d+$/ ) {
1707     $nmon += $freq;
1708     until ( $nmon < 12 ) { $nmon -= 12; $nyear++; }
1709     $pmon -= $freq;
1710     until ( $pmon >= 0 ) { $pmon += 12; $pyear--; }
1711   } elsif ( $freq =~ /^(\d+)w$/ ) {
1712     my $weeks = $1;
1713     $nmday += $weeks * 7;
1714     $pmday -= $weeks * 7;
1715   } elsif ( $freq =~ /^(\d+)d$/ ) {
1716     my $days = $1;
1717     $nmday += $days;
1718     $pmday -= $days;
1719   } elsif ( $freq =~ /^(\d+)h$/ ) {
1720     my $hours = $1;
1721     $nhour += $hours;
1722     $phour -= $hours;
1723   } else {
1724     return { 'error' => "unparsable frequency: ". $freq };
1725   }
1726   
1727   my $previous  = timelocal_nocheck($psec,$pmin,$phour,$pmday,$pmon,$pyear);
1728   my $next      = timelocal_nocheck($nsec,$nmin,$nhour,$nmday,$nmon,$nyear);
1729
1730   { 
1731     'error'     => '',
1732     'svcnum'    => $p->{svcnum},
1733     'beginning' => $p->{beginning},
1734     'ending'    => $p->{ending},
1735     'previous'  => ($previous > $start) ? $previous : $start,
1736     'next'      => ($next < $end) ? $next : $end,
1737     'header'    => $header,
1738     'usage'     => \@usage,
1739   };
1740 }
1741
1742 sub order_pkg {
1743   my $p = shift;
1744
1745   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1746   return { 'error' => $session } if $context eq 'error';
1747
1748   my $search = { 'custnum' => $custnum };
1749   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1750   my $cust_main = qsearchs('cust_main', $search )
1751     or return { 'error' => "unknown custnum $custnum" };
1752
1753   my $status = $cust_main->status;
1754   #false laziness w/ClientAPI/Signup.pm
1755
1756   my $cust_pkg = new FS::cust_pkg ( {
1757     'custnum' => $custnum,
1758     'pkgpart' => $p->{'pkgpart'},
1759   } );
1760   my $error = $cust_pkg->check;
1761   return { 'error' => $error } if $error;
1762
1763   my @svc = ();
1764   unless ( $p->{'svcpart'} eq 'none' ) {
1765
1766     my $svcdb;
1767     my $svcpart = '';
1768     if ( $p->{'svcpart'} =~ /^(\d+)$/ ) {
1769       $svcpart = $1;
1770       my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
1771       return { 'error' => "Unknown svcpart $svcpart" } unless $part_svc;
1772       $svcdb = $part_svc->svcdb;
1773     } else {
1774       $svcdb = 'svc_acct';
1775     }
1776     $svcpart ||= $cust_pkg->part_pkg->svcpart($svcdb);
1777
1778     my %fields = (
1779       'svc_acct'     => [ qw( username domsvc _password sec_phrase popnum ) ],
1780       'svc_domain'   => [ qw( domain ) ],
1781       'svc_phone'    => [ qw( phonenum pin sip_password phone_name ) ],
1782       'svc_external' => [ qw( id title ) ],
1783       'svc_pbx'      => [ qw( id title ) ],
1784     );
1785   
1786     my $svc_x = "FS::$svcdb"->new( {
1787       'svcpart'   => $svcpart,
1788       map { $_ => $p->{$_} } @{$fields{$svcdb}}
1789     } );
1790     
1791     if ( $svcdb eq 'svc_acct' && exists($p->{"snarf_machine1"}) ) {
1792       my @acct_snarf;
1793       my $snarfnum = 1;
1794       while ( length($p->{"snarf_machine$snarfnum"}) ) {
1795         my $acct_snarf = new FS::acct_snarf ( {
1796           'machine'   => $p->{"snarf_machine$snarfnum"},
1797           'protocol'  => $p->{"snarf_protocol$snarfnum"},
1798           'username'  => $p->{"snarf_username$snarfnum"},
1799           '_password' => $p->{"snarf_password$snarfnum"},
1800         } );
1801         $snarfnum++;
1802         push @acct_snarf, $acct_snarf;
1803       }
1804       $svc_x->child_objects( \@acct_snarf );
1805     }
1806     
1807     my $y = $svc_x->setdefault; # arguably should be in new method
1808     return { 'error' => $y } if $y && !ref($y);
1809   
1810     $error = $svc_x->check;
1811     return { 'error' => $error } if $error;
1812
1813     push @svc, $svc_x;
1814
1815   }
1816
1817   use Tie::RefHash;
1818   tie my %hash, 'Tie::RefHash';
1819   %hash = ( $cust_pkg => \@svc );
1820   #msgcat
1821   $error = $cust_main->order_pkgs( \%hash, 'noexport' => 1 );
1822   return { 'error' => $error } if $error;
1823
1824   my $conf = new FS::Conf;
1825   if ( $conf->exists('signup_server-realtime') ) {
1826
1827     my $bill_error = _do_bop_realtime( $cust_main, $status );
1828
1829     if ($bill_error) {
1830       $cust_pkg->cancel('quiet'=>1);
1831       return $bill_error;
1832     } else {
1833       $cust_pkg->reexport;
1834     }
1835
1836   } else {
1837     $cust_pkg->reexport;
1838   }
1839
1840   my $svcnum = $svc[0] ? $svc[0]->svcnum : '';
1841
1842   return { error=>'', pkgnum=>$cust_pkg->pkgnum, svcnum=>$svcnum };
1843
1844 }
1845
1846 sub change_pkg {
1847   my $p = shift;
1848
1849   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1850   return { 'error' => $session } if $context eq 'error';
1851
1852   my $search = { 'custnum' => $custnum };
1853   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1854   my $cust_main = qsearchs('cust_main', $search )
1855     or return { 'error' => "unknown custnum $custnum" };
1856
1857   my $status = $cust_main->status;
1858   my $cust_pkg = qsearchs('cust_pkg', { 'pkgnum' => $p->{pkgnum} } )
1859     or return { 'error' => "unknown package $p->{pkgnum}" };
1860
1861   my @newpkg;
1862   my $error = FS::cust_pkg::order( $custnum,
1863                                    [$p->{pkgpart}],
1864                                    [$p->{pkgnum}],
1865                                    \@newpkg,
1866                                  );
1867
1868   my $conf = new FS::Conf;
1869   if ( $conf->exists('signup_server-realtime') ) {
1870
1871     my $bill_error = _do_bop_realtime( $cust_main, $status );
1872
1873     if ($bill_error) {
1874       $newpkg[0]->suspend;
1875       return $bill_error;
1876     } else {
1877       $newpkg[0]->reexport;
1878     }
1879
1880   } else {  
1881     $newpkg[0]->reexport;
1882   }
1883
1884   return { error => '', pkgnum => $cust_pkg->pkgnum };
1885
1886 }
1887
1888 sub order_recharge {
1889   my $p = shift;
1890
1891   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1892   return { 'error' => $session } if $context eq 'error';
1893
1894   my $search = { 'custnum' => $custnum };
1895   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1896   my $cust_main = qsearchs('cust_main', $search )
1897     or return { 'error' => "unknown custnum $custnum" };
1898
1899   my $status = $cust_main->status;
1900   my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $p->{'svcnum'} } )
1901     or return { 'error' => "unknown service " . $p->{'svcnum'} };
1902
1903   my $svc_x = $cust_svc->svc_x;
1904   my $part_pkg = $cust_svc->cust_pkg->part_pkg;
1905
1906   my %vhash =
1907     map { $_ =~ /^recharge_(.*)$/; $1, $part_pkg->option($_, 1) } 
1908     qw ( recharge_seconds recharge_upbytes recharge_downbytes
1909          recharge_totalbytes );
1910   my $amount = $part_pkg->option('recharge_amount', 1); 
1911   
1912   my ($l, $v, $d) = $cust_svc->label;  # blah
1913   my $pkg = "Recharge $v"; 
1914
1915   my $bill_error = $cust_main->charge($amount, $pkg,
1916      "time: $vhash{seconds}, up: $vhash{upbytes}," . 
1917      "down: $vhash{downbytes}, total: $vhash{totalbytes}",
1918      $part_pkg->taxclass); #meh
1919
1920   my $conf = new FS::Conf;
1921   if ( $conf->exists('signup_server-realtime') && !$bill_error ) {
1922
1923     $bill_error = _do_bop_realtime( $cust_main, $status );
1924
1925     if ($bill_error) {
1926       return $bill_error;
1927     } else {
1928       my $error = $svc_x->recharge (\%vhash);
1929       return { 'error' => $error } if $error;
1930     }
1931
1932   } else {  
1933     my $error = $bill_error;
1934     $error ||= $svc_x->recharge (\%vhash);
1935     return { 'error' => $error } if $error;
1936   }
1937
1938   return { error => '', svc => $cust_svc->part_svc->svc };
1939
1940 }
1941
1942 sub _do_bop_realtime {
1943   my ($cust_main, $status) = (shift, shift);
1944
1945     my $old_balance = $cust_main->balance;
1946
1947     my $bill_error =    $cust_main->bill
1948                      || $cust_main->apply_payments_and_credits
1949                      || $cust_main->realtime_collect('selfservice' => 1);
1950
1951     if (    $cust_main->balance > $old_balance
1952          && $cust_main->balance > 0
1953          && ( $cust_main->payby !~ /^(BILL|DCRD|DCHK)$/ ?
1954               1 : $status eq 'suspended' ) ) {
1955       #this makes sense.  credit is "un-doing" the invoice
1956       my $conf = new FS::Conf;
1957       $cust_main->credit( sprintf("%.2f", $cust_main->balance - $old_balance ),
1958                           'self-service decline',
1959                           'reason_type' => $conf->config('signup_credit_type'),
1960                         );
1961       $cust_main->apply_credits( 'order' => 'newest' );
1962
1963       return { 'error' => '_decline', 'bill_error' => $bill_error };
1964     }
1965
1966     '';
1967 }
1968
1969 sub renew_info {
1970   my $p = shift;
1971
1972   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1973   return { 'error' => $session } if $context eq 'error';
1974
1975   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1976     or return { 'error' => "unknown custnum $custnum" };
1977
1978   my @cust_pkg = sort { $a->bill <=> $b->bill }
1979                  grep { $_->part_pkg->freq ne '0' }
1980                  $cust_main->ncancelled_pkgs;
1981
1982   #return { 'error' => 'No active packages to renew.' } unless @cust_pkg;
1983
1984   my $total = $cust_main->balance;
1985
1986   my @array = map {
1987                     my $bill = $_->bill;
1988                     $total += $_->part_pkg->base_recur($_, \$bill);
1989                     my $renew_date = $_->part_pkg->add_freq($_->bill);
1990                     {
1991                       'pkgnum'             => $_->pkgnum,
1992                       'amount'             => sprintf('%.2f', $total),
1993                       'bill_date'          => $_->bill,
1994                       'bill_date_pretty'   => time2str('%x', $_->bill),
1995                       'renew_date'         => $renew_date,
1996                       'renew_date_pretty'  => time2str('%x', $renew_date),
1997                       'expire_date'        => $_->expire,
1998                       'expire_date_pretty' => time2str('%x', $_->expire),
1999                     };
2000                   }
2001                   @cust_pkg;
2002
2003   return { 'dates' => \@array };
2004
2005 }
2006
2007 sub payment_info_renew_info {
2008   my $p = shift;
2009   my $renew_info   = renew_info($p);
2010   my $payment_info = payment_info($p);
2011   return { %$renew_info,
2012            %$payment_info,
2013          };
2014 }
2015
2016 sub order_renew {
2017   my $p = shift;
2018
2019   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2020   return { 'error' => $session } if $context eq 'error';
2021
2022   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2023     or return { 'error' => "unknown custnum $custnum" };
2024
2025   my $date = $p->{'date'};
2026
2027   my $now = time;
2028
2029   #freeside-daily -n -d $date fs_daily $custnum
2030   $cust_main->bill_and_collect( 'time'         => $date,
2031                                 'invoice_time' => $now,
2032                                 'actual_time'  => $now,
2033                                 'check_freq'   => '1d',
2034                               );
2035
2036   return { 'error' => '' };
2037
2038 }
2039
2040 sub suspend_pkg {
2041   my $p = shift;
2042   my $session = _cache->get($p->{'session_id'})
2043     or return { 'error' => "Can't resume session" }; #better error message
2044
2045   my $custnum = $session->{'custnum'};
2046
2047   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2048     or return { 'error' => "unknown custnum $custnum" };
2049
2050   my $conf = new FS::Conf;
2051   my $reasonnum = 
2052     $conf->config('selfservice-self_suspend_reason', $cust_main->agentnum)
2053       or return { 'error' => 'Permission denied' };
2054
2055   my $pkgnum = $p->{'pkgnum'};
2056
2057   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2058                                         'pkgnum'  => $pkgnum,   } )
2059     or return { 'error' => "unknown pkgnum $pkgnum" };
2060
2061   my $error = $cust_pkg->suspend(reason => $reasonnum);
2062   return { 'error' => $error };
2063
2064 }
2065
2066 sub cancel_pkg {
2067   my $p = shift;
2068   my $session = _cache->get($p->{'session_id'})
2069     or return { 'error' => "Can't resume session" }; #better error message
2070
2071   my $custnum = $session->{'custnum'};
2072
2073   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2074     or return { 'error' => "unknown custnum $custnum" };
2075
2076   my $pkgnum = $p->{'pkgnum'};
2077
2078   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2079                                         'pkgnum'  => $pkgnum,   } )
2080     or return { 'error' => "unknown pkgnum $pkgnum" };
2081
2082   my $error = $cust_pkg->cancel('quiet' => 1);
2083   return { 'error' => $error };
2084
2085 }
2086
2087 sub provision_phone {
2088  my $p = shift;
2089  my @bulkdid;
2090  @bulkdid = @{$p->{'bulkdid'}} if $p->{'bulkdid'};
2091
2092  if($p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/){
2093       my($context, $session, $custnum) = _custoragent_session_custnum($p);
2094       return { 'error' => $session } if $context eq 'error';
2095     
2096       my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2097       return { 'error' => 'service not found' } unless $svc_phone;
2098       return { 'error' => 'invalid svcnum' } 
2099         if $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum != $custnum;
2100
2101       $svc_phone->email($p->{'email'}) 
2102         if $svc_phone->email ne $p->{'email'} && $p->{'email'} =~ /^([\w\.\d@]+|)$/;
2103       $svc_phone->forwarddst($p->{'forwarddst'}) 
2104         if $svc_phone->forwarddst ne $p->{'forwarddst'} 
2105             && $p->{'forwarddst'} =~ /^(\d+|)$/;
2106       return { 'error' => $svc_phone->replace };
2107  }
2108
2109 # single DID LNP
2110  unless($p->{'lnp'}) {
2111     $p->{'lnp_desired_due_date'} = parse_datetime($p->{'lnp_desired_due_date'});
2112     $p->{'lnp_status'} = "portingin";
2113     return _provision( 'FS::svc_phone',
2114                   [qw(lnp_desired_due_date lnp_other_provider 
2115                     lnp_other_provider_account phonenum countrycode lnp_status)],
2116                   [qw(phonenum countrycode)],
2117                   $p,
2118                   @_
2119                 );
2120  }
2121
2122 # single DID order
2123  unless (scalar(@bulkdid)) {
2124     return _provision( 'FS::svc_phone',
2125                   [qw(phonenum countrycode)],
2126                   [qw(phonenum countrycode)],
2127                   $p,
2128                   @_
2129                 );
2130  }
2131
2132 # bulk DID order case
2133   my $error;
2134   foreach my $did ( @bulkdid ) {
2135     $did =~ s/[^0-9]//g;
2136     $error = _provision( 'FS::svc_phone',
2137               [qw(phonenum countrycode)],
2138               [qw(phonenum countrycode)],
2139               {
2140                 'pkgnum' => $p->{'pkgnum'},
2141                 'svcpart' => $p->{'svcpart'},
2142                 'phonenum' => $did,
2143                 'countrycode' => $p->{'countrycode'},
2144                 'session_id' => $p->{'session_id'},
2145               }
2146             );
2147     return $error if ($error->{'error'} && length($error->{'error'}) > 1);
2148   }
2149   { 'bulkdid' => [ @bulkdid ], 'svc' => $error->{'svc'} }
2150 }
2151
2152 sub provision_acct {
2153   my $p = shift;
2154   warn "provision_acct called\n"
2155     if $DEBUG;
2156
2157   return { 'error' => gettext('passwords_dont_match') }
2158     if $p->{'_password'} ne $p->{'_password2'};
2159   return { 'error' => gettext('empty_password') }
2160     unless length($p->{'_password'});
2161  
2162   if ($p->{'domsvc'}) {
2163     my %domains = domain_select_hash FS::svc_acct(map { $_ => $p->{$_} }
2164                                                   qw ( svcpart pkgnum ) );
2165     return { 'error' => gettext('invalid_domain') }
2166       unless ($domains{$p->{'domsvc'}});
2167   }
2168
2169   warn "provision_acct calling _provision\n"
2170     if $DEBUG;
2171   _provision( 'FS::svc_acct',
2172               [qw(username _password domsvc)],
2173               [qw(username _password domsvc)],
2174               $p,
2175               @_
2176             );
2177 }
2178
2179 sub provision_external {
2180   my $p = shift;
2181   #_provision( 'FS::svc_external', [qw(id title)], [qw(id title)], $p, @_ );
2182   _provision( 'FS::svc_external',
2183               [],
2184               [qw(id title)],
2185               $p,
2186               @_
2187             );
2188 }
2189
2190 sub _provision {
2191   my( $class, $fields, $return_fields, $p ) = splice(@_, 0, 4);
2192   warn "_provision called for $class\n"
2193     if $DEBUG;
2194
2195   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2196   return { 'error' => $session } if $context eq 'error';
2197
2198   my $search = { 'custnum' => $custnum };
2199   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2200   my $cust_main = qsearchs('cust_main', $search )
2201     or return { 'error' => "unknown custnum $custnum" };
2202
2203   my $pkgnum = $p->{'pkgnum'};
2204
2205   warn "searching for custnum $custnum pkgnum $pkgnum\n"
2206     if $DEBUG;
2207   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2208                                         'pkgnum'  => $pkgnum,
2209                                                                } )
2210     or return { 'error' => "unknown pkgnum $pkgnum" };
2211
2212   warn "searching for svcpart ". $p->{'svcpart'}. "\n"
2213     if $DEBUG;
2214   my $part_svc = qsearchs('part_svc', { 'svcpart' => $p->{'svcpart'} } )
2215     or return { 'error' => "unknown svcpart $p->{'svcpart'}" };
2216
2217   warn "creating $class record\n"
2218     if $DEBUG;
2219   my $svc_x = $class->new( {
2220     'pkgnum'  => $p->{'pkgnum'},
2221     'svcpart' => $p->{'svcpart'},
2222     map { $_ => $p->{$_} } @$fields
2223   } );
2224   warn "inserting $class record\n"
2225     if $DEBUG;
2226   my $error = $svc_x->insert;
2227
2228   unless ( $error ) {
2229     warn "finding inserted record for svcnum ". $svc_x->svcnum. "\n"
2230       if $DEBUG;
2231     $svc_x = qsearchs($svc_x->table, { 'svcnum' => $svc_x->svcnum })
2232   }
2233
2234   my $return = { 'svc'   => $part_svc->svc,
2235                  'error' => $error,
2236                  map { $_ => $svc_x->get($_) } @$return_fields
2237                };
2238   warn "_provision returning ". Dumper($return). "\n"
2239     if $DEBUG;
2240   return $return;
2241
2242 }
2243
2244 sub part_svc_info {
2245   my $p = shift;
2246
2247   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2248   return { 'error' => $session } if $context eq 'error';
2249
2250   my $search = { 'custnum' => $custnum };
2251   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2252   my $cust_main = qsearchs('cust_main', $search )
2253     or return { 'error' => "unknown custnum $custnum" };
2254
2255   my $pkgnum = $p->{'pkgnum'};
2256
2257   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2258                                         'pkgnum'  => $pkgnum,
2259                                                                } )
2260     or return { 'error' => "unknown pkgnum $pkgnum" };
2261
2262   my $svcpart = $p->{'svcpart'};
2263
2264   my $pkg_svc = qsearchs('pkg_svc', { 'pkgpart' => $cust_pkg->pkgpart,
2265                                       'svcpart' => $svcpart,           } )
2266     or return { 'error' => "unknown svcpart $svcpart for pkgnum $pkgnum" };
2267   my $part_svc = $pkg_svc->part_svc;
2268
2269   my $conf = new FS::Conf;
2270
2271   my $ret = {
2272     'svc'     => $part_svc->svc,
2273     'svcdb'   => $part_svc->svcdb,
2274     'pkgnum'  => $pkgnum,
2275     'svcpart' => $svcpart,
2276     'custnum' => $custnum,
2277
2278     'security_phrase' => 0, #XXX !
2279     'svc_acct_pop'    => [], #XXX !
2280     'popnum'          => '',
2281     'init_popstate'   => '',
2282     'popac'           => '',
2283     'acstate'         => '',
2284
2285     'small_custview' =>
2286       small_custview( $cust_main, $conf->config('countrydefault') ),
2287
2288   };
2289
2290   if ($p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ 
2291                      && $ret->{'svcdb'} eq 'svc_phone') {
2292         $ret->{'svcnum'} = $p->{'svcnum'};
2293         my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2294         if ( $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum == $custnum ) {
2295             $ret->{'email'} = $svc_phone->email;
2296             $ret->{'forwarddst'} = $svc_phone->forwarddst;
2297         }
2298   }
2299
2300   $ret;
2301 }
2302
2303 sub unprovision_svc {
2304   my $p = shift;
2305
2306   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2307   return { 'error' => $session } if $context eq 'error';
2308
2309   my $search = { 'custnum' => $custnum };
2310   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2311   my $cust_main = qsearchs('cust_main', $search )
2312     or return { 'error' => "unknown custnum $custnum" };
2313
2314   my $svcnum = $p->{'svcnum'};
2315
2316   my $cust_svc = qsearchs('cust_svc', { 'svcnum'  => $svcnum, } )
2317     or return { 'error' => "unknown svcnum $svcnum" };
2318
2319   return { 'error' => "Service $svcnum does not belong to customer $custnum" }
2320     unless $cust_svc->cust_pkg->custnum == $custnum;
2321
2322   my $conf = new FS::Conf;
2323
2324   return { 'svc'   => $cust_svc->part_svc->svc,
2325            'error' => $cust_svc->cancel,
2326            'small_custview' =>
2327              small_custview( $cust_main, $conf->config('countrydefault') ),
2328          };
2329
2330 }
2331
2332 sub myaccount_passwd {
2333   my $p = shift;
2334   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2335   return { 'error' => $session } if $context eq 'error';
2336
2337   return { 'error' => "New passwords don't match." }
2338     if $p->{'new_password'} ne $p->{'new_password2'};
2339
2340   return { 'error' => 'Enter new password' }
2341     unless length($p->{'new_password'});
2342
2343   #my $search = { 'custnum' => $custnum };
2344   #$search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2345   $custnum =~ /^(\d+)$/ or die "illegal custnum";
2346   my $search = " AND custnum = $1";
2347   $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
2348
2349   my $svc_acct = qsearchs( {
2350     'table'     => 'svc_acct',
2351     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
2352                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
2353                    'LEFT JOIN cust_main USING ( custnum ) ',
2354     'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
2355     'extra_sql' => $search, #important
2356   } )
2357     or return { 'error' => "Service not found" };
2358
2359   if ( exists($p->{'old_password'}) ) {
2360     return { 'error' => "Incorrect password." }
2361       unless $svc_acct->check_password($p->{'old_password'});
2362   }
2363
2364   $svc_acct->_password($p->{'new_password'});
2365   my $error = $svc_acct->replace();
2366
2367   my($label, $value) = $svc_acct->cust_svc->label;
2368
2369   return { 'error' => $error,
2370            'label' => $label,
2371            'value' => $value,
2372          };
2373
2374 }
2375
2376 sub reset_passwd {
2377   my $p = shift;
2378
2379   my $conf = new FS::Conf;
2380   my $verification = $conf->config('selfservice-password_reset_verification')
2381     or return { 'error' => 'Password resets disabled' };
2382
2383   my $username = $p->{'username'};
2384
2385   my $svc_domain = qsearchs('svc_domain', { 'domain' => $p->{'domain'} } )
2386     or return { 'error' => 'Account not found' };
2387
2388   my $svc_acct = qsearchs('svc_acct', { 'username' => $p->{'username'},
2389                                         'domsvc'   => $svc_domain->svcnum  }
2390                          )
2391     or return { 'error' => 'Account not found' };
2392
2393   my $cust_pkg = $svc_acct->cust_svc->cust_pkg
2394     or return { 'error' => 'Account not found' };
2395
2396   my $cust_main = $cust_pkg->cust_main;
2397
2398   my %verify = (
2399     'paymask' => sub { 
2400       my( $p, $cust_main ) = @_;
2401       $cust_main->payby =~ /^(CARD|DCRD|CHEK|DCHK)$/
2402         && $p->{'paymask'} eq substr($cust_main->paymask, -4)
2403     },
2404     'amount'  => sub {
2405       my( $p, $cust_main ) = @_;
2406       my $cust_pay = qsearchs({
2407         'table' => 'cust_pay',
2408         'hashref' => { 'custnum' => $cust_main->custnum },
2409         'order_by' => 'ORDER BY _date DESC LIMIT 1',
2410       })
2411         or return 0;
2412
2413       $p->{'amount'} == $cust_pay->paid;
2414     },
2415     'zip'     => sub {
2416       my( $p, $cust_main ) = @_;
2417       $p->{'zip'} eq $cust_main->zip
2418         || ( $cust_main->ship_zip && $p->{'zip'} eq $cust_main->ship_zip );
2419     },
2420   );
2421
2422   foreach my $verify ( split(',', $verification) ) {
2423
2424     &{ $verify{$verify} }( $p, $cust_main )
2425       or return { 'error' => 'Account not found' };
2426
2427   }
2428
2429   #okay, we're verified, now create a unique session
2430
2431   my $reset_session = {
2432     'svcnum' => $svc_acct->svcnum,
2433   };
2434
2435   my $timeout = '1 hour'; #?
2436
2437   my $reset_session_id;
2438   do {
2439     $reset_session_id = md5_hex(md5_hex(time(). {}. rand(). $$))
2440   } until ( ! defined _cache->get("reset_passwd_$reset_session_id") ); #just in case
2441
2442   _cache->set( "reset_passwd_$reset_session_id", $reset_session, $timeout );
2443
2444   #email it
2445
2446   my $msgnum = $conf->config('selfservice-password_reset_msgnum', $cust_main->agentnum);
2447   #die "selfservice-password_reset_msgnum unset" unless $msgnum;
2448   return { 'error' => "selfservice-password_reset_msgnum unset" } unless $msgnum;
2449   my $msg_template = qsearchs('msg_template', { msgnum => $msgnum } );
2450   my $error = $msg_template->send( 'cust_main'     => $cust_main,
2451                                    'object'        => $svc_acct,
2452                                    'substitutions' => {
2453                                      'session_id' => $reset_session_id,
2454                                    }
2455                                  );
2456   if ( $error ) {
2457     return { 'error' => $error }; #????
2458   }
2459
2460   return { 'error' => '' };
2461 }
2462
2463 sub check_reset_passwd {
2464   my $p = shift;
2465
2466   my $conf = new FS::Conf;
2467   my $verification = $conf->config('selfservice-password_reset_verification')
2468     or return { 'error' => 'Password resets disabled' };
2469
2470   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
2471     or return { 'error' => "Can't resume session" }; #better error message
2472
2473   my $svcnum = $reset_session->{'svcnum'};
2474
2475   my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
2476     or return { 'error' => "Service not found" };
2477
2478   return { 'error'    => '',
2479            'username' => $svc_acct->username,
2480          };
2481
2482 }
2483
2484 sub process_reset_passwd {
2485   my $p = shift;
2486
2487   my $conf = new FS::Conf;
2488   my $verification = $conf->config('selfservice-password_reset_verification')
2489     or return { 'error' => 'Password resets disabled' };
2490
2491   return { 'error' => "New passwords don't match." }
2492     if $p->{'new_password'} ne $p->{'new_password2'};
2493
2494   return { 'error' => 'Enter new password' }
2495     unless length($p->{'new_password'});
2496
2497   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
2498     or return { 'error' => "Can't resume session" }; #better error message
2499
2500   my $svcnum = $reset_session->{'svcnum'};
2501
2502   my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
2503     or return { 'error' => "Service not found" };
2504
2505   $svc_acct->_password($p->{'new_password'});
2506   my $error = $svc_acct->replace();
2507
2508   my($label, $value) = $svc_acct->cust_svc->label;
2509
2510   return { 'error' => $error,
2511            #'label' => $label,
2512            #'value' => $value,
2513          };
2514
2515 }
2516
2517 sub create_ticket {
2518   my $p = shift;
2519   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2520   return { 'error' => $session } if $context eq 'error';
2521
2522   warn "$me create_ticket: initializing ticket system\n" if $DEBUG;
2523   FS::TicketSystem->init();
2524
2525   my $conf = new FS::Conf;
2526   my $queue = $p->{'queue'}
2527               || $conf->config('ticket_system-selfservice_queueid')
2528               || $conf->config('ticket_system-default_queueid');
2529
2530   warn "$me create_ticket: creating ticket\n" if $DEBUG;
2531   my $err_or_ticket = FS::TicketSystem->create_ticket(
2532     '', #create RT session based on FS CurrentUser (fs_selfservice)
2533     'queue'   => $queue,
2534     'custnum' => $custnum,
2535     'svcnum'  => $session->{'svcnum'},
2536     map { $_ => $p->{$_} } qw( requestor cc subject message mime_type )
2537   );
2538
2539   if ( ref($err_or_ticket) ) {
2540     warn "$me create_ticket: successful: ". $err_or_ticket->id. "\n"
2541       if $DEBUG;
2542     return { 'error'     => '',
2543              'ticket_id' => $err_or_ticket->id,
2544            };
2545   } else {
2546     warn "$me create_ticket: unsuccessful: $err_or_ticket\n"
2547       if $DEBUG;
2548     return { 'error' => $err_or_ticket };
2549   }
2550
2551
2552 }
2553
2554 sub did_report {
2555   my $p = shift;
2556   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2557   return { 'error' => $session } if $context eq 'error';
2558  
2559   return { error => 'requested format not implemented' } 
2560     unless ($p->{'format'} eq 'csv' || $p->{'format'} eq 'xls');
2561
2562   my $conf = new FS::Conf;
2563   my $age_threshold = 0;
2564   $age_threshold = time() - $conf->config('selfservice-recent-did-age')
2565     if ($p->{'recentonly'} && $conf->exists('selfservice-recent-did-age'));
2566
2567   my $search = { 'custnum' => $custnum };
2568   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2569   my $cust_main = qsearchs('cust_main', $search )
2570     or return { 'error' => "unknown custnum $custnum" };
2571
2572 # does it make more sense to just run one sql query for this instead of all the
2573 # insanity below? would increase performance greately for large data sets?
2574   my @svc_phone = ();
2575   foreach my $cust_pkg ( $cust_main->ncancelled_pkgs ) {
2576         my @part_svc = $cust_pkg->part_svc;
2577         foreach my $part_svc ( @part_svc ) {
2578             if($part_svc->svcdb eq 'svc_phone'){
2579                 my @cust_pkg_svc = @{$part_svc->cust_pkg_svc};
2580                 foreach my $cust_pkg_svc ( @cust_pkg_svc ) {
2581                     push @svc_phone, $cust_pkg_svc->svc_x
2582                         if $cust_pkg_svc->date_inserted >= $age_threshold;
2583                 }
2584             }
2585         }
2586   }
2587
2588   my $csv;
2589   my $xls;
2590   my($xls_r,$xls_c) = (0,0);
2591   my $xls_workbook;
2592   my $content = '';
2593   my @fields = qw( countrycode phonenum pin sip_password phone_name );
2594   if($p->{'format'} eq 'csv') {
2595     $csv = new Text::CSV_XS { 'always_quote' => 1,
2596                                  'eol'          => "\n",
2597                                 };
2598     return { 'error' => 'Unable to create CSV' } unless $csv->combine(@fields);
2599     $content .= $csv->string;
2600   }
2601   elsif($p->{'format'} eq 'xls') {
2602     my $XLS1 = new IO::Scalar \$content;
2603     $xls_workbook = Spreadsheet::WriteExcel->new($XLS1) 
2604         or return { 'error' => "Error opening .xls file: $!" };
2605     $xls = $xls_workbook->add_worksheet('DIDs');
2606     foreach ( @fields ) {
2607         $xls->write(0,$xls_c++,$_);
2608     }
2609     $xls_r++;
2610   }
2611
2612   foreach my $svc_phone ( @svc_phone ) {
2613     my @cols = map { $svc_phone->$_ } @fields;
2614     if($p->{'format'} eq 'csv') {
2615         return { 'error' => 'Unable to create CSV' } 
2616             unless $csv->combine(@cols);
2617         $content .= $csv->string;
2618     }
2619     elsif($p->{'format'} eq 'xls') {
2620         $xls_c = 0;
2621         foreach ( @cols ) {
2622             $xls->write($xls_r,$xls_c++,$_);
2623         }
2624         $xls_r++;
2625     }
2626   }
2627
2628   $xls_workbook->close() if $p->{'format'} eq 'xls';
2629   
2630   { content => $content, format => $p->{'format'}, };
2631 }
2632
2633 sub get_ticket {
2634   my $p = shift;
2635   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2636   return { 'error' => $session } if $context eq 'error';
2637
2638   warn "$me get_ticket: initializing ticket system\n" if $DEBUG;
2639   FS::TicketSystem->init();
2640   return { 'error' => 'get_ticket configuration error' }
2641     if $FS::TicketSystem::system ne 'RT_Internal';
2642
2643   # check existence and ownership as part of this
2644   warn "$me get_ticket: fetching ticket\n" if $DEBUG;
2645   my $rt_session = FS::TicketSystem->session('');
2646   my $Ticket = FS::TicketSystem->get_ticket_object(
2647     $rt_session, 
2648     ticket_id => $p->{'ticket_id'},
2649     custnum => $custnum
2650   );
2651   return { 'error' => 'ticket not found' } if !$Ticket;
2652
2653   if ( length( $p->{'subject'} || '' ) ) {
2654     # subject change
2655     if ( $p->{'subject'} ne $Ticket->Subject ) {
2656       my ($val, $msg) = $Ticket->SetSubject($p->{'subject'});
2657       return { 'error' => "unable to set subject: $msg" } if !$val;
2658     }
2659   }
2660
2661   if(length($p->{'reply'})) {
2662     my @err_or_res = FS::TicketSystem->correspond_ticket(
2663       $rt_session,
2664       'ticket_id' => $p->{'ticket_id'},
2665       'content' => $p->{'reply'},
2666     );
2667
2668     return { 'error' => 'unable to reply to ticket' } 
2669     unless ( $err_or_res[0] != 0 && defined $err_or_res[2] );
2670   }
2671
2672   warn "$me get_ticket: getting ticket history\n" if $DEBUG;
2673   my $err_or_ticket = FS::TicketSystem->get_ticket(
2674     $rt_session,
2675     'ticket_id' => $p->{'ticket_id'},
2676   );
2677
2678   if ( !ref($err_or_ticket) ) { # there is no way this should ever happen
2679     warn "$me get_ticket: unsuccessful: $err_or_ticket\n"
2680       if $DEBUG;
2681     return { 'error' => $err_or_ticket };
2682   }
2683
2684   my @custs = @{$err_or_ticket->{'custs'}};
2685   my @txns = @{$err_or_ticket->{'txns'}};
2686   my @filtered_txns;
2687
2688   # superseded by check in get_ticket_object
2689   #return { 'error' => 'invalid ticket requested' } 
2690   #unless grep($_ eq $custnum, @custs);
2691
2692   foreach my $txn ( @txns ) {
2693     push @filtered_txns, $txn 
2694     if ($txn->{'type'} eq 'EmailRecord' 
2695       || $txn->{'type'} eq 'Correspond'
2696       || $txn->{'type'} eq 'Create');
2697   }
2698
2699   warn "$me get_ticket: successful: \n"
2700   if $DEBUG;
2701   return { 'error'     => '',
2702     'transactions' => \@filtered_txns,
2703     'ticket_fields' => $err_or_ticket->{'fields'},
2704     'ticket_id' => $p->{'ticket_id'},
2705   };
2706 }
2707
2708 sub adjust_ticket_priority {
2709   my $p = shift;
2710   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2711   return { 'error' => $session } if $context eq 'error';
2712
2713   warn "$me adjust_ticket_priority: initializing ticket system\n" if $DEBUG;
2714   FS::TicketSystem->init;
2715   my $ss_priority = FS::TicketSystem->selfservice_priority;
2716
2717   return { 'error' => 'adjust_ticket_priority configuration error' }
2718     if $FS::TicketSystem::system ne 'RT_Internal'
2719       or !$ss_priority;
2720
2721   my $values = $p->{'values'}; #hashref, id => priority value
2722   my %ticket_error;
2723
2724   foreach my $id (keys %$values) {
2725     warn "$me adjust_ticket_priority: fetching ticket $id\n" if $DEBUG;
2726     my $Ticket = FS::TicketSystem->get_ticket_object('',
2727       'ticket_id' => $id,
2728       'custnum'   => $custnum,
2729     );
2730     if ( !$Ticket ) {
2731       $ticket_error{$id} = 'ticket not found';
2732       next;
2733     }
2734     
2735   # RT API stuff--would we gain anything by wrapping this in FS::TicketSystem?
2736   # We're not going to implement it for RT_External.
2737     my $old_value = $Ticket->FirstCustomFieldValue($ss_priority);
2738     my $new_value = $values->{$id};
2739     next if $old_value eq $new_value;
2740
2741     warn "$me adjust_ticket_priority: updating ticket $id\n" if $DEBUG;
2742
2743     # AddCustomFieldValue works fine (replacing any existing value) if it's 
2744     # a single-valued custom field, which it should be.  If it's not, you're 
2745     # doing something wrong.
2746     my ($val, $msg);
2747     if ( length($new_value) ) {
2748       ($val, $msg) = $Ticket->AddCustomFieldValue( 
2749         Field => $ss_priority,
2750         Value => $new_value,
2751       );
2752     }
2753     else {
2754       ($val, $msg) = $Ticket->DeleteCustomFieldValue(
2755         Field => $ss_priority,
2756         Value => $old_value,
2757       );
2758     }
2759
2760     $ticket_error{$id} = $msg if !$val;
2761     warn "$me adjust_ticket_priority: $id: $msg\n" if $DEBUG and !$val;
2762   }
2763   return { 'error' => '',
2764            'ticket_error' => \%ticket_error,
2765            %{ customer_info($p) } # send updated customer info back
2766          }
2767 }
2768
2769 #--
2770
2771 sub _custoragent_session_custnum {
2772   my $p = shift;
2773
2774   my($context, $session, $custnum);
2775   if ( $p->{'session_id'} ) {
2776
2777     $context = 'customer';
2778     $session = _cache->get($p->{'session_id'})
2779       or return ( 'error' => "Can't resume session" ); #better error message
2780     $custnum = $session->{'custnum'};
2781
2782   } elsif ( $p->{'agent_session_id'} ) {
2783
2784     $context = 'agent';
2785     my $agent_cache = new FS::ClientAPI_SessionCache( {
2786       'namespace' => 'FS::ClientAPI::Agent',
2787     } );
2788     $session = $agent_cache->get($p->{'agent_session_id'})
2789       or return ( 'error' => "Can't resume session" ); #better error message
2790     $custnum = $p->{'custnum'};
2791
2792   } else {
2793     $context = 'error';
2794     return ( 'error' => "Can't resume session" ); #better error message
2795   }
2796
2797   ($context, $session, $custnum);
2798
2799 }
2800
2801 1;
2802