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