Revert "RT# 39340 - configured the minimal selfservice to get mac address from radius...
[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   my $cust_payby = qsearchs('cust_payby', {
1731                               'custnum'      => $custnum,
1732                               'custpaybynum' => $p->{'custpaybynum'},
1733                            })
1734     or return { 'error' => 'unknown custpaybynum '. $p->{'custpaybynum'} };
1735
1736   my $cust_main = qsearchs( 'cust_main', {custnum => $cust_payby->custnum} )
1737     or return { 'error' => 'unknown custnum '.$cust_payby->custnum };
1738
1739   foreach my $field (
1740     qw( weight payby payinfo paycvv paydate payname paystate paytype payip )
1741   ) {
1742     next unless exists($p->{$field});
1743     $cust_payby->set($field,$p->{$field});
1744   }
1745   $cust_payby->set( 'paymask' => $cust_payby->mask_payinfo );
1746
1747   # Update column if given a value, and the given value wasn't
1748   # the value generated by $cust_main->masked($column);
1749   $cust_main->set( $_, $p->{$_} )
1750     for grep{ $p->{$_} !~ /^x/i; }
1751         grep{ exists $p->{$_} }
1752         qw/ss stateid/;
1753
1754   # Perform updates within a transaction
1755   local $FS::UID::AutoCommit = 0;
1756
1757   if ( my $error = $cust_payby->replace || $cust_main->replace ) {
1758     dbh->rollback;
1759     return { error => $error };
1760   }
1761
1762   dbh->commit;
1763   return { custpaybynum => $cust_payby->custpaybynum };
1764 }
1765
1766 sub verify_payby {
1767   my $p = shift;
1768
1769   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1770   return { 'error' => $session } if $context eq 'error';
1771
1772   my $cust_payby = qsearchs('cust_payby', {
1773                               'custnum'      => $custnum,
1774                               'custpaybynum' => $p->{'custpaybynum'},
1775                            })
1776     or return { 'error' => 'unknown custpaybynum '. $p->{'custpaybynum'} };
1777
1778   return { 'error' => $cust_payby->verify };
1779   
1780 }
1781
1782 sub delete_payby {
1783   my $p = shift;
1784
1785   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1786   return { 'error' => $session } if $context eq 'error';
1787
1788   my $cust_payby = qsearchs('cust_payby', {
1789                               'custnum'      => $custnum,
1790                               'custpaybynum' => $p->{'custpaybynum'},
1791                            })
1792     or return { 'error' => 'unknown custpaybynum '. $p->{'custpaybynum'} };
1793
1794   my $conf = new FS::Conf;
1795   if (($cust_payby->payby eq "DCHK" || $cust_payby->payby eq "CHEK") && $conf->exists('selfservice-ACH_info_readonly')) {
1796     return { 'error' => "Sorry you do not have permission to delete bank information." };
1797   }
1798   else {
1799     return { 'error' => $cust_payby->delete };
1800   }
1801 }
1802
1803 sub cancel {
1804   my $p = shift;
1805   my $session = _cache->get($p->{'session_id'})
1806     or return { 'error' => "Can't resume session" }; #better error message
1807
1808   my $custnum = $session->{'custnum'};
1809
1810   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
1811     or return { 'error' => "unknown custnum $custnum" };
1812
1813   my @errors = $cust_main->cancel( 'quiet'=>1 );
1814
1815   my $error = scalar(@errors) ? join(' / ', @errors) : '';
1816
1817   return { 'error' => $error };
1818
1819 }
1820
1821 sub pkg_info {
1822   my $p = shift;
1823
1824   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1825   return { 'error' => $session } if $context eq 'error';
1826
1827   my $pkg = qsearchs({
1828     'table'     => 'cust_pkg',
1829     'addl_from' => 'LEFT JOIN part_pkg USING ( pkgpart )',
1830     'hashref'   => {
1831                       'custnum' => $custnum,
1832                       'pkgnum'  => $p->{'pkgnum'},
1833                    },
1834   })
1835     or return {'error' => 'unknown pkg num $pkgnum'};
1836
1837   return {
1838         pkg_label => $pkg->pkg,
1839         pkgpart   => $pkg->pkgpart,
1840         classnum  => $pkg->classnum,
1841   };
1842
1843 }
1844
1845 sub list_pkgs {
1846   my $p = shift;
1847
1848   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1849   return { 'error' => $session } if $context eq 'error';
1850
1851   my $search = { 'custnum' => $custnum };
1852   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1853   my $cust_main = qsearchs('cust_main', $search )
1854     or return { 'error' => "unknown custnum $custnum" };
1855
1856   my $conf = new FS::Conf;
1857   my $immutable = $conf->exists('selfservice_immutable-package');
1858   
1859 # the duplication below is necessary:
1860 # 1. to maintain the current buggy behaviour wrt the cust_pkg and part_pkg
1861 # hashes overwriting each other (setup and no_auto fields). Fixing that is a
1862 # non-backwards-compatible change breaking the software of anyone using the API
1863 # instead of the stock selfservice
1864 # 2. to return cancelled packages as well - for wholesale and non-wholesale
1865   if( $conf->exists('selfservice_server-view-wholesale') ) {
1866     return { 'svcnum'   => $session->{'svcnum'},
1867             'custnum'  => $custnum,
1868             'cust_pkg' => [ map {
1869                           { $_->hash,
1870                             immutable => $immutable,
1871                             part_pkg => [ map $_->hashref, $_->part_pkg ],
1872                             part_svc =>
1873                               [ map $_->hashref, $_->available_part_svc ],
1874                             cust_svc => 
1875                               [ map { my $ref = { $_->hash,
1876                                                   label => [ $_->label ],
1877                                                 };
1878                                       $ref->{_password} = $_->svc_x->_password
1879                                         if $context eq 'agent'
1880                                         && $conf->exists('agent-showpasswords')
1881                                         && $_->part_svc->svcdb eq 'svc_acct';
1882                                       $ref;
1883                                     } $_->cust_svc
1884                               ],
1885                           };
1886                         } $cust_main->cust_pkg
1887                   ],
1888     'small_custview' =>
1889       small_custview( $cust_main, $conf->config('countrydefault') ),
1890     'wholesale_view' => 1,
1891     'login_svcpart' => [ $conf->config('selfservice_server-login_svcpart') ],
1892     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1893     'lnp' => $conf->exists('svc_phone-lnp'),
1894       };
1895   }
1896
1897   { 'svcnum'   => $session->{'svcnum'},
1898     'custnum'  => $custnum,
1899     'cust_pkg' => [ map {
1900                           my $primary_cust_svc = $_->primary_cust_svc;
1901                           +{ $_->hash,
1902                             $_->part_pkg->hash,
1903                             immutable   => $immutable,
1904                             pkg_label   => $_->pkg_locale,
1905                             status      => $_->status,
1906                             statuscolor => $_->statuscolor,
1907                             part_svc =>
1908                               [ map { $_->hashref }
1909                                   grep { $_->selfservice_access ne 'hidden' }
1910                                     $_->available_part_svc
1911                               ],
1912                             cust_svc => 
1913                               [ map { my $ref = { $_->hash,
1914                                                   label => [ $_->label ],
1915                                                 };
1916                                       $ref->{_password} = $_->svc_x->_password
1917                                         if $context eq 'agent'
1918                                         && $conf->exists('agent-showpasswords')
1919                                         && $_->part_svc->svcdb eq 'svc_acct';
1920                                       $ref->{svchash} = { $_->svc_x->hash } if 
1921                                         $_->part_svc->svcdb eq 'svc_phone';
1922                                       $ref->{svchash}->{svcpart} =  $_->part_svc->svcpart
1923                                         if $_->part_svc->svcdb eq 'svc_phone'; # hack
1924                                       $ref;
1925                                     }
1926                                   grep { $_->part_svc->selfservice_access ne 'hidden' }
1927                                     $_->cust_svc
1928                               ],
1929                             primary_cust_svc =>
1930                               $primary_cust_svc
1931                                 ? { $primary_cust_svc->hash,
1932                                     label => [ $primary_cust_svc->label ],
1933                                     finger => $primary_cust_svc->svc_x->finger, #uuh
1934                                     $primary_cust_svc->part_svc->hash,
1935                                   }
1936                                 : {}, #'' ?
1937                           };
1938                         } $cust_main->ncancelled_pkgs
1939                   ],
1940     'small_custview' =>
1941       small_custview( $cust_main, $conf->config('countrydefault') ),
1942     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
1943   };
1944
1945 }
1946
1947 sub list_svcs {
1948   my $p = shift;
1949
1950   my($context, $session, $custnum) = _custoragent_session_custnum($p);
1951   return { 'error' => $session } if $context eq 'error';
1952
1953   my $conf = new FS::Conf;
1954
1955   my $hide_usage = $conf->exists('selfservice_hide-usage') ? 1 : 0;
1956   my $search = { 'custnum' => $custnum };
1957   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
1958   my $cust_main = qsearchs('cust_main', $search )
1959     or return { 'error' => "unknown custnum $custnum" };
1960
1961   my $pkgnum = $session->{'pkgnum'} || $p->{'pkgnum'} || '';
1962   if ( ! $pkgnum && $p->{'svcnum'} ) {
1963     my $cust_svc = qsearchs('cust_svc', { 'svcnum' => $p->{'svcnum'} } );
1964     $pkgnum = $cust_svc->pkgnum if $cust_svc;
1965   }
1966
1967   my @cust_svc = ();
1968   my @cust_pkg_usage = ();
1969   foreach my $cust_pkg ( $p->{'ncancelled'} 
1970                          ? $cust_main->ncancelled_pkgs
1971                          : $cust_main->unsuspended_pkgs ) {
1972     next if $pkgnum && $cust_pkg->pkgnum != $pkgnum;
1973     push @cust_svc, @{[ $cust_pkg->cust_svc ]}; #@{[ ]} to force array context
1974     push @cust_pkg_usage, $cust_pkg->cust_pkg_usage;
1975   }
1976
1977   @cust_svc = grep { $_->part_svc->selfservice_access ne 'hidden' } @cust_svc;
1978   my %usage_pools;
1979   if (!$hide_usage) {
1980     foreach (@cust_pkg_usage) {
1981       my $part = $_->part_pkg_usage;
1982       my $tag = $part->description . ($part->shared ? 1 : 0);
1983       my $row = $usage_pools{$tag} 
1984             ||= [ $part->description, 0, 0, $part->shared ? 1 : 0 ];
1985       $row->[1] += sprintf('%.1f', $_->minutes); # minutes remaining
1986       $row->[2] += $part->minutes; # minutes total
1987     }
1988   } # otherwise just leave them empty
1989
1990   if ( $p->{'svcdb'} ) {
1991     my $svcdb = ref($p->{'svcdb'}) eq 'HASH'
1992                   ? $p->{'svcdb'}
1993                   : ref($p->{'svcdb'}) eq 'ARRAY'
1994                     ? { map { $_=>1 } @{ $p->{'svcdb'} } }
1995                     : { $p->{'svcdb'} => 1 };
1996     @cust_svc = grep $svcdb->{ $_->part_svc->svcdb }, @cust_svc
1997   }
1998
1999   #@svc_x = sort { $a->domain cmp $b->domain || $a->username cmp $b->username }
2000   #              @svc_x;
2001
2002   my @svcs; # stuff to return to the client
2003   my %bytes_used_total; # for _used columns only
2004   foreach my $cust_svc (@cust_svc) {
2005     my $svc_x = $cust_svc->svc_x;
2006     my($label, $value) = $cust_svc->label;
2007     my $part_svc = $cust_svc->part_svc;
2008     my $svcdb = $part_svc->svcdb;
2009     my $cust_pkg = $cust_svc->cust_pkg;
2010     my $part_pkg = $cust_pkg->part_pkg;
2011
2012     my %hash = (
2013       'svcnum'         => $cust_svc->svcnum,
2014       'display_svcnum' => $cust_svc->display_svcnum,
2015       'svcdb'          => $svcdb,
2016       'label'          => $label,
2017       'value'          => $value,
2018       'pkg_label'      => $cust_pkg->pkg_locale,
2019       'pkg_status'     => $cust_pkg->status,
2020       'readonly'       => ($part_svc->selfservice_access eq 'readonly'),
2021     );
2022
2023     # would it make sense to put this in a svc_* method?
2024
2025     if (!$hide_usage and grep(/^$svcdb$/, qw(svc_acct svc_broadband)) and $part_svc->part_export_usage) {
2026       my $last_bill = $cust_pkg->last_bill || 0;
2027       my $now = time;
2028       my $up_used = $cust_svc->attribute_since_sqlradacct($last_bill,$now,'AcctInputOctets');
2029       my $down_used = $cust_svc->attribute_since_sqlradacct($last_bill,$now,'AcctOutputOctets');
2030       %hash = (
2031         %hash,
2032         'seconds_used'    => $cust_svc->seconds_since_sqlradacct($last_bill,$now),
2033         'upbytes_used'    => display_bytecount($up_used),
2034         'downbytes_used'  => display_bytecount($down_used),
2035         'totalbytes_used' => display_bytecount($up_used + $down_used)
2036       );
2037       $bytes_used_total{'seconds_used'} += $hash{'seconds_used'};
2038       $bytes_used_total{'upbytes_used'} += $up_used;
2039       $bytes_used_total{'downbytes_used'} += $down_used;
2040       $bytes_used_total{'totalbytes_used'} += $up_used + $down_used;
2041     }
2042
2043     if ( $svcdb eq 'svc_acct' ) {
2044       foreach (qw(username email finger seconds)) {
2045         $hash{$_} = $svc_x->$_;
2046       }
2047
2048       if (!$hide_usage) {
2049         %hash = (
2050           %hash,
2051           'upbytes'    => display_bytecount($svc_x->upbytes),
2052           'downbytes'  => display_bytecount($svc_x->downbytes),
2053           'totalbytes' => display_bytecount($svc_x->totalbytes),
2054
2055           'recharge_amount'  => $part_pkg->option('recharge_amount',1),
2056           'recharge_seconds' => $part_pkg->option('recharge_seconds',1),
2057           'recharge_upbytes'    =>
2058             display_bytecount($part_pkg->option('recharge_upbytes',1)),
2059           'recharge_downbytes'  =>
2060             display_bytecount($part_pkg->option('recharge_downbytes',1)),
2061           'recharge_totalbytes' =>
2062             display_bytecount($part_pkg->option('recharge_totalbytes',1)),
2063           # more...
2064         );
2065       }
2066
2067     } elsif ( $svcdb eq 'svc_dsl' ) {
2068
2069       $hash{'phonenum'} = $svc_x->phonenum;
2070       if ( $svc_x->first || $svc_x->get('last') || $svc_x->company ) {
2071         $hash{'name'} = $svc_x->first. ' '. $svc_x->get('last');
2072         $hash{'name'} = $svc_x->company. ' ('. $hash{'name'}. ')'
2073           if $svc_x->company;
2074       } else {
2075         $hash{'name'} = $cust_main->name;
2076       }
2077       # no usage to hide here
2078
2079     } elsif ( $svcdb eq 'svc_phone' or $svcdb eq 'svc_pbx' ) {
2080       if (!$hide_usage) {
2081         # could potentially show lots of things...
2082         $hash{'outbound'} = 1;
2083         $hash{'inbound'}  = 0;
2084         if ( $svcdb eq 'svc_phone' ) {
2085           if ( $part_pkg->plan eq 'voip_inbound' ) {
2086             $hash{'outbound'} = 0;
2087             $hash{'inbound'}  = 1;
2088           } elsif ( $part_pkg->option('selfservice_inbound_format')
2089                 or  $conf->config('selfservice-default_inbound_cdr_format')
2090           ) {
2091             $hash{'inbound'}  = 1;
2092           }
2093         }
2094         foreach (qw(inbound outbound)) {
2095           # hmm...we can't filter by status here, because there might
2096           # not be cdr_terminations at all.  have to go by date.
2097           # find all since the last bill date.
2098           # XXX cdr types?  we are going to need them.
2099           if ( $hash{$_} ) {
2100             my $sum_cdr = $svc_x->sum_cdrs(
2101               'inbound' => ( $_ eq 'inbound' ? 1 : 0 ),
2102               'begin'   => ($cust_pkg->last_bill || 0),
2103               'nonzero' => 1,
2104               'disable_charged_party' => 1,
2105             );
2106             $hash{$_} = $sum_cdr->hashref;
2107           }
2108         }
2109       } # not hiding usage
2110     } # svcdb
2111
2112     push @svcs, \%hash;
2113   } # foreach $cust_svc
2114
2115   foreach my $field (keys %bytes_used_total) {
2116     if ($field =~ /bytes/) {
2117       $bytes_used_total{$field} = display_bytecount($bytes_used_total{$field});
2118     }
2119   }
2120
2121   return { 
2122     'svcnum'   => $session->{'svcnum'},
2123     'custnum'  => $custnum,
2124     'date_format' => $conf->config('date_format') || '%m/%d/%Y',
2125     'view_usage_nodomain' => $conf->exists('selfservice-view_usage_nodomain'),
2126     'svcs'     => \@svcs,
2127     'bytes_used_total' => \%bytes_used_total,
2128     'usage_pools' => [
2129       map { $usage_pools{$_} }
2130       sort { $a cmp $b }
2131       keys %usage_pools
2132     ],
2133     'hide_usage' => $hide_usage,
2134   };
2135
2136 }
2137
2138 sub _customer_svc_x {
2139   my($custnum, $svcnum, $table) = (shift, shift, shift);
2140   my $hashref = ref($svcnum) ? $svcnum : { 'svcnum' => $svcnum };
2141
2142   $custnum =~ /^(\d+)$/ or die "illegal custnum";
2143   my $search = " AND custnum = $1";
2144   #$search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
2145
2146   qsearchs( {
2147     'table'     => ($table || 'svc_acct'),
2148     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
2149                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) ',#.
2150                    #'LEFT JOIN cust_main USING ( custnum ) ',
2151     'hashref'   => $hashref,
2152     'extra_sql' => $search, #important
2153   } );
2154
2155 }
2156
2157 sub svc_status_html {
2158   my $p = shift;
2159
2160   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2161   return { 'error' => $session } if $context eq 'error';
2162
2163   #XXX only svc_dsl for now
2164   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl')
2165     or return { 'error' => "Service not found" };
2166
2167   my $html = $svc_x->getstatus_html;
2168
2169   return { 'html' => $html };
2170
2171 }
2172
2173 sub svc_status_hash {
2174   my $p = shift;
2175
2176   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2177   return { 'error' => $session } if $context eq 'error';
2178
2179   #XXX only svc_acct for now
2180   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct')
2181     or return { 'error' => "Service not found" };
2182
2183   my ( $html, $hashref ) = $svc_x->export_getstatus;
2184   return $hashref;
2185
2186 }
2187
2188 sub set_svc_status_hash    { _svc_method_X(shift, 'export_setstatus') }
2189 sub set_svc_status_listadd { _svc_method_X(shift, 'export_setstatus_listadd') }
2190 sub set_svc_status_listdel { _svc_method_X(shift, 'export_setstatus_listdel') }
2191 sub set_svc_status_vacationadd { _svc_method_X(shift, 'export_setstatus_vacationadd') }
2192 sub set_svc_status_vacationdel { _svc_method_X(shift, 'export_setstatus_vacationdel') }
2193
2194 sub _svc_method_X {
2195   my( $p, $method ) = @_;
2196
2197   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2198   return { 'error' => $session } if $context eq 'error';
2199
2200   #XXX only svc_acct for now
2201   my $svc_x = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct')
2202     or return { 'error' => "Service not found" };
2203
2204   warn "$method ". join(' / ', map "$_=>".$p->{$_}, keys %$p )
2205     if $DEBUG;
2206   my $error = $svc_x->$method($p); #$p? returns error?
2207   return { 'error' => $error } if $error;
2208
2209   return {}; #? { 'error' => '' }
2210
2211 }
2212
2213 sub acct_forward_info {
2214   my $p = shift;
2215
2216   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2217   return { 'error' => $session } if $context eq 'error';
2218
2219   my $svc_forward = _customer_svc_x( $custnum,
2220                                      { 'srcsvc' => $p->{'svcnum'} },
2221                                      'svc_forward',
2222                                    )
2223     or return { 'error' => '',
2224                 'dst'   => '',
2225               };
2226
2227   return { 'error' => '',
2228            'dst'   => $svc_forward->dst || $svc_forward->dstsvc_acct->email,
2229          };
2230
2231 }
2232
2233 sub process_acct_forward {
2234   my $p = shift;
2235   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2236   return { 'error' => $session } if $context eq 'error';
2237
2238   my $old = _customer_svc_x( $custnum,
2239                              { 'srcsvc' => $p->{'svcnum'} },
2240                              'svc_forward',
2241                            );
2242
2243   if ( $p->{'dst'} eq '' ) {
2244     if ( $old ) {
2245       my $error = $old->delete;
2246       return { 'error' => $error };
2247     }
2248     return { 'error' => '' };
2249   }
2250
2251   my $new = new FS::svc_forward { 'srcsvc' => $p->{'svcnum'},
2252                                   'dst'    => $p->{'dst'},
2253                                 };
2254
2255   my $error;
2256   if ( $old ) {
2257     $new->svcnum($old->svcnum);
2258     my $cust_svc = $old->cust_svc;
2259     $new->svcpart($old->svcpart);
2260     $new->pkgnuym($old->pkgnum);
2261     $error = $new->replace($old);
2262   } else {
2263     my $conf = new FS::Conf;
2264     $new->svcpart($conf->config('selfservice-svc_forward_svcpart'));
2265
2266     my $svc_acct = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_acct' )
2267       or return { 'error' => 'No service' }; #how would we even get here?
2268
2269     $new->pkgnum( $svc_acct->cust_svc->pkgnum );
2270
2271     $error = $new->insert;
2272   }
2273
2274   return { 'error' => $error };
2275
2276 }
2277
2278 sub list_dsl_devices {
2279   my $p = shift;
2280
2281   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2282   return { 'error' => $session } if $context eq 'error';
2283
2284   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2285     or return { 'error' => "Service not found" };
2286
2287   return {
2288     'devices' => [ map {
2289                          +{ 'mac_addr' => $_->mac_addr };
2290                        } $svc_dsl->dsl_device
2291                  ],
2292   };
2293
2294 }
2295
2296 sub add_dsl_device {
2297   my $p = shift;
2298
2299   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2300   return { 'error' => $session } if $context eq 'error';
2301
2302   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2303     or return { 'error' => "Service not found" };
2304
2305   return { 'error' => 'No MAC address supplied' }
2306     unless length($p->{'mac_addr'});
2307
2308   my $dsl_device = new FS::dsl_device { 'svcnum'   => $svc_dsl->svcnum,
2309                                         'mac_addr' => scalar($p->{'mac_addr'}),
2310                                       };
2311   my $error = $dsl_device->insert;
2312   return { 'error' => $error };
2313
2314 }
2315
2316 sub delete_dsl_device {
2317   my $p = shift;
2318
2319   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2320   return { 'error' => $session } if $context eq 'error';
2321
2322   my $svc_dsl = _customer_svc_x( $custnum, $p->{'svcnum'}, 'svc_dsl' )
2323     or return { 'error' => "Service not found" };
2324
2325   my $dsl_device = qsearchs('dsl_device', { 'svcnum'   => $svc_dsl->svcnum,
2326                                             'mac_addr' => scalar($p->{'mac_addr'}),
2327                                           }
2328                            )
2329     or return { 'error' => 'Unknown MAC address: '. $p->{'mac_addr'} };
2330
2331   my $error = $dsl_device->delete;
2332   return { 'error' => $error };
2333
2334 }
2335
2336 sub port_graph {
2337   my $p = shift;
2338   _usage_details( \&_port_graph, $p,
2339                   'svcdb' => 'svc_port',
2340                 );
2341 }
2342
2343 sub _port_graph {
2344   my($svc_port, $begin, $end) = @_;
2345   my @usage = ();
2346   my $pngOrError = $svc_port->graph_png( start=>$begin, end=> $end );
2347   push @usage, { 'png' => $pngOrError };
2348   (@usage);
2349 }
2350
2351 sub _list_svc_usage {
2352   my($svc_acct, $begin, $end) = @_;
2353   my @usage = ();
2354   foreach my $part_export ( 
2355     map { qsearch ( 'part_export', { 'exporttype' => $_ } ) }
2356     qw( sqlradius sqlradius_withdomain )
2357   ) {
2358     push @usage, @ { $part_export->usage_sessions($begin, $end, $svc_acct) };
2359   }
2360   (@usage);
2361 }
2362
2363 sub list_svc_usage {
2364   _usage_details(\&_list_svc_usage, @_);
2365 }
2366
2367 sub _list_support_usage {
2368   my($svc_acct, $begin, $end) = @_;
2369   my @usage = ();
2370   foreach ( grep { $begin <= $_->_date && $_->_date <= $end }
2371             qsearch('acct_rt_transaction', { 'svcnum' => $svc_acct->svcnum })
2372           ) {
2373     push @usage, { 'seconds'  => $_->seconds,
2374                    'support'  => $_->support,
2375                    '_date'    => $_->_date,
2376                    'id'       => $_->transaction_id,
2377                    'creator'  => $_->creator,
2378                    'subject'  => $_->subject,
2379                    'status'   => $_->status,
2380                    'ticketid' => $_->ticketid,
2381                  };
2382   }
2383   (@usage);
2384 }
2385
2386 sub list_support_usage {
2387   _usage_details(\&_list_support_usage, @_);
2388 }
2389
2390 sub _list_cdr_usage {
2391   # XXX CDR type support...
2392   # XXX any way to do a paged search on this?
2393   # we have to return the results all at once...
2394   my($svc_x, $begin, $end, %opt) = @_;
2395   map [ $_->downstream_csv(%opt, 'keeparray' => 1) ],
2396     $svc_x->get_cdrs(
2397       'begin' => $begin,
2398       'end'   => $end,
2399       'disable_charged_party' => 1,
2400       %opt
2401     );
2402 }
2403
2404 sub list_cdr_usage {
2405   my $p = shift;
2406   _usage_details( \&_list_cdr_usage, $p );
2407 }
2408
2409 sub _usage_details {
2410   my($callback, $p, %opt) = @_;
2411   my $conf = FS::Conf->new;
2412
2413   if ( $conf->exists('selfservice_hide-usage') ) {
2414     return { 'error' => 'Viewing usage is not allowed.' };
2415   }
2416
2417   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2418   return { 'error' => $session } if $context eq 'error';
2419
2420   my $search = { 'svcnum' => $p->{'svcnum'} };
2421   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2422
2423   my $cust_svc = qsearchs( 'cust_svc', $search );
2424   return { 'error' => 'No service selected in list_svc_usage' } 
2425     unless $cust_svc;
2426
2427   my $svc_x = $cust_svc->svc_x;
2428   my $svcdb = $svc_x->table;
2429   my $cust_pkg = $cust_svc->cust_pkg;
2430   my $freq     = $cust_pkg->part_pkg->freq;
2431   my %callback_opt;
2432   my $header = [];
2433   if ( $svcdb eq 'svc_phone' or $svcdb eq 'svc_pbx' ) {
2434     my $format = '';
2435     if ( $p->{inbound} ) {
2436       $format = $cust_pkg->part_pkg->option('selfservice_inbound_format') 
2437                 || $conf->config('selfservice-default_inbound_cdr_format')
2438                 || 'source_default';
2439       $callback_opt{inbound} = 1;
2440     } else {
2441       $format = $cust_pkg->part_pkg->option('selfservice_format')
2442                 || $conf->config('selfservice-default_cdr_format')
2443                 || 'default';
2444     }
2445
2446     $callback_opt{format} = $format;
2447     $callback_opt{use_clid} = 1;
2448     $header = [ split(',', FS::cdr::invoice_header($format) ) ];
2449   }
2450
2451   my $start    = $cust_pkg->setup;
2452   #my $end      = $cust_pkg->bill; # or time?
2453   my $end      = time;
2454
2455   unless ( $p->{beginning} ) {
2456     $p->{beginning} = $cust_pkg->last_bill;
2457     $p->{ending}    = $end;
2458   }
2459
2460   die "illegal beginning" if $p->{beginning} !~ /^\d*$/;
2461   die "illegal ending"    if $p->{ending}    !~ /^\d*$/;
2462
2463   my (@usage) = &$callback($svc_x, $p->{beginning}, $p->{ending}, 
2464     %callback_opt
2465   );
2466
2467   if ( $conf->exists('selfservice-hide_cdr_price') ) {
2468     # ugly kludge, I know
2469     my ($delete_col) = grep { $header->[$_] eq 'Price' } (0..scalar(@$header));
2470     if (defined $delete_col) {
2471       delete($_->[$delete_col]) foreach ($header, @usage);
2472     }
2473   }
2474
2475   #kinda false laziness with FS::cust_main::bill, but perhaps
2476   #we should really change this bit to DateTime and DateTime::Duration
2477   #
2478   #change this bit to use Date::Manip? CAREFUL with timezones (see
2479   # mailing list archive)
2480   my ($nsec,$nmin,$nhour,$nmday,$nmon,$nyear) =
2481     (localtime($p->{ending}) )[0,1,2,3,4,5];
2482   my ($psec,$pmin,$phour,$pmday,$pmon,$pyear) =
2483     (localtime($p->{beginning}) )[0,1,2,3,4,5];
2484
2485   if ( $freq =~ /^\d+$/ ) {
2486     $nmon += $freq;
2487     until ( $nmon < 12 ) { $nmon -= 12; $nyear++; }
2488     $pmon -= $freq;
2489     until ( $pmon >= 0 ) { $pmon += 12; $pyear--; }
2490   } elsif ( $freq =~ /^(\d+)w$/ ) {
2491     my $weeks = $1;
2492     $nmday += $weeks * 7;
2493     $pmday -= $weeks * 7;
2494   } elsif ( $freq =~ /^(\d+)d$/ ) {
2495     my $days = $1;
2496     $nmday += $days;
2497     $pmday -= $days;
2498   } elsif ( $freq =~ /^(\d+)h$/ ) {
2499     my $hours = $1;
2500     $nhour += $hours;
2501     $phour -= $hours;
2502   } else {
2503     return { 'error' => "unparsable frequency: ". $freq };
2504   }
2505   
2506   my $previous  = timelocal_nocheck($psec,$pmin,$phour,$pmday,$pmon,$pyear);
2507   my $next      = timelocal_nocheck($nsec,$nmin,$nhour,$nmday,$nmon,$nyear);
2508
2509   { 
2510     'error'     => '',
2511     'svcnum'    => $p->{svcnum},
2512     'beginning' => $p->{beginning},
2513     'ending'    => $p->{ending},
2514     'inbound'   => $p->{inbound},
2515     'previous'  => ($previous > $start) ? $previous : $start,
2516     'next'      => ($next < $end) ? $next : $end,
2517     'header'    => $header,
2518     'usage'     => \@usage,
2519   };
2520 }
2521
2522 sub order_pkg {
2523   my $p = shift;
2524
2525   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2526   return { 'error' => $session } if $context eq 'error';
2527
2528   my $search = { 'custnum' => $custnum };
2529   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2530   my $cust_main = qsearchs('cust_main', $search )
2531     or return { 'error' => "unknown custnum $custnum" };
2532
2533   my $status = $cust_main->status;
2534
2535   my %order_pkg_options = ();
2536   if ( $p->{locationnum} > 0 ) {
2537     $order_pkg_options{locationnum} = delete($p->{locationnum});
2538   } elsif ( $p->{address1} ) {
2539     $order_pkg_options{'cust_location'} = new FS::cust_location {
2540       map { $_ => $p->{$_} }
2541         qw( address1 address2 city county state zip country )
2542     };
2543   }
2544
2545   #false laziness w/ClientAPI/Signup.pm
2546
2547   my $cust_pkg = new FS::cust_pkg ( {
2548     'custnum'  => $custnum,
2549     'pkgpart'  => $p->{'pkgpart'},
2550     'quantity' => $p->{'quantity'} || 1,
2551   } );
2552   my $error = $cust_pkg->check;
2553   return { 'error' => $error } if $error;
2554
2555   my @svc = ();
2556   unless ( $p->{'svcpart'} eq 'none' ) {
2557
2558     my $svcdb;
2559     my $svcpart = '';
2560     if ( $p->{'svcpart'} =~ /^(\d+)$/ ) {
2561       $svcpart = $1;
2562       my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
2563       return { 'error' => "Unknown svcpart $svcpart" } unless $part_svc;
2564       $svcdb = $part_svc->svcdb;
2565     } else {
2566       $svcdb = 'svc_acct';
2567     }
2568     $svcpart ||= $cust_pkg->part_pkg->svcpart($svcdb);
2569
2570     my %fields = (
2571       'svc_acct'     => [ qw( username domsvc _password sec_phrase popnum ) ],
2572       'svc_domain'   => [ qw( domain ) ],
2573       'svc_phone'    => [ qw( phonenum pin sip_password phone_name ) ],
2574       'svc_external' => [ qw( id title ) ],
2575       'svc_pbx'      => [ qw( id title ) ],
2576     );
2577   
2578     my $svc_x = "FS::$svcdb"->new( {
2579       'svcpart'   => $svcpart,
2580       map { $_ => $p->{$_} } @{$fields{$svcdb}}
2581     } );
2582     
2583     if ( $svcdb eq 'svc_acct' && exists($p->{"snarf_machine1"}) ) {
2584       my @acct_snarf;
2585       my $snarfnum = 1;
2586       while ( length($p->{"snarf_machine$snarfnum"}) ) {
2587         my $acct_snarf = new FS::acct_snarf ( {
2588           'machine'   => $p->{"snarf_machine$snarfnum"},
2589           'protocol'  => $p->{"snarf_protocol$snarfnum"},
2590           'username'  => $p->{"snarf_username$snarfnum"},
2591           '_password' => $p->{"snarf_password$snarfnum"},
2592         } );
2593         $snarfnum++;
2594         push @acct_snarf, $acct_snarf;
2595       }
2596       $svc_x->child_objects( \@acct_snarf );
2597     }
2598     
2599     my $y = $svc_x->setdefault; # arguably should be in new method
2600     return { 'error' => $y } if $y && !ref($y);
2601   
2602     $error = $svc_x->check;
2603     return { 'error' => $error } if $error;
2604
2605     push @svc, $svc_x;
2606
2607   }
2608
2609   $error = $cust_main->order_pkg(
2610     'cust_pkg' => $cust_pkg,
2611     'svcs'     => \@svc,
2612     'noexport' => 1,
2613     %order_pkg_options,
2614   );
2615   return { 'error' => $error } if $error;
2616
2617   my $conf = new FS::Conf;
2618   if ( $conf->exists('signup_server-realtime') ) {
2619
2620     my $bill_error = _do_bop_realtime( $cust_main, $status, 'collect'=>$p->{run_bill_events} );
2621
2622     if ($bill_error) {
2623       $cust_pkg->cancel('quiet'=>1);
2624       return $bill_error;
2625     } else {
2626       $cust_pkg->reexport;
2627     }
2628
2629   } else {
2630     $cust_pkg->reexport;
2631   }
2632
2633   my $svcnum = $svc[0] ? $svc[0]->svcnum : '';
2634
2635   return { error=>'', pkgnum=>$cust_pkg->pkgnum, svcnum=>$svcnum };
2636
2637 }
2638
2639 sub change_pkg {
2640   my $p = shift;
2641
2642   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2643   return { 'error' => $session } if $context eq 'error';
2644
2645   my $conf = new FS::Conf;
2646   my $immutable = $conf->exists('selfservice_immutable-package');
2647   return { 'error' => "Package modification disabled" } if $immutable;
2648
2649   my $search = { 'custnum' => $custnum };
2650   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2651   my $cust_main = qsearchs('cust_main', $search )
2652     or return { 'error' => "unknown custnum $custnum" };
2653
2654   my $status = $cust_main->status;
2655   my $cust_pkg = qsearchs('cust_pkg', { 'pkgnum' => $p->{pkgnum} } )
2656     or return { 'error' => "unknown package $p->{pkgnum}" };
2657
2658   #if someone does need self-service package change of suspended packages,
2659   # figure out how to be more discriminating
2660   return { error=>"Can't change a suspended package", pkgnum=>$cust_pkg->pkgnum}
2661     if $cust_pkg->status eq 'suspended';
2662
2663   my $err_or_cust_pkg = $cust_pkg->change( 'pkgpart'  => $p->{'pkgpart'},
2664                                            'quantity' => $p->{'quantity'} || 1,
2665                                          );
2666   
2667   my $new_pkg = qsearchs('part_pkg', { 'pkgpart' => $p->{pkgpart} } )
2668     or return { 'error' => "unknown package $p->{pkgpart}" };
2669
2670   return { error=>$err_or_cust_pkg, pkgnum=>$cust_pkg->pkgnum }
2671     unless ref($err_or_cust_pkg);
2672
2673
2674   if ( $conf->exists('signup_server-realtime') ) {
2675
2676     my $bill_error = _do_bop_realtime( $cust_main, $status, 'no_invoice_void'=>1 );
2677
2678     if ($bill_error) {
2679       $err_or_cust_pkg->suspend;
2680       return $bill_error;
2681     } else {
2682       $err_or_cust_pkg->reexport;
2683     }
2684
2685   } else {  
2686     $err_or_cust_pkg->reexport;
2687   }
2688
2689   return { error => '', pkg => $new_pkg->pkg, pkgnum => $err_or_cust_pkg->pkgnum };
2690
2691 }
2692
2693 sub order_recharge {
2694   my $p = shift;
2695
2696   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2697   return { 'error' => $session } if $context eq 'error';
2698
2699   my $search = { 'custnum' => $custnum };
2700   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
2701   my $cust_main = qsearchs('cust_main', $search )
2702     or return { 'error' => "unknown custnum $custnum" };
2703
2704   my $status = $cust_main->status;
2705   my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $p->{'svcnum'} } )
2706     or return { 'error' => "unknown service " . $p->{'svcnum'} };
2707
2708   my $svc_x = $cust_svc->svc_x;
2709   my $part_pkg = $cust_svc->cust_pkg->part_pkg;
2710
2711   my %vhash =
2712     map { $_ =~ /^recharge_(.*)$/; $1, $part_pkg->option($_, 1) } 
2713     qw ( recharge_seconds recharge_upbytes recharge_downbytes
2714          recharge_totalbytes );
2715   my $amount = $part_pkg->option('recharge_amount', 1); 
2716   
2717   my ($l, $v, $d) = $cust_svc->label;  # blah
2718   my $pkg = "Recharge $v"; 
2719
2720   my $bill_error = $cust_main->charge($amount, $pkg,
2721      "time: $vhash{seconds}, up: $vhash{upbytes}," . 
2722      "down: $vhash{downbytes}, total: $vhash{totalbytes}",
2723      $part_pkg->taxclass); #meh
2724
2725   my $conf = new FS::Conf;
2726   if ( $conf->exists('signup_server-realtime') && !$bill_error ) {
2727
2728     $bill_error = _do_bop_realtime( $cust_main, $status );
2729
2730     if ($bill_error) {
2731       return $bill_error;
2732     } else {
2733       my $error = $svc_x->recharge (\%vhash);
2734       return { 'error' => $error } if $error;
2735     }
2736
2737   } else {  
2738     my $error = $bill_error;
2739     $error ||= $svc_x->recharge (\%vhash);
2740     return { 'error' => $error } if $error;
2741   }
2742
2743   return { error => '', svc => $cust_svc->part_svc->svc };
2744
2745 }
2746
2747 sub _do_bop_realtime {
2748   my ($cust_main, $status, %opt) = @_;
2749
2750   my $old_balance = $cust_main->balance;
2751
2752   my @cust_bill;
2753   my $bill_error = $cust_main->bill(
2754     'return_bill'   => \@cust_bill,
2755   );
2756
2757   $bill_error ||= $cust_main->apply_payments_and_credits;
2758
2759   $bill_error ||= $cust_main->realtime_collect('selfservice' => 1);
2760
2761   if (    $cust_main->balance > $old_balance
2762        && $cust_main->balance > 0
2763        && ( $cust_main->has_cust_payby_auto || $status eq 'suspended' )
2764      )
2765   {
2766     unless ( $opt{'no_invoice_void'} ) {
2767
2768       #this used to apply a credit, but now we can void invoices...
2769       foreach my $cust_bill (@cust_bill) {
2770         my $voiderror = $cust_bill->void('automatic payment failed');
2771         warn "Error voiding cust bill after decline: $voiderror" if $voiderror;
2772       }
2773
2774     }
2775
2776     return { 'error' => '_decline', 'bill_error' => $bill_error };
2777   }
2778
2779   if ( $opt{'collect'} ) {
2780     my $collect_error = $cust_main->collect();
2781     return { 'error' => '_decline', 'bill_error' => $collect_error }
2782      if $collect_error; #?
2783   }
2784
2785   '';
2786 }
2787
2788 sub renew_info {
2789   my $p = shift;
2790
2791   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2792   return { 'error' => $session } if $context eq 'error';
2793
2794   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2795     or return { 'error' => "unknown custnum $custnum" };
2796
2797   my @cust_pkg = sort { $a->bill <=> $b->bill }
2798                  grep { $_->part_pkg->freq ne '0' }
2799                  $cust_main->ncancelled_pkgs;
2800
2801   #return { 'error' => 'No active packages to renew.' } unless @cust_pkg;
2802
2803   my $total = $cust_main->balance;
2804
2805   my @array = map {
2806                     my $bill = $_->bill;
2807                     $total += $_->part_pkg->base_recur($_, \$bill);
2808                     my $renew_date = $_->part_pkg->add_freq($_->bill);
2809                     {
2810                       'pkgnum'             => $_->pkgnum,
2811                       'amount'             => sprintf('%.2f', $total),
2812                       'bill_date'          => $_->bill,
2813                       'bill_date_pretty'   => time2str('%x', $_->bill),
2814                       'renew_date'         => $renew_date,
2815                       'renew_date_pretty'  => time2str('%x', $renew_date),
2816                       'expire_date'        => $_->expire,
2817                       'expire_date_pretty' => time2str('%x', $_->expire),
2818                     };
2819                   }
2820                   @cust_pkg;
2821
2822   return { 'dates' => \@array };
2823
2824 }
2825
2826 sub payment_info_renew_info {
2827   my $p = shift;
2828   my $renew_info   = renew_info($p);
2829   my $payment_info = payment_info($p);
2830   return { %$renew_info,
2831            %$payment_info,
2832          };
2833 }
2834
2835 sub order_renew {
2836   my $p = shift;
2837
2838   my($context, $session, $custnum) = _custoragent_session_custnum($p);
2839   return { 'error' => $session } if $context eq 'error';
2840
2841   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2842     or return { 'error' => "unknown custnum $custnum" };
2843
2844   my $date = $p->{'date'};
2845
2846   my $now = time;
2847
2848   #freeside-daily -n -d $date fs_daily $custnum
2849   $cust_main->bill_and_collect( 'time'         => $date,
2850                                 'invoice_time' => $now,
2851                                 'actual_time'  => $now,
2852                                 'check_freq'   => '1d',
2853                               );
2854
2855   return { 'error' => '' };
2856
2857 }
2858
2859 sub suspend_pkg {
2860   my $p = shift;
2861   my $session = _cache->get($p->{'session_id'})
2862     or return { 'error' => "Can't resume session" }; #better error message
2863
2864   my $custnum = $session->{'custnum'};
2865
2866   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2867     or return { 'error' => "unknown custnum $custnum" };
2868
2869   my $conf = new FS::Conf;
2870   my $reasonnum = 
2871     $conf->config('selfservice-self_suspend_reason', $cust_main->agentnum)
2872       or return { 'error' => 'Permission denied' };
2873
2874   my $pkgnum = $p->{'pkgnum'};
2875
2876   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2877                                         'pkgnum'  => $pkgnum,   } )
2878     or return { 'error' => "unknown pkgnum $pkgnum" };
2879
2880   my $error = $cust_pkg->suspend(reason => $reasonnum);
2881   return { 'error' => $error };
2882
2883 }
2884
2885 sub cancel_pkg {
2886   my $p = shift;
2887   my $session = _cache->get($p->{'session_id'})
2888     or return { 'error' => "Can't resume session" }; #better error message
2889
2890   my $custnum = $session->{'custnum'};
2891   my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
2892     or return { 'error' => "unknown custnum $custnum" };
2893
2894   my $pkgnum = $p->{'pkgnum'};
2895   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
2896                                         'pkgnum'  => $pkgnum,   } )
2897     or return { 'error' => "unknown pkgnum $pkgnum" };
2898
2899   my $error = $cust_pkg->cancel( 'quiet' => 1,
2900                                  'date'  => $p->{'date'},
2901                                );
2902   return { 'error' => $error };
2903 }
2904
2905 sub provision_phone {
2906   my $p = shift;
2907   my @bulkdid;
2908   @bulkdid = @{$p->{'bulkdid'}} if $p->{'bulkdid'};
2909
2910   #editing an existing phone number
2911   if ( $p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ ) {
2912       my($context, $session, $custnum) = _custoragent_session_custnum($p);
2913       return { 'error' => $session } if $context eq 'error';
2914     
2915       my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
2916       return { 'error' => 'service not found' } unless $svc_phone;
2917       return { 'error' => 'invalid svcnum' } 
2918         if $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum != $custnum;
2919
2920       $svc_phone->email($p->{'email'}) 
2921         if $svc_phone->email ne $p->{'email'} && $p->{'email'} =~ /^([\w\.\d@]+|)$/;
2922       $svc_phone->forwarddst($p->{'forwarddst'}) 
2923         if $svc_phone->forwarddst ne $p->{'forwarddst'} 
2924             && $p->{'forwarddst'} =~ /^(\d+|)$/;
2925       return { 'error' => $svc_phone->replace };
2926  }
2927
2928   # single DID LNP
2929   unless ( $p->{'lnp'} ) {
2930     $p->{'lnp_desired_due_date'} = parse_datetime($p->{'lnp_desired_due_date'});
2931     $p->{'lnp_status'} = "portingin";
2932     return _provision( 'FS::svc_phone',
2933                   [qw(lnp_desired_due_date lnp_other_provider 
2934                     lnp_other_provider_account phonenum countrycode lnp_status)],
2935                   [qw(phonenum countrycode)],
2936                   $p,
2937                   @_
2938                 );
2939   }
2940
2941   # single DID order (the usual case)
2942   unless (scalar(@bulkdid)) {
2943     return _provision( 'FS::svc_phone',
2944                   [qw(phonenum countrycode)],
2945                   [qw(phonenum countrycode)],
2946                   $p,
2947                   @_
2948                 );
2949   }
2950
2951   # bulk DID order case
2952   my $error;
2953   foreach my $did ( @bulkdid ) {
2954     $did =~ s/[^0-9]//g;
2955     $error = _provision( 'FS::svc_phone',
2956               [qw(phonenum countrycode)],
2957               [qw(phonenum countrycode)],
2958               {
2959                 'pkgnum' => $p->{'pkgnum'},
2960                 'svcpart' => $p->{'svcpart'},
2961                 'phonenum' => $did,
2962                 'countrycode' => $p->{'countrycode'},
2963                 'session_id' => $p->{'session_id'},
2964               }
2965             );
2966     return $error if ($error->{'error'} && length($error->{'error'}) > 1);
2967   }
2968   { 'bulkdid' => [ @bulkdid ], 'svc' => $error->{'svc'} }
2969 }
2970
2971 sub provision_pbx {
2972   my $p = shift;
2973   warn "provision_pbx called\n"
2974     if $DEBUG;
2975
2976   warn "provision_pbx calling _provision\n"
2977     if $DEBUG;
2978   _provision( 'FS::svc_pbx',
2979               [qw(id title max_extensions max_simultaneous ip_addr)],
2980               [qw(id title max_extensions max_simultaneous ip_addr)],
2981               $p,
2982               @_
2983             );
2984 }
2985
2986 sub provision_acct {
2987   my $p = shift;
2988   warn "provision_acct called\n"
2989     if $DEBUG;
2990
2991   return { 'error' => gettext('passwords_dont_match') }
2992     if $p->{'_password'} ne $p->{'_password2'};
2993   return { 'error' => gettext('empty_password') }
2994     unless length($p->{'_password'});
2995  
2996   if ($p->{'domsvc'}) {
2997     my %domains = domain_select_hash FS::svc_acct(map { $_ => $p->{$_} }
2998                                                   qw ( svcpart pkgnum ) );
2999     return { 'error' => gettext('invalid_domain') }
3000       unless ($domains{$p->{'domsvc'}});
3001   }
3002
3003   warn "provision_acct calling _provision\n"
3004     if $DEBUG;
3005   _provision( 'FS::svc_acct',
3006               [qw(username _password domsvc)],
3007               [qw(username _password domsvc)],
3008               $p,
3009               @_
3010             );
3011 }
3012
3013 sub provision_external {
3014   my $p = shift;
3015   #_provision( 'FS::svc_external', [qw(id title)], [qw(id title)], $p, @_ );
3016   _provision( 'FS::svc_external',
3017               [],
3018               [qw(id title)],
3019               $p,
3020               @_
3021             );
3022 }
3023
3024 sub provision_forward {
3025   my $p = shift;
3026   _provision( 'FS::svc_forward',
3027               ['srcsvc','src','dstsvc','dst'],
3028               [],
3029               $p,
3030             );
3031 }
3032
3033 sub _provision {
3034   my( $class, $fields, $return_fields, $p ) = splice(@_, 0, 4);
3035   warn "_provision called for $class\n"
3036     if $DEBUG;
3037
3038   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3039   return { 'error' => $session } if $context eq 'error';
3040
3041   my $search = { 'custnum' => $custnum };
3042   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3043   my $cust_main = qsearchs('cust_main', $search )
3044     or return { 'error' => "unknown custnum $custnum" };
3045
3046   my $pkgnum = $p->{'pkgnum'};
3047
3048   warn "searching for custnum $custnum pkgnum $pkgnum\n"
3049     if $DEBUG;
3050   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
3051                                         'pkgnum'  => $pkgnum,
3052                                                                } )
3053     or return { 'error' => "unknown pkgnum $pkgnum" };
3054
3055   warn "searching for svcpart ". $p->{'svcpart'}. "\n"
3056     if $DEBUG;
3057   my $part_svc = qsearchs('part_svc', { 'svcpart' => $p->{'svcpart'} } )
3058     or return { 'error' => "unknown svcpart $p->{'svcpart'}" };
3059
3060   return { error=> 'svcpart '. $p->{'svcpart'}. " is not a $class definition" }
3061     if $class ne 'FS::'. $part_svc->svcdb;
3062
3063   warn "creating $class record\n"
3064     if $DEBUG;
3065   my $svc_x = $class->new( {
3066     'pkgnum'  => $p->{'pkgnum'},
3067     'svcpart' => $p->{'svcpart'},
3068     map { $_ => $p->{$_} } @$fields
3069   } );
3070
3071   my %insert_args = ();
3072   #i shouldn't be a special case here (pass an option or something)
3073   if ( $class eq 'FS::svc_phone'
3074          && grep length($p->{$_}), @location_editable_fields
3075      )
3076   {
3077     $insert_args{'cust_location'} = new FS::cust_location {
3078       map { $_ => $p->{$_} } @location_editable_fields
3079     };
3080   }
3081
3082   warn "inserting $class record\n"
3083     if $DEBUG;
3084   my $error = $svc_x->insert(%insert_args);
3085
3086   unless ( $error ) {
3087     warn "finding inserted record for svcnum ". $svc_x->svcnum. "\n"
3088       if $DEBUG;
3089     $svc_x = qsearchs($svc_x->table, { 'svcnum' => $svc_x->svcnum })
3090   }
3091
3092   my $return = { 'svc'   => $part_svc->svc,
3093                  'error' => $error,
3094                  map { $_ => $svc_x->get($_) } @$return_fields
3095                };
3096   warn "_provision returning ". Dumper($return). "\n"
3097     if $DEBUG;
3098   return $return;
3099
3100 }
3101
3102 sub part_svc_info {
3103   my $p = shift;
3104
3105   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3106   return { 'error' => $session } if $context eq 'error';
3107
3108   my $search = { 'custnum' => $custnum };
3109   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3110   my $cust_main = qsearchs('cust_main', $search )
3111     or return { 'error' => "unknown custnum $custnum" };
3112
3113   my $pkgnum = $p->{'pkgnum'};
3114
3115   my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
3116                                         'pkgnum'  => $pkgnum,
3117                                                                } )
3118     or return { 'error' => "unknown pkgnum $pkgnum" };
3119
3120   my $svcpart = $p->{'svcpart'};
3121
3122   my $pkg_svc = qsearchs('pkg_svc', { 'pkgpart' => $cust_pkg->pkgpart,
3123                                       'svcpart' => $svcpart,           } )
3124     or return { 'error' => "unknown svcpart $svcpart for pkgnum $pkgnum" };
3125   my $part_svc = $pkg_svc->part_svc;
3126
3127   my $conf = new FS::Conf;
3128
3129   my $ret = {
3130     'svc'     => $part_svc->svc,
3131     'svcdb'   => $part_svc->svcdb,
3132     'pkgnum'  => $pkgnum,
3133     'svcpart' => $svcpart,
3134     'custnum' => $custnum,
3135
3136     'security_phrase' => 0, #XXX !
3137     'svc_acct_pop'    => [], #XXX !
3138     'popnum'          => '',
3139     'init_popstate'   => '',
3140     'popac'           => '',
3141     'acstate'         => '',
3142
3143     'small_custview' =>
3144       small_custview( $cust_main, $conf->config('countrydefault') ),
3145
3146   };
3147
3148   if ($p->{'svcnum'} && $p->{'svcnum'} =~ /^\d+$/ 
3149                      && $ret->{'svcdb'} eq 'svc_phone') {
3150         $ret->{'svcnum'} = $p->{'svcnum'};
3151         my $svc_phone = qsearchs('svc_phone', { svcnum => $p->{'svcnum'} });
3152         if ( $svc_phone && $svc_phone->cust_svc->cust_pkg->custnum == $custnum ) {
3153             $ret->{'email'} = $svc_phone->email;
3154             $ret->{'forwarddst'} = $svc_phone->forwarddst;
3155         }
3156   }
3157
3158   if ($ret->{'svcdb'} eq 'svc_forward') {
3159     $ret->{'forward_emails'} = {$cust_pkg->forward_emails()};
3160   }
3161
3162   $ret;
3163 }
3164
3165 sub unprovision_svc {
3166   my $p = shift;
3167
3168   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3169   return { 'error' => $session } if $context eq 'error';
3170
3171   my $search = { 'custnum' => $custnum };
3172   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3173   my $cust_main = qsearchs('cust_main', $search )
3174     or return { 'error' => "unknown custnum $custnum" };
3175
3176   my $svcnum = $p->{'svcnum'};
3177
3178   my $cust_svc = qsearchs('cust_svc', { 'svcnum'  => $svcnum, } )
3179     or return { 'error' => "unknown svcnum $svcnum" };
3180
3181   return { 'error' => "Service $svcnum does not belong to customer $custnum" }
3182     unless $cust_svc->cust_pkg->custnum == $custnum;
3183
3184   my $conf = new FS::Conf;
3185
3186   return { 'svc'   => $cust_svc->part_svc->svc,
3187            'error' => $cust_svc->cancel,
3188            'small_custview' =>
3189              small_custview( $cust_main, $conf->config('countrydefault') ),
3190          };
3191
3192 }
3193
3194 sub myaccount_passwd {
3195   my $p = shift;
3196   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3197   return { 'error' => $session } if $context eq 'error';
3198
3199   return { 'error' => "New passwords don't match." }
3200     if $p->{'new_password'} ne $p->{'new_password2'};
3201
3202   return { 'error' => 'Enter new password' }
3203     unless length($p->{'new_password'});
3204
3205   #my $search = { 'custnum' => $custnum };
3206   #$search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3207   $custnum =~ /^(\d+)$/ or die "illegal custnum";
3208   my $search = " AND custnum = $1";
3209   $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
3210
3211   my $svc_acct = qsearchs( {
3212     'table'     => 'svc_acct',
3213     'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
3214                    'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
3215                    'LEFT JOIN cust_main USING ( custnum ) ',
3216     'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
3217     'extra_sql' => $search, #important
3218   } )
3219     or return { 'error' => "Service not found" };
3220
3221   my $error = '';
3222
3223   my $conf = new FS::Conf;
3224
3225   return { 'error' => 'Incorrect current password.' }
3226     if  ( exists($p->{'old_password'})
3227           || $conf->exists('selfservice-password_change_oldpass')
3228         )
3229     && ! $svc_acct->check_password($p->{'old_password'});
3230
3231   $error ||= $svc_acct->is_password_allowed($p->{'new_password'})
3232          ||  $svc_acct->set_password($p->{'new_password'})
3233          ||  $svc_acct->replace();
3234
3235   #regular pw change in self-service should change contact pw too, otherwise its
3236   #way too confusing.  hell its confusing they're separate at all, but alas.
3237   #need to support the "ISP provides email that's used as a contact email" case
3238   #as well as we can.
3239   my $contact = FS::contact->by_selfservice_email($svc_acct->email);
3240   if ( $contact && qsearchs('cust_contact', { contactnum=> $contact->contactnum,
3241                                               custnum   => $custnum,
3242                                               selfservice_access => 'Y',
3243                                             }
3244                            )
3245   ) {
3246     #svc_acct was successful but this one returns an error?  "shouldn't happen"
3247     #don't recheck is_password_allowed here; if the svc_acct password was
3248     #legal, that's good enough
3249     $error ||= $contact->change_password($p->{'new_password'});
3250   }
3251
3252   my($label, $value) = $svc_acct->cust_svc->label;
3253
3254   return { 'error' => $error,
3255            'label' => $label,
3256            'value' => $value,
3257          };
3258
3259 }
3260
3261 sub reset_passwd {
3262   my $p = shift;
3263
3264   my $info = skin_info($p);
3265
3266   my $conf = new FS::Conf;
3267   my $verification = $conf->config('selfservice-password_reset_verification')
3268     or return { %$info, 'error' => 'Password resets disabled' };
3269
3270   my $contact = '';
3271   my $svc_acct = '';
3272   my $cust_main = '';
3273   if ( $p->{'email'} ) { #new-style, changes contact and svc_acct
3274   
3275     $contact = FS::contact->by_selfservice_email($p->{'email'});
3276
3277     if ( $contact ) {
3278       my @cust_contact = grep $_->selfservice_access, $contact->cust_contact;
3279       $cust_main = $cust_contact[0]->cust_main if scalar(@cust_contact) == 1;
3280     }
3281
3282     #also look for an svc_acct, otherwise it would be super confusing
3283
3284     my($username, $domain) = split('@', $p->{'email'});
3285     my $svc_domain = qsearchs('svc_domain', { 'domain' => $domain } );
3286     if ( $svc_domain ) {
3287       $svc_acct = qsearchs('svc_acct', { 'username' => $username,
3288                                          'domsvc'   => $svc_domain->svcnum  }
3289                           );
3290       if ( $svc_acct ) {
3291         my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
3292         $cust_main ||= $cust_pkg->cust_main if $cust_pkg;
3293
3294         #precaution: don't change svc_acct password not part of the same
3295         # customer as contact
3296         $svc_acct = '' if ! $cust_pkg
3297                        || $cust_pkg->custnum != $cust_main->custnum;
3298       }
3299       
3300     }
3301
3302     return { %$info, 'error' => 'Email address not found' }
3303       unless $contact || $svc_acct;
3304
3305   } elsif ( $p->{'username'} ) { #old style, looks in svc_acct only
3306
3307     my $svc_domain = qsearchs('svc_domain', { 'domain' => $p->{'domain'} } )
3308       or return { %$info, 'error' => 'Account not found' };
3309
3310     $svc_acct = qsearchs('svc_acct', { 'username' => $p->{'username'},
3311                                        'domsvc'   => $svc_domain->svcnum  }
3312                         )
3313       or return { %$info, 'error' => 'Account not found' };
3314
3315     my $cust_pkg = $svc_acct->cust_svc->cust_pkg
3316       or return { %$info, 'error' => 'Account not found' };
3317
3318     $cust_main = $cust_pkg->cust_main;
3319
3320   }
3321
3322   return { %$info, 'error' => 'Multi-customer contacts incompatible with customer-based verification' }
3323     if ! $cust_main && $verification ne 'email';
3324
3325   my %verify = (
3326     'email'   => sub { 1; },
3327     'paymask' => sub { 
3328       my( $p, $cust_main ) = @_;
3329       $cust_main->payby =~ /^(CARD|DCRD|CHEK|DCHK)$/
3330         && $p->{'paymask'} eq substr($cust_main->paymask, -4)
3331     },
3332     'amount'  => sub {
3333       my( $p, $cust_main ) = @_;
3334       my $cust_pay = qsearchs({
3335         'table' => 'cust_pay',
3336         'hashref' => { 'custnum' => $cust_main->custnum },
3337         'order_by' => 'ORDER BY _date DESC LIMIT 1',
3338       })
3339         or return 0;
3340
3341       $p->{'amount'} == $cust_pay->paid;
3342     },
3343     'zip'     => sub {
3344       my( $p, $cust_main ) = @_;
3345       $p->{'zip'} eq $cust_main->zip
3346         || ( $cust_main->ship_zip && $p->{'zip'} eq $cust_main->ship_zip );
3347     },
3348   );
3349
3350   foreach my $verify ( split(',', $verification) ) {
3351
3352     &{ $verify{$verify} }( $p, $cust_main )
3353       or return { %$info, 'error' => 'Account not found' };
3354
3355   }
3356
3357   #okay, we're verified
3358
3359   if ( $contact ) {
3360
3361     my $error = $contact->send_reset_email(
3362                             'svcnum' => ($svc_acct ? $svc_acct->svcnum : ''),
3363                           );
3364
3365     if ( $error ) {
3366       return { %$info, 'error' => $error }; #????
3367     }
3368
3369   } elsif ( $svc_acct ) {
3370
3371     #create a unique session
3372
3373     my $reset_session = {
3374       'svcnum'   => $svc_acct->svcnum,
3375       'agentnum' => $svc_acct->cust_main->agentnum,
3376     };
3377
3378     my $timeout = '1 hour'; #?
3379
3380     my $reset_session_id;
3381     do {
3382       $reset_session_id = sha512_hex(time(). {}. rand(). $$)
3383     } until ( ! defined _cache->get("reset_passwd_$reset_session_id") );
3384       #just in case
3385
3386     _cache->set( "reset_passwd_$reset_session_id", $reset_session, $timeout );
3387
3388     #email it
3389
3390     my $msgnum = $conf->config('selfservice-password_reset_msgnum',
3391                                $cust_main->agentnum);
3392     #die "selfservice-password_reset_msgnum unset" unless $msgnum;
3393     return { %$info, 'error' => "selfservice-password_reset_msgnum unset" }
3394       unless $msgnum;
3395     my $msg_template = qsearchs('msg_template', { msgnum => $msgnum } );
3396     my $error = $msg_template->send( 'cust_main'     => $cust_main,
3397                                      'object'        => $svc_acct,
3398                                      'substitutions' => {
3399                                        'session_id' => $reset_session_id,
3400                                      }
3401                                    );
3402     if ( $error ) {
3403       return { %$info, 'error' => $error }; #????
3404     }
3405
3406   }
3407
3408   return { %$info, 'error' => '' };
3409 }
3410
3411 sub check_reset_passwd {
3412   my $p = shift;
3413
3414   my $conf = new FS::Conf;
3415   my $verification = $conf->config('selfservice-password_reset_verification')
3416     or return { 'error' => 'Password resets disabled' };
3417
3418   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
3419     or return { 'error' => "Can't resume session" }; #better error message
3420
3421   if ( $reset_session->{'svcnum'} ) {
3422
3423     my $svcnum = $reset_session->{'svcnum'};
3424
3425     my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
3426       or return { 'error' => "Service not found" };
3427
3428     $p->{'agentnum'} = $svc_acct->cust_svc->cust_pkg->cust_main->agentnum;
3429     my $info = skin_info($p);
3430
3431     return { %$info,
3432              'error'      => '',
3433              'session_id' => $p->{'session_id'},
3434              'username'   => $svc_acct->username,
3435            };
3436
3437   } elsif ( $reset_session->{'contactnum'} ) {
3438
3439     my $contactnum = $reset_session->{'contactnum'};
3440
3441     my $contact = qsearchs('contact', { 'contactnum' => $contactnum } )
3442       or return { 'error' => "Contact not found" };
3443
3444     my @contact_email = $contact->contact_email;
3445     return { 'error' => 'No contact email' } unless @contact_email;
3446
3447     my @cust_contact = grep $_->selfservice_access, $contact->cust_contact;
3448     $p->{'agentnum'} = $cust_contact[0]->cust_main->agentnum
3449       if scalar(@cust_contact) == 1;
3450     my $info = skin_info($p);
3451
3452     return { %$info,
3453              'error'      => '',
3454              'session_id' => $p->{'session_id'},
3455              'email'      => $contact_email[0]->email, #the first?
3456            };
3457
3458   } else {
3459
3460     return { 'error' => 'No svcnum or contactnum in session' }; #??
3461
3462   }
3463
3464 }
3465
3466 sub process_reset_passwd {
3467   my $p = shift;
3468
3469   my $conf = new FS::Conf;
3470   my $verification = $conf->config('selfservice-password_reset_verification')
3471     or return { 'error' => 'Password resets disabled' };
3472
3473   my $reset_session = _cache->get('reset_passwd_'. $p->{'session_id'})
3474     or return { 'error' => "Can't resume session" }; #better error message
3475
3476   my $info = '';
3477
3478   my $svc_acct = '';
3479   if ( $reset_session->{'svcnum'} ) {
3480
3481     my $svcnum = $reset_session->{'svcnum'};
3482
3483     $svc_acct = qsearchs('svc_acct', { 'svcnum' => $svcnum } )
3484       or return { 'error' => "Service not found" };
3485
3486     $p->{'agentnum'} ||= $svc_acct->cust_svc->cust_pkg->cust_main->agentnum;
3487     $info ||= skin_info($p);
3488
3489   }
3490
3491   my $contact = '';
3492   if ( $reset_session->{'contactnum'} ) {
3493
3494     my $contactnum = $reset_session->{'contactnum'};
3495
3496     $contact = qsearchs('contact', { 'contactnum' => $contactnum } )
3497       or return { 'error' => "Contact not found" };
3498
3499     my @cust_contact = grep $_->selfservice_access, $contact->cust_contact;
3500     $p->{'agentnum'} = $cust_contact[0]->cust_main->agentnum
3501       if scalar(@cust_contact) == 1;
3502     $info ||= skin_info($p);
3503
3504   }
3505
3506   return { %$info, 'error' => "New passwords don't match." }
3507     if $p->{'new_password'} ne $p->{'new_password2'};
3508
3509   return { %$info, 'error' => 'Enter new password' }
3510     unless length($p->{'new_password'});
3511
3512   if ( $svc_acct ) {
3513
3514     my $error ||= $svc_acct->is_password_allowed($p->{'new_password'})
3515               ||  $svc_acct->set_password($p->{'new_password'})
3516               ||  $svc_acct->replace();
3517
3518     return { %$info, 'error' => $error } if $error;
3519
3520     #my($label, $value) = $svc_acct->cust_svc->label;
3521     #return { 'error' => $error,
3522     #         #'label' => $label,
3523     #         #'value' => $value,
3524     #       };
3525
3526   }
3527
3528   if ( $contact ) {
3529
3530     my $error = $contact->is_password_allowed($p->{'new_password'})
3531             ||  $contact->change_password($p->{'new_password'});
3532
3533     return { %$info, 'error' => $error }; # if $error;
3534
3535   }
3536
3537   #password changed ,so remove session, don't want it reused
3538   _cache->remove($p->{'session_id'});
3539
3540   return { %$info, 'error' => '' };
3541
3542 }
3543
3544 sub validate_passwd {
3545   my $p = shift;
3546
3547   my %result;
3548   %result = ( 'fieldid' => $p->{'fieldid'} )
3549     if $p->{'fieldid'} =~ /^\w+$/;
3550
3551   return { %result, 'password_invalid' => 'Enter new password' }
3552     unless length($p->{'check_password'});
3553
3554   my $svc_acct;
3555   if ($p->{'svcnum'}) {
3556     # false laziness with myaccount_passwd
3557     my($context, $session, $custnum) = _custoragent_session_custnum($p);
3558     return { %result, 'error' => $session } if $context eq 'error';
3559
3560     $custnum =~ /^(\d+)$/ or die "illegal custnum";
3561     my $search = " AND custnum = $1";
3562     $search .= " AND agentnum = ". $session->{'agentnum'} if $context eq 'agent';
3563
3564     $svc_acct = qsearchs( {
3565       'table'     => 'svc_acct',
3566       'addl_from' => 'LEFT JOIN cust_svc  USING ( svcnum  ) '.
3567                      'LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
3568                      'LEFT JOIN cust_main USING ( custnum ) ',
3569       'hashref'   => { 'svcnum' => $p->{'svcnum'}, },
3570       'extra_sql' => $search, #important
3571     } )
3572       or return { %result, 'error' => "Service not found" };
3573     # end false laziness
3574   }
3575
3576   $svc_acct ||= new FS::svc_acct {};
3577
3578   my $error = $svc_acct->is_password_allowed($p->{'check_password'});
3579   return { %result, 'password_invalid' => $error } if $error;
3580   return { %result, 'password_valid' => 1 };
3581 }
3582
3583 sub list_tickets {
3584   my $p = shift;
3585   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3586   return { 'error' => $session } if $context eq 'error';
3587
3588   my @tickets = ();
3589   if ( $session->{'pkgnum'} ) { 
3590
3591     #tickets for specific service with pkg-balances on
3592     my $cust_pkg = qsearchs('cust_pkg', { 'custnum' => $custnum,
3593                                           'pkgnum'  => $session->{'pkgnum'} })
3594                      or return { 'error' => 'unknown package' };
3595     foreach my $cust_svc ( $cust_pkg->cust_svc ) {
3596       push @tickets, $cust_svc->tickets( $p->{status} );
3597     }
3598
3599   } else {
3600
3601     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
3602       or return { 'error' => "unknown custnum $custnum" };
3603
3604     @tickets = $cust_main->tickets( $p->{status} );
3605   }
3606
3607   # unavoidable false laziness w/ httemplate/view/cust_main/tickets.html
3608   if ( $FS::TicketSystem::system && FS::TicketSystem->selfservice_priority ) {
3609
3610     @tickets = grep { $_->{'_selfservice_priority'}
3611                         !~ /^\s*(closed?|resolved?|done)\s*/i }
3612                  @tickets;
3613
3614     my $conf = new FS::Conf;
3615     my $dir = $conf->exists('ticket_system-priority_reverse') ? -1 : 1;
3616     +{ tickets => [ 
3617          sort { 
3618            (
3619              ($a->{'_selfservice_priority'} eq '') <=>
3620              ($b->{'_selfservice_priority'} eq '')
3621            ) ||
3622            ( $dir * 
3623              ($b->{'_selfservice_priority'} <=> $a->{'_selfservice_priority'})
3624            )
3625          } @tickets
3626        ]
3627     };
3628   } else {
3629     +{ tickets => \@tickets };
3630   }
3631
3632 }
3633
3634 sub create_ticket {
3635   my $p = shift;
3636   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3637   return { 'error' => $session } if $context eq 'error';
3638
3639   warn "$me create_ticket: initializing ticket system\n" if $DEBUG;
3640   FS::TicketSystem->init();
3641
3642   my $conf = new FS::Conf;
3643   my $queue = $p->{'queue'}
3644               || $conf->config('ticket_system-selfservice_queueid')
3645               || $conf->config('ticket_system-default_queueid');
3646
3647   warn "$me create_ticket: creating ticket\n" if $DEBUG;
3648   my $err_or_ticket = FS::TicketSystem->create_ticket(
3649     '', #create RT session based on FS CurrentUser (fs_selfservice)
3650     'queue'   => $queue,
3651     'custnum' => $custnum,
3652     'svcnum'  => $session->{'svcnum'},
3653     map { $_ => $p->{$_} } qw( requestor cc subject message mime_type )
3654   );
3655
3656   if ( ref($err_or_ticket) ) {
3657     warn "$me create_ticket: successful: ". $err_or_ticket->id. "\n"
3658       if $DEBUG;
3659     return { 'error'     => '',
3660              'ticket_id' => $err_or_ticket->id,
3661            };
3662   } else {
3663     warn "$me create_ticket: unsuccessful: $err_or_ticket\n"
3664       if $DEBUG;
3665     return { 'error' => $err_or_ticket };
3666   }
3667
3668
3669 }
3670
3671 sub did_report {
3672   my $p = shift;
3673   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3674   return { 'error' => $session } if $context eq 'error';
3675  
3676   return { error => 'requested format not implemented' } 
3677     unless ($p->{'format'} eq 'csv' || $p->{'format'} eq 'xls');
3678
3679   my $conf = new FS::Conf;
3680   my $age_threshold = 0;
3681   $age_threshold = time() - $conf->config('selfservice-recent-did-age')
3682     if ($p->{'recentonly'} && $conf->exists('selfservice-recent-did-age'));
3683
3684   my $search = { 'custnum' => $custnum };
3685   $search->{'agentnum'} = $session->{'agentnum'} if $context eq 'agent';
3686   my $cust_main = qsearchs('cust_main', $search )
3687     or return { 'error' => "unknown custnum $custnum" };
3688
3689 # does it make more sense to just run one sql query for this instead of all the
3690 # insanity below? would increase performance greately for large data sets?
3691   my @svc_phone = ();
3692   foreach my $cust_pkg ( $cust_main->ncancelled_pkgs ) {
3693         my @part_svc = $cust_pkg->part_svc;
3694         foreach my $part_svc ( @part_svc ) {
3695             if($part_svc->svcdb eq 'svc_phone'){
3696                 my @cust_pkg_svc = @{$part_svc->cust_pkg_svc};
3697                 foreach my $cust_pkg_svc ( @cust_pkg_svc ) {
3698                     push @svc_phone, $cust_pkg_svc->svc_x
3699                         if $cust_pkg_svc->date_inserted >= $age_threshold;
3700                 }
3701             }
3702         }
3703   }
3704
3705   my $csv;
3706   my $xls;
3707   my($xls_r,$xls_c) = (0,0);
3708   my $xls_workbook;
3709   my $content = '';
3710   my @fields = qw( countrycode phonenum pin sip_password phone_name );
3711   if($p->{'format'} eq 'csv') {
3712     $csv = new Text::CSV_XS { 'always_quote' => 1,
3713                                  'eol'          => "\n",
3714                                 };
3715     return { 'error' => 'Unable to create CSV' } unless $csv->combine(@fields);
3716     $content .= $csv->string;
3717   }
3718   elsif($p->{'format'} eq 'xls') {
3719     my $XLS1 = new IO::Scalar \$content;
3720     $xls_workbook = Spreadsheet::WriteExcel->new($XLS1) 
3721         or return { 'error' => "Error opening .xls file: $!" };
3722     $xls = $xls_workbook->add_worksheet('DIDs');
3723     foreach ( @fields ) {
3724         $xls->write(0,$xls_c++,$_);
3725     }
3726     $xls_r++;
3727   }
3728
3729   foreach my $svc_phone ( @svc_phone ) {
3730     my @cols = map { $svc_phone->$_ } @fields;
3731     if($p->{'format'} eq 'csv') {
3732         return { 'error' => 'Unable to create CSV' } 
3733             unless $csv->combine(@cols);
3734         $content .= $csv->string;
3735     }
3736     elsif($p->{'format'} eq 'xls') {
3737         $xls_c = 0;
3738         foreach ( @cols ) {
3739             $xls->write($xls_r,$xls_c++,$_);
3740         }
3741         $xls_r++;
3742     }
3743   }
3744
3745   $xls_workbook->close() if $p->{'format'} eq 'xls';
3746   
3747   { content => $content, format => $p->{'format'}, };
3748 }
3749
3750 sub get_ticket {
3751   my $p = shift;
3752   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3753   return { 'error' => $session } if $context eq 'error';
3754
3755 #  warn "$me get_ticket: initializing ticket system\n" if $DEBUG;
3756 #  FS::TicketSystem->init();
3757 #  return { 'error' => 'get_ticket configuration error' }
3758 #    if $FS::TicketSystem::system ne 'RT_Internal';
3759
3760   # check existence and ownership as part of this
3761   warn "$me get_ticket: fetching ticket\n" if $DEBUG;
3762   my $rt_session = FS::TicketSystem->session('');
3763   my $Ticket = FS::TicketSystem->get_ticket_object(
3764     $rt_session, 
3765     ticket_id => $p->{'ticket_id'},
3766     custnum => $custnum
3767   );
3768   return { 'error' => 'ticket not found' } if !$Ticket;
3769
3770   if ( length( $p->{'subject'} || '' ) ) {
3771     # subject change
3772     if ( $p->{'subject'} ne $Ticket->Subject ) {
3773       my ($val, $msg) = $Ticket->SetSubject($p->{'subject'});
3774       return { 'error' => "unable to set subject: $msg" } if !$val;
3775     }
3776   }
3777
3778   if(length($p->{'reply'})) {
3779     my @err_or_res = FS::TicketSystem->correspond_ticket(
3780       $rt_session,
3781       'ticket_id' => $p->{'ticket_id'},
3782       'content' => $p->{'reply'},
3783     );
3784
3785     return { 'error' => 'unable to reply to ticket' } 
3786     unless ( $err_or_res[0] != 0 && defined $err_or_res[2] );
3787   }
3788
3789   warn "$me get_ticket: getting ticket history\n" if $DEBUG;
3790   my $err_or_ticket = FS::TicketSystem->get_ticket(
3791     $rt_session,
3792     'ticket_id' => $p->{'ticket_id'},
3793   );
3794
3795   if ( !ref($err_or_ticket) ) { # there is no way this should ever happen
3796     warn "$me get_ticket: unsuccessful: $err_or_ticket\n"
3797       if $DEBUG;
3798     return { 'error' => $err_or_ticket };
3799   }
3800
3801   my @custs = @{$err_or_ticket->{'custs'}};
3802   my @txns = @{$err_or_ticket->{'txns'}};
3803   my @filtered_txns;
3804
3805   # superseded by check in get_ticket_object
3806   #return { 'error' => 'invalid ticket requested' } 
3807   #unless grep($_ eq $custnum, @custs);
3808
3809   foreach my $txn ( @txns ) {
3810     push @filtered_txns, $txn 
3811     if ($txn->{'type'} eq 'EmailRecord' 
3812       || $txn->{'type'} eq 'Correspond'
3813       || $txn->{'type'} eq 'Create');
3814   }
3815
3816   warn "$me get_ticket: successful: \n"
3817   if $DEBUG;
3818   return { 'error'     => '',
3819     'transactions' => \@filtered_txns,
3820     'ticket_fields' => $err_or_ticket->{'fields'},
3821     'ticket_id' => $p->{'ticket_id'},
3822   };
3823 }
3824
3825 sub adjust_ticket_priority {
3826   my $p = shift;
3827   my($context, $session, $custnum) = _custoragent_session_custnum($p);
3828   return { 'error' => $session } if $context eq 'error';
3829
3830 #  warn "$me adjust_ticket_priority: initializing ticket system\n" if $DEBUG;
3831 #  FS::TicketSystem->init;
3832   my $ss_priority = FS::TicketSystem->selfservice_priority;
3833
3834   return { 'error' => 'adjust_ticket_priority configuration error' }
3835     if $FS::TicketSystem::system ne 'RT_Internal'
3836       or !$ss_priority;
3837
3838   my $values = $p->{'values'}; #hashref, id => priority value
3839   my %ticket_error;
3840
3841   foreach my $id (keys %$values) {
3842     warn "$me adjust_ticket_priority: fetching ticket $id\n" if $DEBUG;
3843     my $Ticket = FS::TicketSystem->get_ticket_object('',
3844       'ticket_id' => $id,
3845       'custnum'   => $custnum,
3846     );
3847     if ( !$Ticket ) {
3848       $ticket_error{$id} = 'ticket not found';
3849       next;
3850     }
3851     
3852   # RT API stuff--would we gain anything by wrapping this in FS::TicketSystem?
3853   # We're not going to implement it for RT_External.
3854     my $old_value = $Ticket->FirstCustomFieldValue($ss_priority);
3855     my $new_value = $values->{$id};
3856     next if $old_value eq $new_value;
3857
3858     warn "$me adjust_ticket_priority: updating ticket $id\n" if $DEBUG;
3859
3860     # AddCustomFieldValue works fine (replacing any existing value) if it's 
3861     # a single-valued custom field, which it should be.  If it's not, you're 
3862     # doing something wrong.
3863     my ($val, $msg);
3864     if ( length($new_value) ) {
3865       ($val, $msg) = $Ticket->AddCustomFieldValue( 
3866         Field => $ss_priority,
3867         Value => $new_value,
3868       );
3869     }
3870     else {
3871       ($val, $msg) = $Ticket->DeleteCustomFieldValue(
3872         Field => $ss_priority,
3873         Value => $old_value,
3874       );
3875     }
3876
3877     $ticket_error{$id} = $msg if !$val;
3878     warn "$me adjust_ticket_priority: $id: $msg\n" if $DEBUG and !$val;
3879   }
3880   return { 'error' => '',
3881            'ticket_error' => \%ticket_error,
3882            %{ customer_info($p) } # send updated customer info back
3883          }
3884 }
3885
3886 #--
3887
3888 sub _custoragent_session_custnum {
3889   my $p = shift;
3890
3891   my($context, $session, $custnum);
3892   if ( $p->{'session_id'} ) {
3893
3894     $context = 'customer';
3895     $session = _cache->get($p->{'session_id'})
3896       or return ( 'error' => "Can't resume session" ); #better error message
3897     $custnum = $session->{'custnum'};
3898
3899   } elsif ( $p->{'agent_session_id'} ) {
3900
3901     $context = 'agent';
3902     my $agent_cache = new FS::ClientAPI_SessionCache( {
3903       'namespace' => 'FS::ClientAPI::Agent',
3904     } );
3905     $session = $agent_cache->get($p->{'agent_session_id'})
3906       or return ( 'error' => "Can't resume session" ); #better error message
3907     $custnum = $p->{'custnum'};
3908
3909   } else {
3910     $context = 'error';
3911     return ( 'error' => "Can't resume session" ); #better error message
3912   }
3913
3914   ($context, $session, $custnum);
3915
3916 }
3917
3918 1;