remove debugging (tax-exempt numbers during signup, RT#32299)
[freeside.git] / FS / FS / ClientAPI / Signup.pm
1 package FS::ClientAPI::Signup;
2
3 use strict;
4 use vars qw( $DEBUG $me );
5 use Data::Dumper;
6 use Tie::RefHash;
7 use Digest::SHA qw(sha512_hex);
8 use FS::Conf;
9 use FS::Record qw(qsearch qsearchs dbdef);
10 use FS::CGI qw(popurl);
11 use FS::Msgcat qw(gettext);
12 use FS::Misc qw(card_types);
13 use FS::ClientAPI_SessionCache;
14 use FS::agent;
15 use FS::cust_main_county;
16 use FS::part_pkg;
17 use FS::svc_acct_pop;
18 use FS::cust_main;
19 use FS::cust_pkg;
20 use FS::svc_acct;
21 use FS::svc_phone;
22 use FS::acct_snarf;
23 use FS::queue;
24 use FS::reg_code;
25 use FS::payby;
26 use FS::banned_pay;
27
28 $DEBUG = 1;
29 $me = '[FS::ClientAPI::Signup]';
30
31 sub clear_cache {
32   warn "$me clear_cache called\n" if $DEBUG;
33   my $cache = new FS::ClientAPI_SessionCache( {
34       'namespace' => 'FS::ClientAPI::Signup',
35   } );
36   $cache->clear();
37   return {};
38 }
39
40 sub signup_info {
41   my $packet = shift;
42
43   warn "$me signup_info called on $packet\n" if $DEBUG;
44
45   my $conf = new FS::Conf;
46   my $svc_x = $conf->config('signup_server-service') || 'svc_acct';
47
48   my $cache = new FS::ClientAPI_SessionCache( {
49     'namespace' => 'FS::ClientAPI::Signup',
50   } );
51   my $signup_info_cache = $cache->get('signup_info_cache');
52
53   if ( $signup_info_cache ) {
54
55     warn "$me loading cached signup info\n" if $DEBUG > 1;
56
57   } else {
58
59     warn "$me populating signup info cache\n" if $DEBUG > 1;
60
61     my $agentnum2part_pkg = 
62       {
63         map {
64           my $agent = $_;
65           my $href = $agent->pkgpart_hashref;
66           $agent->agentnum =>
67             [
68               map { { 'payby'       => [ $_->payby ],
69                       'freq_pretty' => $_->freq_pretty,
70                       'options'     => { $_->options },
71                       %{$_->hashref}
72                   } }
73                 grep { $_->svcpart($svc_x)
74                        && ( $href->{ $_->pkgpart }
75                             || ( $_->agentnum
76                                  && $_->agentnum == $agent->agentnum
77                                )
78                           )
79                      }
80                   qsearch( 'part_pkg', { 'disabled' => '' } )
81             ];
82         } qsearch('agent', { 'disabled' => '' })
83       };
84
85     my $msgcat = { map { $_=>gettext($_) }
86                        qw( passwords_dont_match invalid_card unknown_card_type
87                            not_a empty_password illegal_or_empty_text )
88                  };
89     warn "msgcat: ". Dumper($msgcat). "\n" if $DEBUG > 2;
90
91     my $label = { map { $_ => FS::Msgcat::_gettext($_) }
92                       qw( stateid stateid_state )
93                 };
94     warn "label: ". Dumper($label). "\n" if $DEBUG > 2;
95
96     my @agent_fields = qw( agentnum agent );
97
98     my @bools = qw( emailinvoiceonly security_phrase );
99
100     my @signup_bools = qw( no_company recommend_daytime recommend_email );
101
102     my @signup_server_scalars = qw( default_pkgpart default_svcpart default_domsvc );
103
104     my @selfservice_textareas = qw( head body_header body_footer );
105
106     my @selfservice_scalars = qw(
107       body_bgcolor box_bgcolor
108       text_color link_color vlink_color hlink_color alink_color
109       font title_color title_align title_size menu_bgcolor menu_fontsize
110     );
111
112     #XXX my @selfservice_bools = qw(
113     #  menu_skipblanks menu_skipheadings menu_nounderline
114     #);
115
116     #my $selfservice_binaries = qw(
117     #  title_left_image title_right_image
118     #  menu_top_image menu_body_image menu_bottom_image
119     #);
120
121     $signup_info_cache = {
122
123       'cust_main_county' => [ map $_->hashref,
124                                   qsearch('cust_main_county', {} )
125                             ],
126
127       'agent' => [ map { my $agent = $_;
128                          +{ map { $_ => $agent->get($_) } @agent_fields }
129                        }
130                        qsearch('agent', { 'disabled' => '' } )
131                  ],
132
133       'part_referral' => [ map $_->hashref,
134                                qsearch('part_referral', { 'disabled' => '' } )
135                          ],
136
137       'agentnum2part_pkg' => $agentnum2part_pkg,
138
139       'svc_acct_pop' => [ map $_->hashref, qsearch('svc_acct_pop',{} ) ],
140
141       'emailinvoiceonly' => $conf->exists('emailinvoiceonly'),
142
143       'security_phrase' => $conf->exists('security_phrase'),
144
145       'nomadix' => $conf->exists('signup_server-nomadix'),
146
147       'payby' => [ $conf->config('signup_server-payby') ],
148
149       'payby_longname' => [ map { FS::payby->longname($_) } 
150                             $conf->config('signup_server-payby') ],
151
152       'card_types' => card_types(),
153
154       ( map { $_ => $conf->exists("signup-$_") } @signup_bools ),
155
156       ( map { $_ => scalar($conf->config("signup_server-$_")) }
157             @signup_server_scalars
158       ),
159
160       ( map { $_ => join("\n", $conf->config("selfservice-$_")) }
161             @selfservice_textareas
162       ),
163       ( map { $_ => scalar($conf->config("selfservice-$_")) }
164             @selfservice_scalars
165       ),
166
167       #( map { $_ => scalar($conf->config_binary("selfservice-$_")) }
168       #      @selfservice_binaries
169       #),
170
171       'agentnum2part_pkg'  => $agentnum2part_pkg,
172       'svc_acct_pop'       => [ map $_->hashref, qsearch('svc_acct_pop',{} ) ],
173       'nomadix'            => $conf->exists('signup_server-nomadix'),
174       'payby'              => [ $conf->config('signup_server-payby') ],
175       'card_types'         => card_types(),
176       'paytypes'           => [ @FS::cust_main::paytypes ],
177       'cvv_enabled'        => 1,
178       'require_cvv'        => $conf->exists('signup-require_cvv'),
179       'stateid_enabled'    => $conf->exists('show_stateid'),
180       'paystate_enabled'   => $conf->exists('show_bankstate'),
181       'exempt_groups'      => [ grep /\S/, $conf->config('tax-cust_exempt-groups') ],
182       'ship_enabled'       => 1,
183       'msgcat'             => $msgcat,
184       'label'              => $label,
185       'statedefault'       => scalar($conf->config('statedefault')) || 'CA',
186       'countrydefault'     => scalar($conf->config('countrydefault')) || 'US',
187       'refnum'             => scalar($conf->config('signup_server-default_refnum')),
188       'signup_service'     => $svc_x,
189       'company_name'       => scalar($conf->config('company_name')),
190       #per-agent?
191       'logo'               => scalar($conf->config_binary('logo.png')),
192       'prepaid_template_custnum' => $conf->exists('signup_server-prepaid-template-custnum'),
193     };
194
195     $cache->set('signup_info_cache', $signup_info_cache);
196
197   }
198
199   my $signup_info = { %$signup_info_cache };
200   warn "$me signup info loaded\n" if $DEBUG > 1;
201   warn Dumper($signup_info). "\n" if $DEBUG > 2;
202
203   my @addl = qw( signup_server-classnum2 signup_server-classnum3 );
204
205   if ( grep { $conf->exists($_) } @addl ) {
206   
207     $signup_info->{optional_packages} = [];
208
209     foreach my $addl ( @addl ) {
210
211       warn "$me adding optional package info\n" if $DEBUG > 1;
212
213       my $classnum = $conf->config($addl) or next;
214
215       my @pkgs = map { {
216                          'freq_pretty' => $_->freq_pretty,
217                          'options'     => { $_->options },
218                          %{ $_->hashref }
219                        };
220                      }
221                      qsearch( 'part_pkg', { classnum => $classnum } );
222
223       push @{$signup_info->{optional_packages}}, \@pkgs;
224
225       warn "$me done adding opt. package info for $classnum\n" if $DEBUG > 1;
226
227     }
228
229   }
230
231   my $agentnum = $packet->{'agentnum'}
232                  || $conf->config('signup_server-default_agentnum');
233   $agentnum =~ /^(\d*)$/ or die "illegal agentnum";
234   $agentnum = $1;
235
236   my $session = '';
237   if ( exists $packet->{'session_id'} ) {
238
239     warn "$me loading agent session\n" if $DEBUG > 1;
240     my $cache = new FS::ClientAPI_SessionCache( {
241       'namespace' => 'FS::ClientAPI::Agent',
242     } );
243     $session = $cache->get($packet->{'session_id'});
244     if ( $session ) {
245       $agentnum = $session->{'agentnum'};
246     } else {
247       return { 'error' => "Can't resume session" }; #better error message
248     }
249     warn "$me done loading agent session\n" if $DEBUG > 1;
250
251   } elsif ( exists $packet->{'customer_session_id'} ) {
252
253     warn "$me loading customer session\n" if $DEBUG > 1;
254     my $cache = new FS::ClientAPI_SessionCache( {
255       'namespace' => 'FS::ClientAPI::MyAccount',
256     } );
257     $session = $cache->get($packet->{'customer_session_id'});
258     if ( $session ) {
259       my $custnum = $session->{'custnum'};
260       my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum });
261       return { 'error' => "Can't find your customer record" } unless $cust_main;
262       $agentnum = $cust_main->agentnum;
263     } else {
264       return { 'error' => "Can't resume session" }; #better error message
265     }
266     warn "$me done loading customer session\n" if $DEBUG > 1;
267
268   }
269
270   $signup_info->{'part_pkg'} = [];
271
272   if ( $packet->{'reg_code'} ) {
273
274     warn "$me setting package list via reg_code\n" if $DEBUG > 1;
275
276     $signup_info->{'part_pkg'} = 
277       [ map { { 'payby'       => [ $_->payby ],
278                 'freq_pretty' => $_->freq_pretty,
279                 'options'     => { $_->options },
280                 %{$_->hashref}
281               };
282             }
283           grep { $_->svcpart($svc_x) }
284           map { $_->part_pkg }
285             qsearchs( 'reg_code', { 'code'     => $packet->{'reg_code'},
286                                     'agentnum' => $agentnum,              } )
287
288       ];
289
290     $signup_info->{'error'} = 'Unknown registration code'
291       unless @{ $signup_info->{'part_pkg'} };
292
293     warn "$me done setting package list via reg_code\n" if $DEBUG > 1;
294
295   } elsif ( $packet->{'promo_code'} ) {
296
297     warn "$me setting package list via promo_code\n" if $DEBUG > 1;
298
299     $signup_info->{'part_pkg'} =
300       [ map { { 'payby'   => [ $_->payby ],
301                 'freq_pretty' => $_->freq_pretty,
302                 'options'     => { $_->options },
303                 %{$_->hashref}
304             } }
305           grep { $_->svcpart($svc_x) }
306             qsearch( 'part_pkg', { 'promo_code' => {
307                                      op=>'ILIKE',
308                                      value=>$packet->{'promo_code'}
309                                    },
310                                    'disabled'   => '',                  } )
311       ];
312
313     $signup_info->{'error'} = 'Unknown promotional code'
314       unless @{ $signup_info->{'part_pkg'} };
315
316     warn "$me done setting package list via promo_code\n" if $DEBUG > 1;
317   }
318
319   if ( $agentnum ) {
320
321     warn "$me setting agent-specific payment flag\n" if $DEBUG > 1;
322     my $agent = qsearchs('agent', { 'agentnum' => $agentnum } )
323       or return { 'error' => "Self-service agent #$agentnum does not exist" };
324     warn "$me has agent $agent\n" if $DEBUG > 1;
325     my @paybys = @{ $signup_info->{'payby'} };
326     $signup_info->{'hide_payment_fields'} = [];
327
328     my $gatewaynum = $conf->config('selfservice-payment_gateway');
329     my $force_gateway;
330     if ( $gatewaynum ) {
331       $force_gateway = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
332       warn "using forced gateway #$gatewaynum - " .
333         $force_gateway->gateway_username . '@' . $force_gateway->gateway_module
334         if $DEBUG > 1;
335       die "configured gatewaynum $gatewaynum not found!" if !$force_gateway;
336     }
337     foreach my $payby (@paybys) {
338       warn "$me checking $payby payment fields\n" if $DEBUG > 1;
339       my $hide = 0;
340       if ( FS::payby->realtime($payby) ) {
341         my $gateway = $force_gateway || 
342           $agent->payment_gateway( 'method'  => FS::payby->payby2bop($payby),
343                                    'nofatal' => 1,
344                                  );
345         if ( $gateway && $gateway->gateway_namespace
346                     eq 'Business::OnlineThirdPartyPayment'
347            ) {
348           warn "$me hiding $payby payment fields\n" if $DEBUG > 1;
349           $hide = 1;
350         }
351       }
352       push @{$signup_info->{'hide_payment_fields'}}, $hide;
353     } # foreach $payby
354     warn "$me done setting agent-specific payment flag\n" if $DEBUG > 1;
355
356     warn "$me setting agent-specific package list\n" if $DEBUG > 1;
357     $signup_info->{'part_pkg'} = $signup_info->{'agentnum2part_pkg'}{$agentnum}
358       unless @{ $signup_info->{'part_pkg'} };
359     warn "$me done setting agent-specific package list\n" if $DEBUG > 1;
360
361     warn "$me setting agent-specific adv. source list\n" if $DEBUG > 1;
362     $signup_info->{'part_referral'} =
363       [
364         map { $_->hashref }
365           qsearch( {
366                      'table'     => 'part_referral',
367                      'hashref'   => { 'disabled' => '' },
368                      'extra_sql' => "AND (    agentnum = $agentnum  ".
369                                     "      OR agentnum IS NULL    ) ",
370                    },
371                  )
372       ];
373     warn "$me done setting agent-specific adv. source list\n" if $DEBUG > 1;
374
375     $signup_info->{'agent_name'} = $agent->agent;
376
377     $signup_info->{'company_name'} = $conf->config('company_name', $agentnum);
378
379     #some of the above could probably be cached, too
380
381     my $signup_info_cache_agent = $cache->get("signup_info_cache_agent$agentnum");
382
383     if ( $signup_info_cache_agent ) {
384
385       warn "$me loading cached signup info for agentnum $agentnum\n"
386         if $DEBUG > 1;
387
388     } else {
389
390       warn "$me populating signup info cache for agentnum $agentnum\n"
391         if $DEBUG > 1;
392
393       $signup_info_cache_agent = {
394         #( map { $_ => scalar( $conf->config($_, $agentnum) ) }
395         #  qw( company_name ) ),
396         ( map { $_ => scalar( $conf->config("selfservice-$_", $agentnum ) ) }
397           qw( body_bgcolor box_bgcolor menu_bgcolor ) ),
398         ( map { $_ => join("\n", $conf->config("selfservice-$_", $agentnum ) ) }
399           qw( head body_header body_footer ) ),
400         ( map { $_ => join("\n", $conf->config("signup_server-$_", $agentnum ) ) }
401           qw( terms_of_service ) ),
402
403         ( map { $_ => scalar($conf->exists($_, $agentnum)) } 
404           qw(cust_main-require_phone agent-ship_address) ),
405       };
406
407       if ( $signup_info_cache_agent->{'agent-ship_address'} 
408            && $agent->agent_cust_main ) {
409
410         my $cust_main = $agent->agent_cust_main;
411         my $location = $cust_main->ship_location;
412         $signup_info_cache_agent->{"ship_$_"} = $location->get($_)
413           foreach qw( address1 city county state zip country );
414
415       }
416
417       $cache->set("signup_info_cache_agent$agentnum", $signup_info_cache_agent);
418
419     }
420
421     $signup_info->{$_} = $signup_info_cache_agent->{$_}
422       foreach keys %$signup_info_cache_agent;
423
424   }
425   # else {
426   # delete $signup_info->{'part_pkg'};
427   #}
428
429   warn "$me sorting package list\n" if $DEBUG > 1;
430   $signup_info->{'part_pkg'} = [ sort { $a->{pkg} cmp $b->{pkg} }  # case?
431                                       @{ $signup_info->{'part_pkg'} }
432                                ];
433   warn "$me done sorting package list\n" if $DEBUG > 1;
434
435   if ( exists $packet->{'session_id'} ) {
436     my $agent_signup_info = { %$signup_info };
437     delete $agent_signup_info->{agentnum2part_pkg};
438     $agent_signup_info->{'agent'} = $session->{'agent'};
439     return $agent_signup_info;
440   } 
441   elsif ( exists $packet->{'keys'} ) {
442     my @keys = @{ $packet->{'keys'} };
443     return { map { $_ => $signup_info->{$_} } @keys };
444   }
445   else {
446     return $signup_info;
447   }
448
449 }
450
451 sub domain_select_hash {
452   my $packet = shift;
453
454   my $response = {};
455
456   if ($packet->{pkgpart}) {
457     my $part_pkg = qsearchs('part_pkg' => { 'pkgpart' => $packet->{pkgpart} } );
458     #$packet->{svcpart} = $part_pkg->svcpart('svc_acct')
459     $packet->{svcpart} = $part_pkg->svcpart
460       if $part_pkg;
461   }
462
463   if ($packet->{svcpart}) {
464     my $part_svc = qsearchs('part_svc' => { 'svcpart' => $packet->{svcpart} } );
465     $response->{'domsvc'} = $part_svc->part_svc_column('domsvc')->columnvalue
466       if ($part_svc && $part_svc->part_svc_column('domsvc')->columnflag  eq 'D');
467   }
468
469   $response->{'domains'}
470     = { domain_select_hash FS::svc_acct( map { $_ => $packet->{$_} }
471                                                  qw(svcpart pkgnum)
472                                        ) };
473
474   $response;
475 }
476
477 sub new_customer {
478   my $packet = shift;
479
480   my $conf = new FS::Conf;
481   my $svc_x = $conf->config('signup_server-service') || 'svc_acct';
482
483   if ( $svc_x eq 'svc_acct' ) {
484   
485     #things that aren't necessary in base class, but are for signup server
486       #return "Passwords don't match"
487       #  if $hashref->{'_password'} ne $hashref->{'_password2'}
488     return { 'error' => gettext('empty_password') }
489       unless length($packet->{'_password'});
490     # a bit inefficient for large numbers of pops
491     return { 'error' => gettext('no_access_number_selected') }
492       unless $packet->{'popnum'} || !scalar(qsearch('svc_acct_pop',{} ));
493
494   }
495   elsif ( $svc_x eq 'svc_pbx' ) {
496     #possibly some validation will be needed
497   }
498
499   my $agentnum;
500   if ( exists $packet->{'session_id'} ) {
501     my $cache = new FS::ClientAPI_SessionCache( {
502       'namespace' => 'FS::ClientAPI::Agent',
503     } );
504     my $session = $cache->get($packet->{'session_id'});
505     if ( $session ) {
506       $agentnum = $session->{'agentnum'};
507     } else {
508       return { 'error' => "Can't resume session" }; #better error message
509     }
510   } else {
511     $agentnum = $packet->{agentnum}
512                 || $conf->config('signup_server-default_agentnum');
513   }
514
515   my ($bill_hash, $ship_hash);
516   foreach my $f (FS::cust_main->location_fields) {
517     # avoid having to change this in front-end code
518     $bill_hash->{$f} = $packet->{"bill_$f"} || $packet->{$f};
519     $ship_hash->{$f} = $packet->{"ship_$f"};
520   }
521
522   #shares some stuff with htdocs/edit/process/cust_main.cgi... take any
523   # common that are still here and library them.
524   my $template_custnum = $conf->config('signup_server-prepaid-template-custnum');
525   my $cust_main;
526   if ( $template_custnum && $packet->{prepaid_shortform} ) {
527
528     my $template_cust = qsearchs('cust_main', { 'custnum' => $template_custnum } );
529     return { 'error' => 'Configuration error' } unless $template_cust;
530     $cust_main = new FS::cust_main ( {
531       'agentnum'      => $agentnum,
532       'refnum'        => $packet->{refnum}
533                          || $conf->config('signup_server-default_refnum'),
534
535       ( map { $_ => $template_cust->$_ } qw( 
536               last first company daytime night fax mobile
537             )
538       ),
539
540       ( map { $_ => $packet->{$_} } qw(
541               ss stateid stateid_state
542
543               payby
544               payinfo paycvv paydate payname paystate paytype
545               paystart_month paystart_year payissue
546               payip
547
548               referral_custnum comments
549             )
550       ),
551
552     } );
553
554     $bill_hash = { $template_cust->bill_location->location_hash };
555     $ship_hash = { $template_cust->ship_location->location_hash };
556
557   } else {
558
559     $cust_main = new FS::cust_main ( {
560       #'custnum'          => '',
561       'agentnum'      => $agentnum,
562       'refnum'        => $packet->{refnum}
563                          || $conf->config('signup_server-default_refnum'),
564
565       map { $_ => $packet->{$_} } qw(
566         last first ss company 
567         daytime night fax mobile
568         stateid stateid_state
569         payby
570         payinfo paycvv paydate payname paystate paytype
571         paystart_month paystart_year payissue
572         payip
573         override_ban_warn
574         referral_custnum comments
575       ),
576
577     } );
578   }
579
580   my $bill_location = FS::cust_location->new($bill_hash);
581   my $ship_location;
582   my $agent = qsearchs('agent', { 'agentnum' => $agentnum } );
583   if ( $conf->exists('agent-ship_address', $agentnum) 
584     && $agent->agent_custnum ) {
585
586     my $agent_cust_main = $agent->agent_cust_main;
587     my $prefix = length($agent_cust_main->ship_last) ? 'ship_' : '';
588     $ship_location = FS::cust_location->new({ 
589         $agent_cust_main->ship_location->location_hash
590     });
591
592   }
593   # we don't have an equivalent of the "same" checkbox in selfservice
594   # so is there a ship address, and if so, is it different from the billing 
595   # address?
596   elsif ( length($ship_hash->{address1}) > 0 and
597           grep { $bill_hash->{$_} ne $ship_hash->{$_} } keys(%$ship_hash)
598          ) {
599
600     $ship_location = FS::cust_location->new( $ship_hash );
601   
602   }
603   else {
604     $ship_location = $bill_location;
605   }
606
607   $cust_main->set('bill_location' => $bill_location);
608   $cust_main->set('ship_location' => $ship_location);
609
610   return { 'error' => "Illegal payment type" }
611     unless grep { $_ eq $packet->{'payby'} }
612                 $conf->config('signup_server-payby');
613
614   if (FS::payby->realtime($packet->{payby})
615     and not $conf->exists('signup_server-third_party_as_card')) {
616     my $payby = $packet->{payby};
617
618     my $agent = qsearchs('agent', { 'agentnum' => $agentnum });
619     return { 'error' => "Unknown reseller" }
620       unless $agent;
621
622     my $gw;
623     my $gatewaynum = $conf->config('selfservice-payment_gateway');
624     if ( $gatewaynum ) {
625       $gw = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
626       die "configured gatewaynum $gatewaynum not found!" if !$gw;
627     }
628     else {
629       $gw = $agent->payment_gateway( 'method'  => FS::payby->payby2bop($payby),
630                                      'nofatal' => 1,
631                                     );
632     }
633
634     $cust_main->payby('BILL')   # MCRD better?
635       if $gw && $gw->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
636   }
637
638   return { 'error' => "CVV2 is required" }
639     if $cust_main->payby =~ /^(CARD|DCRD)$/
640     && ! $cust_main->paycvv
641     && $conf->exists('signup-require_cvv');
642
643   $cust_main->payinfo($cust_main->daytime)
644     if $cust_main->payby eq 'LECB' && ! $cust_main->payinfo;
645
646   my @invoicing_list = $packet->{'invoicing_list'}
647                          ? split( /\s*\,\s*/, $packet->{'invoicing_list'} )
648                          : ();
649
650   my %insert_options = ();
651
652   my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
653   my @tax_exempt = grep { $packet->{"tax_$_"} eq 'Y' } @exempt_groups;
654   $insert_options{'tax_exemption'} = {
655     map { $_ => $packet->{"tax_$_".'_num'} } @tax_exempt
656   };
657
658   $packet->{'pkgpart'} =~ /^(\d+)$/ or '' =~ /^()$/;
659   my $pkgpart = $1;
660   return { 'error' => 'Please select a package' } unless $pkgpart; #msgcat
661
662   my $part_pkg =
663     qsearchs( 'part_pkg', { 'pkgpart' => $pkgpart } )
664       or return { 'error' => "WARNING: unknown pkgpart: $pkgpart" };
665   my $svcpart = $part_pkg->svcpart($svc_x);
666
667   my $reg_code = '';
668   if ( $packet->{'reg_code'} ) {
669     $reg_code = qsearchs( 'reg_code', { 'code'     => $packet->{'reg_code'},
670                                         'agentnum' => $agentnum,             } )
671       or return { 'error' => 'Unknown registration code' };
672   }
673
674   my $cust_pkg = new FS::cust_pkg ( {
675     #later#'custnum' => $custnum,
676     'pkgpart'    => $packet->{'pkgpart'},
677     'promo_code' => $packet->{'promo_code'},
678     'reg_code'   => $packet->{'reg_code'},
679   } );
680   #my $error = $cust_pkg->check;
681   #return { 'error' => $error } if $error;
682
683   #should be all auto-magic and shit
684   my @svc = ();
685   if ( $svc_x eq 'svc_acct' ) {
686
687     my $svc = new FS::svc_acct {
688       'svcpart'   => $svcpart,
689       map { $_ => $packet->{$_} }
690         qw( username _password sec_phrase popnum domsvc ),
691     };
692
693     my @acct_snarf;
694     my $snarfnum = 1;
695     while (    exists($packet->{"snarf_machine$snarfnum"})
696             && length($packet->{"snarf_machine$snarfnum"}) ) {
697       my $acct_snarf = new FS::acct_snarf ( {
698         'machine'   => $packet->{"snarf_machine$snarfnum"},
699         'protocol'  => $packet->{"snarf_protocol$snarfnum"},
700         'username'  => $packet->{"snarf_username$snarfnum"},
701         '_password' => $packet->{"snarf_password$snarfnum"},
702       } );
703       $snarfnum++;
704       push @acct_snarf, $acct_snarf;
705     }
706     $svc->child_objects( \@acct_snarf );
707     push @svc, $svc;
708
709   } elsif ( $svc_x eq 'svc_phone' ) {
710
711     push @svc, new FS::svc_phone ( {
712       'svcpart' => $svcpart,
713        map { $_ => $packet->{$_} }
714          qw( countrycode phonenum sip_password pin ),
715     } );
716
717   } elsif ( $svc_x eq 'svc_pbx' ) {
718
719     push @svc, new FS::svc_pbx ( {
720         'svcpart' => $svcpart,
721         map { $_ => $packet->{$_} } 
722           qw( id title ),
723         } );
724   
725   } else {
726     die "unknown signup service $svc_x";
727   }
728
729   if ($packet->{'mac_addr'} && $conf->exists('signup_server-mac_addr_svcparts'))
730   {
731
732     my %mac_addr_svcparts = map { $_ => 1 }
733                             $conf->config('signup_server-mac_addr_svcparts');
734     my @pkg_svc = grep { $_->quantity && $mac_addr_svcparts{$_->svcpart} }
735                   $cust_pkg->part_pkg->pkg_svc;
736
737     return { 'error' => 'No service defined to assign mac address' }
738       unless @pkg_svc;
739
740     my $svc = new FS::svc_acct {
741       'svcpart'   => $pkg_svc[0]->svcpart, #multiple matches? alas..
742       'username'  => $packet->{'mac_addr'},
743       '_password' => '', #blank as requested (set passwordmin to 0)
744     };
745
746     push @svc, $svc;
747
748   }
749
750   foreach my $svc ( @svc ) {
751     my $y = $svc->setdefault; # arguably should be in new method
752     return { 'error' => $y } if $y && !ref($y);
753     #$error = $svc->check;
754     #return { 'error' => $error } if $error;
755   }
756
757   #setup a job dependancy to delay provisioning
758   my $placeholder = new FS::queue ( {
759     'job'    => 'FS::ClientAPI::Signup::__placeholder',
760     'status' => 'locked',
761   } );
762   my $error = $placeholder->insert;
763   return { 'error' => $error } if $error;
764
765   use Tie::RefHash;
766   tie my %hash, 'Tie::RefHash';
767   %hash = ( $cust_pkg => \@svc );
768   #msgcat
769   $error = $cust_main->insert(
770     \%hash,
771     \@invoicing_list,
772     'depend_jobnum' => $placeholder->jobnum,
773      %insert_options,
774   );
775   if ( $error ) {
776     my $perror = $placeholder->delete;
777     $error .= " (Additionally, error removing placeholder: $perror)" if $perror;
778     return { 'error' => $error };
779   }
780
781   if ( $conf->exists('signup_server-realtime') ) {
782
783     #warn "$me Billing customer...\n" if $Debug;
784
785     my $bill_error = $cust_main->bill( 'depend_jobnum'=>$placeholder->jobnum );
786     #warn "$me error billing new customer: $bill_error"
787     #  if $bill_error;
788
789     $bill_error = $cust_main->apply_payments_and_credits;
790     #warn "$me error applying payments and credits for".
791     #     " new customer: $bill_error"
792     #  if $bill_error;
793
794     unless ( $packet->{payby} eq 'PREPAY' ) {
795       $bill_error = $cust_main->realtime_collect(
796          method        => FS::payby->payby2bop( $packet->{payby} ),
797          depend_jobnum => $placeholder->jobnum,
798          selfservice   => 1,
799       );
800       #warn "$me error collecting from new customer: $bill_error"
801       #  if $bill_error;
802     }
803
804     if ($bill_error && ref($bill_error) eq 'HASH') {
805       return { 'error' => '_collect',
806                ( map { $_ => $bill_error->{$_} }
807                  qw(popup_url reference collectitems)
808                ),
809                amount => $cust_main->balance,
810              };
811     }
812
813     $bill_error = $cust_main->apply_payments_and_credits;
814     #warn "$me error applying payments and credits for".
815     #     " new customer: $bill_error"
816     #  if $bill_error;
817
818     if ( $cust_main->balance > 0 ) {
819
820       #this makes sense.  credit is "un-doing" the invoice
821       $cust_main->credit( $cust_main->balance, 'signup server decline',
822                           'reason_type' => $conf->config('signup_credit_type'),
823                         );
824       $cust_main->apply_credits;
825
826       #should check list for errors...
827       #$cust_main->suspend;
828       local $FS::svc_Common::noexport_hack = 1;
829       $cust_main->cancel('quiet'=>1);
830
831       my $perror = $placeholder->depended_delete;
832       warn "error removing provisioning jobs after decline: $perror" if $perror;
833       unless ( $perror ) {
834         $perror = $placeholder->delete;
835         warn "error removing placeholder after decline: $perror" if $perror;
836       }
837
838       return { 'error' => '_decline' };
839     }
840
841   }
842
843   if ( $reg_code ) {
844     $error = $reg_code->delete;
845     return { 'error' => $error } if $error;
846   }
847
848   $error = $placeholder->delete;
849   return { 'error' => $error } if $error;
850
851   if ( $conf->exists('signup-duplicate_cc-warn_hours') ) {
852     my $hours = $conf->config('signup-duplicate_cc-warn_hours');
853     my $ban = new FS::banned_pay $cust_main->_new_banned_pay_hashref;
854     $ban->end_date( int( time + $hours*3600 ) );
855     $ban->bantype('warn');
856     $ban->reason('signup-duplicate_cc-warn_hours');
857     $error = $ban->insert;
858     warn "WARNING: error inserting temporary banned_pay for ".
859          " signup-duplicate_cc-warn_hours (proceeding anyway): $error"
860       if $error;
861   }
862
863   my %return = ( 'error'          => '',
864                  'signup_service' => $svc_x,
865                  'custnum'        => $cust_main->custnum,
866                );
867
868   if ( $svc[0] ) {
869
870     $return{'svcnum'} = $svc[0]->svcnum;
871
872     if ( $svc_x eq 'svc_acct' ) {
873       $return{$_} = $svc[0]->$_() for qw( username _password );
874     } elsif ( $svc_x eq 'svc_phone' ) {
875       $return{$_} = $svc[0]->$_() for qw(countrycode phonenum sip_password pin);
876     } elsif ( $svc_x eq 'svc_pbx' ) {
877       #$return{$_} = $svc[0]->$_() for qw( ) #nothing yet
878      } else {
879       return {'error' => "configuration error: unknown signup service $svc_x"};
880       #die "unknown signup service $svc_x";
881       # return an error that's visible to someone somewhere
882     }
883
884   }
885
886   return \%return;
887
888 }
889
890 #false laziness w/ above
891 # fresh restart to support "free account" portals with 3.x/4.x-style
892 #  addressless accounts
893 # and a contact (for self-service login)
894 sub new_customer_minimal {
895   my $packet = shift;
896
897   my $conf = new FS::Conf;
898   my $svc_x = $conf->config('signup_server-service') || 'svc_acct';
899
900   if ( $svc_x eq 'svc_acct' ) {
901   
902     #things that aren't necessary in base class, but are for signup server
903       #return "Passwords don't match"
904       #  if $hashref->{'_password'} ne $hashref->{'_password2'}
905     return { 'error' => gettext('empty_password') }
906       unless length($packet->{'_password'});
907     # a bit inefficient for large numbers of pops
908     return { 'error' => gettext('no_access_number_selected') }
909       unless $packet->{'popnum'} || !scalar(qsearch('svc_acct_pop',{} ));
910
911   }
912   elsif ( $svc_x eq 'svc_pbx' ) {
913     #possibly some validation will be needed
914   }
915
916   my $agentnum;
917   if ( exists $packet->{'session_id'} ) {
918     my $cache = new FS::ClientAPI_SessionCache( {
919       'namespace' => 'FS::ClientAPI::Agent',
920     } );
921     my $session = $cache->get($packet->{'session_id'});
922     if ( $session ) {
923       $agentnum = $session->{'agentnum'};
924     } else {
925       return { 'error' => "Can't resume session" }; #better error message
926     }
927   } else {
928     $agentnum = $packet->{agentnum}
929                 || $conf->config('signup_server-default_agentnum');
930   }
931
932   #shares some stuff with htdocs/edit/process/cust_main.cgi... take any
933   # common that are still here and library them.
934
935   my $cust_main = new FS::cust_main ( {
936       #'custnum'          => '',
937       'agentnum'      => $agentnum,
938       'refnum'        => $packet->{refnum}
939                          || $conf->config('signup_server-default_refnum'),
940       'payby'         => 'BILL',
941
942       map { $_ => $packet->{$_} } qw(
943         last first ss company 
944         daytime night fax mobile
945       ),
946
947   } );
948
949   my @invoicing_list = $packet->{'invoicing_list'}
950                          ? split( /\s*\,\s*/, $packet->{'invoicing_list'} )
951                          : ();
952
953   use Tie::RefHash;
954   tie my %hash, 'Tie::RefHash', ();
955   my @svc = ();
956
957   $packet->{'pkgpart'} =~ /^(\d+)$/ or '' =~ /^()$/;
958   my $pkgpart = $1;
959
960   if ( $pkgpart ) {
961
962     my $part_pkg =
963       qsearchs( 'part_pkg', { 'pkgpart' => $pkgpart } )
964         or return { 'error' => "WARNING: unknown pkgpart: $pkgpart" };
965     my $svcpart = $part_pkg->svcpart($svc_x);
966
967     my $cust_pkg = new FS::cust_pkg ( {
968       #later#'custnum' => $custnum,
969       'pkgpart'    => $packet->{'pkgpart'},
970     } );
971     #my $error = $cust_pkg->check;
972     #return { 'error' => $error } if $error;
973
974     #should be all auto-magic and shit
975     if ( $svc_x eq 'svc_acct' ) {
976
977       my $svc = new FS::svc_acct {
978         'svcpart'   => $svcpart,
979         map { $_ => $packet->{$_} }
980           qw( username _password sec_phrase popnum domsvc ),
981       };
982
983       push @svc, $svc;
984
985     } elsif ( $svc_x eq 'svc_phone' ) {
986
987       push @svc, new FS::svc_phone ( {
988         'svcpart' => $svcpart,
989          map { $_ => $packet->{$_} }
990            qw( countrycode phonenum sip_password pin ),
991       } );
992
993     } elsif ( $svc_x eq 'svc_pbx' ) {
994
995       push @svc, new FS::svc_pbx ( {
996           'svcpart' => $svcpart,
997           map { $_ => $packet->{$_} } 
998             qw( id title ),
999           } );
1000     
1001     } else {
1002       die "unknown signup service $svc_x";
1003     }
1004
1005     foreach my $svc ( @svc ) {
1006       my $y = $svc->setdefault; # arguably should be in new method
1007       return { 'error' => $y } if $y && !ref($y);
1008       #$error = $svc->check;
1009       #return { 'error' => $error } if $error;
1010     }
1011
1012     use Tie::RefHash;
1013     tie my %hash, 'Tie::RefHash';
1014     $hash{ $cust_pkg } = \@svc;
1015
1016   }
1017
1018   my %opt = ();
1019   if ( $invoicing_list[0] && $packet->{'_password'} ) {
1020     $opt{'contact'} = [
1021       new FS::contact { 'first'        => $cust_main->first,
1022                         'last'         => $cust_main->get('last'),
1023                         '_password'    => $packet->{'_password'},
1024                         'emailaddress' => $invoicing_list[0],
1025                         'selfservice_access' => 'Y',
1026                       }
1027     ];
1028   }
1029
1030   my $error = $cust_main->insert(
1031     \%hash,
1032     \@invoicing_list,
1033     %opt,
1034   );
1035   return { 'error' => $error } if $error;
1036
1037   my $session = { 'custnum' => $cust_main->custnum };
1038
1039   my $session_id;
1040   do {
1041     $session_id = sha1_hex(time(). {}. rand(). $$)
1042   } until ( ! defined _myaccount_cache->get($session_id) ); #just in case
1043
1044   _cache->set( $session_id, $session, '1 hour' ); # 1 hour?
1045
1046   my %return = ( 'error'          => '',
1047                  'signup_service' => $svc_x,
1048                  'custnum'        => $cust_main->custnum,
1049                  'session_id'     => $session_id,
1050                );
1051
1052   if ( $svc[0] ) {
1053
1054     $return{'svcnum'} = $svc[0]->svcnum;
1055
1056     if ( $svc_x eq 'svc_acct' ) {
1057       $return{$_} = $svc[0]->$_() for qw( username _password );
1058     } elsif ( $svc_x eq 'svc_phone' ) {
1059       $return{$_} = $svc[0]->$_() for qw(countrycode phonenum sip_password pin);
1060     } elsif ( $svc_x eq 'svc_pbx' ) {
1061       #$return{$_} = $svc[0]->$_() for qw( ) #nothing yet
1062      } else {
1063       return {'error' => "configuration error: unknown signup service $svc_x"};
1064       #die "unknown signup service $svc_x";
1065       # return an error that's visible to someone somewhere
1066     }
1067
1068   }
1069
1070   return \%return;
1071
1072 }
1073
1074 use vars qw( $myaccount_cache );
1075 sub _myaccount_cache {
1076   $myaccount_cache ||= new FS::ClientAPI_SessionCache( {
1077                          'namespace' => 'FS::ClientAPI::MyAccount',
1078                        } );
1079 }
1080
1081 sub capture_payment {
1082   my $packet = shift;
1083
1084   warn "$me capture_payment called on $packet\n" if $DEBUG;
1085
1086   ###
1087   # identify processor/gateway from called back URL
1088   ###
1089
1090   my $conf = new FS::Conf;
1091
1092   my $payment_gateway;
1093   if ( my $gwnum = $conf->config('selfservice-payment_gateway') ) {
1094     $payment_gateway = qsearchs('payment_gateway', { 'gatewaynum' => $gwnum })
1095       or die "configured gatewaynum $gwnum not found!";
1096   }
1097   else {
1098     my $url = $packet->{url};
1099
1100     $payment_gateway = qsearchs('payment_gateway', 
1101         { 'gateway_callback_url' => popurl(0, $url) } 
1102       );
1103     if (!$payment_gateway) { 
1104
1105       my ( $processor, $login, $password, $action, @bop_options ) =
1106         $conf->config('business-onlinepayment');
1107       $action ||= 'normal authorization';
1108       pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
1109       die "No real-time processor is enabled - ".
1110           "did you set the business-onlinepayment configuration value?\n"
1111         unless $processor;
1112
1113       $payment_gateway = new FS::payment_gateway( {
1114         gateway_namespace => $conf->config('business-onlinepayment-namespace'),
1115         gateway_module    => $processor,
1116         gateway_username  => $login,
1117         gateway_password  => $password,
1118         gateway_action    => $action,
1119         options   => [ ( @bop_options ) ],
1120       });
1121     }
1122   }
1123  
1124   die "No real-time third party processor is enabled - ".
1125       "did you set the business-onlinepayment configuration value?\n*"
1126     unless $payment_gateway->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
1127
1128   ###
1129   # locate pending transaction
1130   ###
1131
1132   eval "use Business::OnlineThirdPartyPayment";
1133   die $@ if $@;
1134
1135   my $transaction =
1136     new Business::OnlineThirdPartyPayment( $payment_gateway->gateway_module,
1137                                            @{ [ $payment_gateway->options ] },
1138                                          );
1139
1140   my $paypendingnum = $transaction->reference($packet->{data});
1141
1142   my $cust_pay_pending =
1143     qsearchs('cust_pay_pending', { paypendingnum => $paypendingnum } );
1144
1145   unless ($cust_pay_pending) {
1146     my $bill_error = "No payment is being processed with id $paypendingnum".
1147                      "; Transaction aborted.";
1148     return { error => '_decline', bill_error => $bill_error };
1149   }
1150
1151   if ($cust_pay_pending->status ne 'thirdparty') {
1152     my $bill_error = "Payment with id $paypendingnum is not thirdparty, but ".
1153                      $cust_pay_pending->status.  "; Transaction aborted.";
1154     return { error => '_decline', bill_error => $bill_error };
1155   }
1156
1157   my $cust_main = $cust_pay_pending->cust_main;
1158   if ( $packet->{cancel} ) {
1159     # the user has chosen not to make this payment
1160     # (probably should be a separate API call, but I don't want to duplicate
1161     # all of the above...which should eventually go away)
1162     my $error = $cust_pay_pending->delete;
1163     # don't show any errors related to this; they're not meaningful
1164     warn "error canceling pending payment $paypendingnum: $error\n" if $error;
1165     return { 'error'      => '_cancel',
1166              'session_id' => $cust_pay_pending->session_id };
1167   } else {
1168     # create the payment
1169     my $bill_error =
1170       $cust_main->realtime_botpp_capture( $cust_pay_pending, 
1171         %{$packet->{data}},
1172         apply => 1,
1173     );
1174
1175     return { 'error'      => ( $bill_error->{bill_error} ? '_decline' : '' ),
1176              %$bill_error,
1177            };
1178   }
1179
1180 }
1181
1182 1;