add signup-duplicate_cc-warn_hours to warn about duplicate signups in a time span...
[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 );
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       'stateid_enabled'    => $conf->exists('show_stateid'),
178       'paystate_enabled'   => $conf->exists('show_bankstate'),
179       'ship_enabled'       => 1,
180       'msgcat'             => $msgcat,
181       'label'              => $label,
182       'statedefault'       => scalar($conf->config('statedefault')) || 'CA',
183       'countrydefault'     => scalar($conf->config('countrydefault')) || 'US',
184       'refnum'             => scalar($conf->config('signup_server-default_refnum')),
185       'signup_service'     => $svc_x,
186       'company_name'       => scalar($conf->config('company_name')),
187       #per-agent?
188       'agent_ship_address' => scalar($conf->exists('agent-ship_address')),
189       'require_phone'      => scalar($conf->exists('cust_main-require_phone')),
190       'logo'               => scalar($conf->config_binary('logo.png')),
191       'prepaid_template_custnum' => $conf->exists('signup_server-prepaid-template-custnum'),
192     };
193
194     $cache->set('signup_info_cache', $signup_info_cache);
195
196   }
197
198   my $signup_info = { %$signup_info_cache };
199   warn "$me signup info loaded\n" if $DEBUG > 1;
200   warn Dumper($signup_info). "\n" if $DEBUG > 2;
201
202   my @addl = qw( signup_server-classnum2 signup_server-classnum3 );
203
204   if ( grep { $conf->exists($_) } @addl ) {
205   
206     $signup_info->{optional_packages} = [];
207
208     foreach my $addl ( @addl ) {
209
210       warn "$me adding optional package info\n" if $DEBUG > 1;
211
212       my $classnum = $conf->config($addl) or next;
213
214       my @pkgs = map { {
215                          'freq_pretty' => $_->freq_pretty,
216                          'options'     => { $_->options },
217                          %{ $_->hashref }
218                        };
219                      }
220                      qsearch( 'part_pkg', { classnum => $classnum } );
221
222       push @{$signup_info->{optional_packages}}, \@pkgs;
223
224       warn "$me done adding opt. package info for $classnum\n" if $DEBUG > 1;
225
226     }
227
228   }
229
230   my $agentnum = $packet->{'agentnum'}
231                  || $conf->config('signup_server-default_agentnum');
232   $agentnum =~ /^(\d*)$/ or die "illegal agentnum";
233   $agentnum = $1;
234
235   my $session = '';
236   if ( exists $packet->{'session_id'} ) {
237
238     warn "$me loading agent session\n" if $DEBUG > 1;
239     my $cache = new FS::ClientAPI_SessionCache( {
240       'namespace' => 'FS::ClientAPI::Agent',
241     } );
242     $session = $cache->get($packet->{'session_id'});
243     if ( $session ) {
244       $agentnum = $session->{'agentnum'};
245     } else {
246       return { 'error' => "Can't resume session" }; #better error message
247     }
248     warn "$me done loading agent session\n" if $DEBUG > 1;
249
250   } elsif ( exists $packet->{'customer_session_id'} ) {
251
252     warn "$me loading customer session\n" if $DEBUG > 1;
253     my $cache = new FS::ClientAPI_SessionCache( {
254       'namespace' => 'FS::ClientAPI::MyAccount',
255     } );
256     $session = $cache->get($packet->{'customer_session_id'});
257     if ( $session ) {
258       my $custnum = $session->{'custnum'};
259       my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum });
260       return { 'error' => "Can't find your customer record" } unless $cust_main;
261       $agentnum = $cust_main->agentnum;
262     } else {
263       return { 'error' => "Can't resume session" }; #better error message
264     }
265     warn "$me done loading customer session\n" if $DEBUG > 1;
266
267   }
268
269   $signup_info->{'part_pkg'} = [];
270
271   if ( $packet->{'reg_code'} ) {
272
273     warn "$me setting package list via reg_code\n" if $DEBUG > 1;
274
275     $signup_info->{'part_pkg'} = 
276       [ map { { 'payby'       => [ $_->payby ],
277                 'freq_pretty' => $_->freq_pretty,
278                 'options'     => { $_->options },
279                 %{$_->hashref}
280               };
281             }
282           grep { $_->svcpart($svc_x) }
283           map { $_->part_pkg }
284             qsearchs( 'reg_code', { 'code'     => $packet->{'reg_code'},
285                                     'agentnum' => $agentnum,              } )
286
287       ];
288
289     $signup_info->{'error'} = 'Unknown registration code'
290       unless @{ $signup_info->{'part_pkg'} };
291
292     warn "$me done setting package list via reg_code\n" if $DEBUG > 1;
293
294   } elsif ( $packet->{'promo_code'} ) {
295
296     warn "$me setting package list via promo_code\n" if $DEBUG > 1;
297
298     $signup_info->{'part_pkg'} =
299       [ map { { 'payby'   => [ $_->payby ],
300                 'freq_pretty' => $_->freq_pretty,
301                 'options'     => { $_->options },
302                 %{$_->hashref}
303             } }
304           grep { $_->svcpart($svc_x) }
305             qsearch( 'part_pkg', { 'promo_code' => {
306                                      op=>'ILIKE',
307                                      value=>$packet->{'promo_code'}
308                                    },
309                                    'disabled'   => '',                  } )
310       ];
311
312     $signup_info->{'error'} = 'Unknown promotional code'
313       unless @{ $signup_info->{'part_pkg'} };
314
315     warn "$me done setting package list via promo_code\n" if $DEBUG > 1;
316   }
317
318   if ( $agentnum ) {
319
320     warn "$me setting agent-specific payment flag\n" if $DEBUG > 1;
321     my $agent = qsearchs('agent', { 'agentnum' => $agentnum } )
322       or return { 'error' => "Self-service agent #$agentnum does not exist" };
323     warn "$me has agent $agent\n" if $DEBUG > 1;
324     my @paybys = @{ $signup_info->{'payby'} };
325     $signup_info->{'hide_payment_fields'} = [];
326
327     my $gatewaynum = $conf->config('selfservice-payment_gateway');
328     my $force_gateway;
329     if ( $gatewaynum ) {
330       $force_gateway = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
331       warn "using forced gateway #$gatewaynum - " .
332         $force_gateway->gateway_username . '@' . $force_gateway->gateway_module
333         if $DEBUG > 1;
334       die "configured gatewaynum $gatewaynum not found!" if !$force_gateway;
335     }
336     foreach my $payby (@paybys) {
337       warn "$me checking $payby payment fields\n" if $DEBUG > 1;
338       my $hide = 0;
339       if ( FS::payby->realtime($payby) ) {
340         my $gateway = $force_gateway || 
341           $agent->payment_gateway( 'method'  => FS::payby->payby2bop($payby),
342                                    'nofatal' => 1,
343                                  );
344         if ( $gateway && $gateway->gateway_namespace
345                     eq 'Business::OnlineThirdPartyPayment'
346            ) {
347           warn "$me hiding $payby payment fields\n" if $DEBUG > 1;
348           $hide = 1;
349         }
350       }
351       push @{$signup_info->{'hide_payment_fields'}}, $hide;
352     } # foreach $payby
353     warn "$me done setting agent-specific payment flag\n" if $DEBUG > 1;
354
355     warn "$me setting agent-specific package list\n" if $DEBUG > 1;
356     $signup_info->{'part_pkg'} = $signup_info->{'agentnum2part_pkg'}{$agentnum}
357       unless @{ $signup_info->{'part_pkg'} };
358     warn "$me done setting agent-specific package list\n" if $DEBUG > 1;
359
360     warn "$me setting agent-specific adv. source list\n" if $DEBUG > 1;
361     $signup_info->{'part_referral'} =
362       [
363         map { $_->hashref }
364           qsearch( {
365                      'table'     => 'part_referral',
366                      'hashref'   => { 'disabled' => '' },
367                      'extra_sql' => "AND (    agentnum = $agentnum  ".
368                                     "      OR agentnum IS NULL    ) ",
369                    },
370                  )
371       ];
372     warn "$me done setting agent-specific adv. source list\n" if $DEBUG > 1;
373
374     $signup_info->{'agent_name'} = $agent->agent;
375
376     $signup_info->{'company_name'} = $conf->config('company_name', $agentnum);
377
378     if ( $signup_info->{'agent_ship_address'} && $agent->agent_custnum ) {
379       my $cust_main = $agent->agent_cust_main;
380       my $prefix = length($cust_main->ship_last) ? 'ship_' : '';
381       $signup_info->{"ship_$_"} = $cust_main->get("$prefix$_")
382         foreach qw( address1 city county state zip country );
383     }
384
385     #some of the above could probably be cached, too
386
387     my $signup_info_cache_agent = $cache->get("signup_info_cache_agent$agentnum");
388
389     if ( $signup_info_cache_agent ) {
390
391       warn "$me loading cached signup info for agentnum $agentnum\n"
392         if $DEBUG > 1;
393
394     } else {
395
396       warn "$me populating signup info cache for agentnum $agentnum\n"
397         if $DEBUG > 1;
398
399       $signup_info_cache_agent = {
400         #( map { $_ => scalar( $conf->config($_, $agentnum) ) }
401         #  qw( company_name ) ),
402         ( map { $_ => scalar( $conf->config("selfservice-$_", $agentnum ) ) }
403           qw( body_bgcolor box_bgcolor menu_bgcolor ) ),
404         ( map { $_ => join("\n", $conf->config("selfservice-$_", $agentnum ) ) }
405           qw( head body_header body_footer ) ),
406       };
407
408       $cache->set("signup_info_cache_agent$agentnum", $signup_info_cache_agent);
409
410     }
411
412     $signup_info->{$_} = $signup_info_cache_agent->{$_}
413       foreach keys %$signup_info_cache_agent;
414
415   }
416   # else {
417   # delete $signup_info->{'part_pkg'};
418   #}
419
420   warn "$me sorting package list\n" if $DEBUG > 1;
421   $signup_info->{'part_pkg'} = [ sort { $a->{pkg} cmp $b->{pkg} }  # case?
422                                       @{ $signup_info->{'part_pkg'} }
423                                ];
424   warn "$me done sorting package list\n" if $DEBUG > 1;
425
426   if ( exists $packet->{'session_id'} ) {
427     my $agent_signup_info = { %$signup_info };
428     delete $agent_signup_info->{agentnum2part_pkg};
429     $agent_signup_info->{'agent'} = $session->{'agent'};
430     return $agent_signup_info;
431   } 
432   elsif ( exists $packet->{'keys'} ) {
433     my @keys = @{ $packet->{'keys'} };
434     return { map { $_ => $signup_info->{$_} } @keys };
435   }
436   else {
437     return $signup_info;
438   }
439
440 }
441
442 sub domain_select_hash {
443   my $packet = shift;
444
445   my $response = {};
446
447   if ($packet->{pkgpart}) {
448     my $part_pkg = qsearchs('part_pkg' => { 'pkgpart' => $packet->{pkgpart} } );
449     #$packet->{svcpart} = $part_pkg->svcpart('svc_acct')
450     $packet->{svcpart} = $part_pkg->svcpart
451       if $part_pkg;
452   }
453
454   if ($packet->{svcpart}) {
455     my $part_svc = qsearchs('part_svc' => { 'svcpart' => $packet->{svcpart} } );
456     $response->{'domsvc'} = $part_svc->part_svc_column('domsvc')->columnvalue
457       if ($part_svc && $part_svc->part_svc_column('domsvc')->columnflag  eq 'D');
458   }
459
460   $response->{'domains'}
461     = { domain_select_hash FS::svc_acct( map { $_ => $packet->{$_} }
462                                                  qw(svcpart pkgnum)
463                                        ) };
464
465   $response;
466 }
467
468 sub new_customer {
469   my $packet = shift;
470
471   my $conf = new FS::Conf;
472   my $svc_x = $conf->config('signup_server-service') || 'svc_acct';
473
474   if ( $svc_x eq 'svc_acct' ) {
475   
476     #things that aren't necessary in base class, but are for signup server
477       #return "Passwords don't match"
478       #  if $hashref->{'_password'} ne $hashref->{'_password2'}
479     return { 'error' => gettext('empty_password') }
480       unless length($packet->{'_password'});
481     # a bit inefficient for large numbers of pops
482     return { 'error' => gettext('no_access_number_selected') }
483       unless $packet->{'popnum'} || !scalar(qsearch('svc_acct_pop',{} ));
484
485   }
486   elsif ( $svc_x eq 'svc_pbx' ) {
487     #possibly some validation will be needed
488   }
489
490   my $agentnum;
491   if ( exists $packet->{'session_id'} ) {
492     my $cache = new FS::ClientAPI_SessionCache( {
493       'namespace' => 'FS::ClientAPI::Agent',
494     } );
495     my $session = $cache->get($packet->{'session_id'});
496     if ( $session ) {
497       $agentnum = $session->{'agentnum'};
498     } else {
499       return { 'error' => "Can't resume session" }; #better error message
500     }
501   } else {
502     $agentnum = $packet->{agentnum}
503                 || $conf->config('signup_server-default_agentnum');
504   }
505
506   #shares some stuff with htdocs/edit/process/cust_main.cgi... take any
507   # common that are still here and library them.
508   my $template_custnum = $conf->config('signup_server-prepaid-template-custnum');
509   my $cust_main;
510   if ( $template_custnum && $packet->{prepaid_shortform} ) {
511
512     my $template_cust = qsearchs('cust_main', { 'custnum' => $template_custnum } );
513     return { 'error' => 'Configuration error' } unless $template_cust;
514     $cust_main = new FS::cust_main ( {
515       'agentnum'      => $agentnum,
516       'refnum'        => $packet->{refnum}
517                          || $conf->config('signup_server-default_refnum'),
518
519       ( map { $_ => $template_cust->$_ } qw( 
520               last first company address1 address2 
521               city county state zip country
522               daytime night fax 
523
524               ship_last ship_first ship_company ship_address1 ship_address2
525               ship_city ship_county ship_state ship_zip ship_country
526               ship_daytime ship_night ship_fax
527             )
528       ),
529
530       ( map { $_ => $packet->{$_} } qw(
531               ss stateid stateid_state
532
533               payby
534               payinfo paycvv paydate payname paystate paytype
535               paystart_month paystart_year payissue
536               payip
537
538               referral_custnum comments
539             )
540       ),
541
542     } );
543
544   } else {
545
546     $cust_main = new FS::cust_main ( {
547       #'custnum'          => '',
548       'agentnum'      => $agentnum,
549       'refnum'        => $packet->{refnum}
550                          || $conf->config('signup_server-default_refnum'),
551
552       map { $_ => $packet->{$_} } qw(
553
554         last first ss company address1 address2
555         city county state zip country
556         daytime night fax stateid stateid_state
557
558         ship_last ship_first ship_ss ship_company ship_address1 ship_address2
559         ship_city ship_county ship_state ship_zip ship_country
560         ship_daytime ship_night ship_fax
561
562         payby
563         payinfo paycvv paydate payname paystate paytype
564         paystart_month paystart_year payissue
565         payip
566         override_ban_warn
567
568         referral_custnum comments
569       )
570
571     } );
572   }
573
574   my $agent = qsearchs('agent', { 'agentnum' => $agentnum } );
575   if ( $conf->exists('agent_ship_address') && $agent->agent_custnum ) {
576     my $agent_cust_main = $agent->agent_cust_main;
577     my $prefix = length($agent_cust_main->ship_last) ? 'ship_' : '';
578     $cust_main->set("ship_$_", $agent_cust_main->get("$prefix$_") )
579       foreach qw( address1 city county state zip country );
580
581     $cust_main->set("ship_$_", $cust_main->get($_))
582       foreach qw( last first );
583
584   }
585
586
587   return { 'error' => "Illegal payment type" }
588     unless grep { $_ eq $packet->{'payby'} }
589                 $conf->config('signup_server-payby');
590
591   if (FS::payby->realtime($packet->{payby})
592     and not $conf->exists('signup_server-third_party_as_card')) {
593     my $payby = $packet->{payby};
594
595     my $agent = qsearchs('agent', { 'agentnum' => $agentnum });
596     return { 'error' => "Unknown reseller" }
597       unless $agent;
598
599     my $gw;
600     my $gatewaynum = $conf->config('selfservice-payment_gateway');
601     if ( $gatewaynum ) {
602       $gw = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
603       die "configured gatewaynum $gatewaynum not found!" if !$gw;
604     }
605     else {
606       $gw = $agent->payment_gateway( 'method'  => FS::payby->payby2bop($payby),
607                                      'nofatal' => 1,
608                                     );
609     }
610
611     $cust_main->payby('BILL')   # MCRD better?
612       if $gw && $gw->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
613   }
614
615   $cust_main->payinfo($cust_main->daytime)
616     if $cust_main->payby eq 'LECB' && ! $cust_main->payinfo;
617
618   my @invoicing_list = $packet->{'invoicing_list'}
619                          ? split( /\s*\,\s*/, $packet->{'invoicing_list'} )
620                          : ();
621
622   $packet->{'pkgpart'} =~ /^(\d+)$/ or '' =~ /^()$/;
623   my $pkgpart = $1;
624   return { 'error' => 'Please select a package' } unless $pkgpart; #msgcat
625
626   my $part_pkg =
627     qsearchs( 'part_pkg', { 'pkgpart' => $pkgpart } )
628       or return { 'error' => "WARNING: unknown pkgpart: $pkgpart" };
629   my $svcpart = $part_pkg->svcpart($svc_x);
630
631   my $reg_code = '';
632   if ( $packet->{'reg_code'} ) {
633     $reg_code = qsearchs( 'reg_code', { 'code'     => $packet->{'reg_code'},
634                                         'agentnum' => $agentnum,             } )
635       or return { 'error' => 'Unknown registration code' };
636   }
637
638   my $cust_pkg = new FS::cust_pkg ( {
639     #later#'custnum' => $custnum,
640     'pkgpart'    => $packet->{'pkgpart'},
641     'promo_code' => $packet->{'promo_code'},
642     'reg_code'   => $packet->{'reg_code'},
643   } );
644   #my $error = $cust_pkg->check;
645   #return { 'error' => $error } if $error;
646
647   #should be all auto-magic and shit
648   my @svc = ();
649   if ( $svc_x eq 'svc_acct' ) {
650
651     my $svc = new FS::svc_acct {
652       'svcpart'   => $svcpart,
653       map { $_ => $packet->{$_} }
654         qw( username _password sec_phrase popnum ),
655     };
656
657     my @acct_snarf;
658     my $snarfnum = 1;
659     while (    exists($packet->{"snarf_machine$snarfnum"})
660             && length($packet->{"snarf_machine$snarfnum"}) ) {
661       my $acct_snarf = new FS::acct_snarf ( {
662         'machine'   => $packet->{"snarf_machine$snarfnum"},
663         'protocol'  => $packet->{"snarf_protocol$snarfnum"},
664         'username'  => $packet->{"snarf_username$snarfnum"},
665         '_password' => $packet->{"snarf_password$snarfnum"},
666       } );
667       $snarfnum++;
668       push @acct_snarf, $acct_snarf;
669     }
670     $svc->child_objects( \@acct_snarf );
671     push @svc, $svc;
672
673   } elsif ( $svc_x eq 'svc_phone' ) {
674
675     push @svc, new FS::svc_phone ( {
676       'svcpart' => $svcpart,
677        map { $_ => $packet->{$_} }
678          qw( countrycode phonenum sip_password pin ),
679     } );
680
681   } elsif ( $svc_x eq 'svc_pbx' ) {
682
683     push @svc, new FS::svc_pbx ( {
684         'svcpart' => $svcpart,
685         map { $_ => $packet->{$_} } 
686           qw( id title ),
687         } );
688   
689   } else {
690     die "unknown signup service $svc_x";
691   }
692
693   if ($packet->{'mac_addr'} && $conf->exists('signup_server-mac_addr_svcparts'))
694   {
695
696     my %mac_addr_svcparts = map { $_ => 1 }
697                             $conf->config('signup_server-mac_addr_svcparts');
698     my @pkg_svc = grep { $_->quantity && $mac_addr_svcparts{$_->svcpart} }
699                   $cust_pkg->part_pkg->pkg_svc;
700
701     return { 'error' => 'No service defined to assign mac address' }
702       unless @pkg_svc;
703
704     my $svc = new FS::svc_acct {
705       'svcpart'   => $pkg_svc[0]->svcpart, #multiple matches? alas..
706       'username'  => $packet->{'mac_addr'},
707       '_password' => '', #blank as requested (set passwordmin to 0)
708     };
709
710     push @svc, $svc;
711
712   }
713
714   foreach my $svc ( @svc ) {
715     my $y = $svc->setdefault; # arguably should be in new method
716     return { 'error' => $y } if $y && !ref($y);
717     #$error = $svc->check;
718     #return { 'error' => $error } if $error;
719   }
720
721   #setup a job dependancy to delay provisioning
722   my $placeholder = new FS::queue ( {
723     'job'    => 'FS::ClientAPI::Signup::__placeholder',
724     'status' => 'locked',
725   } );
726   my $error = $placeholder->insert;
727   return { 'error' => $error } if $error;
728
729   use Tie::RefHash;
730   tie my %hash, 'Tie::RefHash';
731   %hash = ( $cust_pkg => \@svc );
732   #msgcat
733   $error = $cust_main->insert(
734     \%hash,
735     \@invoicing_list,
736     'depend_jobnum' => $placeholder->jobnum,
737   );
738   if ( $error ) {
739     my $perror = $placeholder->delete;
740     $error .= " (Additionally, error removing placeholder: $perror)" if $perror;
741     return { 'error' => $error };
742   }
743
744   if ( $conf->exists('signup_server-realtime') ) {
745
746     #warn "$me Billing customer...\n" if $Debug;
747
748     my $bill_error = $cust_main->bill( 'depend_jobnum'=>$placeholder->jobnum );
749     #warn "$me error billing new customer: $bill_error"
750     #  if $bill_error;
751
752     $bill_error = $cust_main->apply_payments_and_credits;
753     #warn "$me error applying payments and credits for".
754     #     " new customer: $bill_error"
755     #  if $bill_error;
756
757     $bill_error = $cust_main->realtime_collect(
758        method        => FS::payby->payby2bop( $packet->{payby} ),
759        depend_jobnum => $placeholder->jobnum,
760        selfservice   => 1,
761     );
762     #warn "$me error collecting from new customer: $bill_error"
763     #  if $bill_error;
764
765     if ($bill_error && ref($bill_error) eq 'HASH') {
766       return { 'error' => '_collect',
767                ( map { $_ => $bill_error->{$_} }
768                  qw(popup_url reference collectitems)
769                ),
770                amount => $cust_main->balance,
771              };
772     }
773
774     $bill_error = $cust_main->apply_payments_and_credits;
775     #warn "$me error applying payments and credits for".
776     #     " new customer: $bill_error"
777     #  if $bill_error;
778
779     if ( $cust_main->balance > 0 ) {
780
781       #this makes sense.  credit is "un-doing" the invoice
782       $cust_main->credit( $cust_main->balance, 'signup server decline',
783                           'reason_type' => $conf->config('signup_credit_type'),
784                         );
785       $cust_main->apply_credits;
786
787       #should check list for errors...
788       #$cust_main->suspend;
789       local $FS::svc_Common::noexport_hack = 1;
790       $cust_main->cancel('quiet'=>1);
791
792       my $perror = $placeholder->depended_delete;
793       warn "error removing provisioning jobs after decline: $perror" if $perror;
794       unless ( $perror ) {
795         $perror = $placeholder->delete;
796         warn "error removing placeholder after decline: $perror" if $perror;
797       }
798
799       return { 'error' => '_decline' };
800     }
801
802   }
803
804   if ( $reg_code ) {
805     $error = $reg_code->delete;
806     return { 'error' => $error } if $error;
807   }
808
809   $error = $placeholder->delete;
810   return { 'error' => $error } if $error;
811
812   if ( $conf->exists('signup-duplicate_cc-warn_hours') ) {
813     my $hours = $conf->config('signup-duplicate_cc-warn_hours');
814     my $ban = new FS::banned_pay $cust_main->_new_banned_pay_hashref;
815     $ban->end_date( int( time + $hours*3600 ) );
816     $ban->bantype('warn');
817     $ban->reason('signup-duplicate_cc-warn_hours');
818     $error = $ban->insert;
819     warn "WARNING: error inserting temporary banned_pay for ".
820          " signup-duplicate_cc-warn_hours (proceeding anyway): $error"
821       if $error;
822   }
823
824   my %return = ( 'error'          => '',
825                  'signup_service' => $svc_x,
826                  'custnum'        => $cust_main->custnum,
827                );
828
829   if ( $svc[0] ) {
830
831     $return{'svcnum'} = $svc[0]->svcnum;
832
833     if ( $svc_x eq 'svc_acct' ) {
834       $return{$_} = $svc[0]->$_() for qw( username _password );
835     } elsif ( $svc_x eq 'svc_phone' ) {
836       $return{$_} = $svc[0]->$_() for qw(countrycode phonenum sip_password pin);
837     } elsif ( $svc_x eq 'svc_pbx' ) {
838       #$return{$_} = $svc[0]->$_() for qw( ) #nothing yet
839      } else {
840       return {'error' => "configuration error: unknown signup service $svc_x"};
841       #die "unknown signup service $svc_x";
842       # return an error that's visible to someone somewhere
843     }
844
845   }
846
847   return \%return;
848
849 }
850
851 sub capture_payment {
852   my $packet = shift;
853
854   warn "$me capture_payment called on $packet\n" if $DEBUG;
855
856   ###
857   # identify processor/gateway from called back URL
858   ###
859
860   my $conf = new FS::Conf;
861
862   my $payment_gateway;
863   if ( my $gwnum = $conf->config('selfservice-payment_gateway') ) {
864     $payment_gateway = qsearchs('payment_gateway', { 'gatewaynum' => $gwnum })
865       or die "configured gatewaynum $gwnum not found!";
866   }
867   else {
868     my $url = $packet->{url};
869
870     $payment_gateway = qsearchs('payment_gateway', 
871         { 'gateway_callback_url' => popurl(0, $url) } 
872       );
873     if (!$payment_gateway) { 
874
875       my ( $processor, $login, $password, $action, @bop_options ) =
876         $conf->config('business-onlinepayment');
877       $action ||= 'normal authorization';
878       pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
879       die "No real-time processor is enabled - ".
880           "did you set the business-onlinepayment configuration value?\n"
881         unless $processor;
882
883       $payment_gateway = new FS::payment_gateway( {
884         gateway_namespace => $conf->config('business-onlinepayment-namespace'),
885         gateway_module    => $processor,
886         gateway_username  => $login,
887         gateway_password  => $password,
888         gateway_action    => $action,
889         options   => [ ( @bop_options ) ],
890       });
891     }
892   }
893  
894   die "No real-time third party processor is enabled - ".
895       "did you set the business-onlinepayment configuration value?\n*"
896     unless $payment_gateway->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
897
898   ###
899   # locate pending transaction
900   ###
901
902   eval "use Business::OnlineThirdPartyPayment";
903   die $@ if $@;
904
905   my $transaction =
906     new Business::OnlineThirdPartyPayment( $payment_gateway->gateway_module,
907                                            @{ [ $payment_gateway->options ] },
908                                          );
909
910   my $paypendingnum = $transaction->reference($packet->{data});
911
912   my $cust_pay_pending =
913     qsearchs('cust_pay_pending', { paypendingnum => $paypendingnum } );
914
915   unless ($cust_pay_pending) {
916     my $bill_error = "No payment is being processed with id $paypendingnum".
917                      "; Transaction aborted.";
918     return { error => '_decline', bill_error => $bill_error };
919   }
920
921   if ($cust_pay_pending->status ne 'thirdparty') {
922     my $bill_error = "Payment with id $paypendingnum is not thirdparty, but ".
923                      $cust_pay_pending->status.  "; Transaction aborted.";
924     return { error => '_decline', bill_error => $bill_error };
925   }
926
927   my $cust_main = $cust_pay_pending->cust_main;
928   my $bill_error =
929     $cust_main->realtime_botpp_capture( $cust_pay_pending, 
930       %{$packet->{data}},
931       apply => 1,
932   );
933
934   return { 'error'      => ( $bill_error->{bill_error} ? '_decline' : '' ),
935            %$bill_error,
936          };
937
938 }
939
940 1;