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