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