This commit was generated by cvs2svn to compensate for changes in r11022,
[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
26 $DEBUG = 0;
27 $me = '[FS::ClientAPI::Signup]';
28
29 sub clear_cache {
30   warn "$me clear_cache called\n" if $DEBUG;
31   my $cache = new FS::ClientAPI_SessionCache( {
32       'namespace' => 'FS::ClientAPI::Signup',
33   } );
34   $cache->clear();
35   return {};
36 }
37
38 sub signup_info {
39   my $packet = shift;
40
41   warn "$me signup_info called on $packet\n" if $DEBUG;
42
43   my $conf = new FS::Conf;
44   my $svc_x = $conf->config('signup_server-service') || 'svc_acct';
45
46   my $cache = new FS::ClientAPI_SessionCache( {
47     'namespace' => 'FS::ClientAPI::Signup',
48   } );
49   my $signup_info_cache = $cache->get('signup_info_cache');
50
51   if ( $signup_info_cache ) {
52
53     warn "$me loading cached signup info\n" if $DEBUG > 1;
54
55   } else {
56
57     warn "$me populating signup info cache\n" if $DEBUG > 1;
58
59     my $agentnum2part_pkg = 
60       {
61         map {
62           my $agent = $_;
63           my $href = $agent->pkgpart_hashref;
64           $agent->agentnum =>
65             [
66               map { { 'payby'       => [ $_->payby ],
67                       'freq_pretty' => $_->freq_pretty,
68                       'options'     => { $_->options },
69                       %{$_->hashref}
70                   } }
71                 grep { $_->svcpart($svc_x)
72                        && ( $href->{ $_->pkgpart }
73                             || ( $_->agentnum
74                                  && $_->agentnum == $agent->agentnum
75                                )
76                           )
77                      }
78                   qsearch( 'part_pkg', { 'disabled' => '' } )
79             ];
80         } qsearch('agent', { 'disabled' => '' })
81       };
82
83     my $msgcat = { map { $_=>gettext($_) }
84                        qw( passwords_dont_match invalid_card unknown_card_type
85                            not_a empty_password illegal_or_empty_text )
86                  };
87     warn "msgcat: ". Dumper($msgcat). "\n" if $DEBUG > 2;
88
89     my $label = { map { $_ => FS::Msgcat::_gettext($_) }
90                       qw( stateid stateid_state )
91                 };
92     warn "label: ". Dumper($label). "\n" if $DEBUG > 2;
93
94     my @agent_fields = qw( agentnum agent );
95
96     my @bools = qw( emailinvoiceonly security_phrase );
97
98     my @signup_bools = qw( no_company recommend_daytime recommend_email );
99
100     my @signup_server_scalars = qw( default_pkgpart default_svcpart );
101
102     my @selfservice_textareas = qw( head body_header body_footer );
103
104     my @selfservice_scalars = qw(
105       body_bgcolor box_bgcolor
106       text_color link_color vlink_color hlink_color alink_color
107       font title_color title_align title_size menu_bgcolor menu_fontsize
108     );
109
110     #XXX my @selfservice_bools = qw(
111     #  menu_skipblanks menu_skipheadings menu_nounderline
112     #);
113
114     #my $selfservice_binaries = qw(
115     #  title_left_image title_right_image
116     #  menu_top_image menu_body_image menu_bottom_image
117     #);
118
119     $signup_info_cache = {
120
121       'cust_main_county' => [ map $_->hashref,
122                                   qsearch('cust_main_county', {} )
123                             ],
124
125       'agent' => [ map { my $agent = $_;
126                          +{ map { $_ => $agent->get($_) } @agent_fields }
127                        }
128                        qsearch('agent', { 'disabled' => '' } )
129                  ],
130
131       'part_referral' => [ map $_->hashref,
132                                qsearch('part_referral', { 'disabled' => '' } )
133                          ],
134
135       'agentnum2part_pkg' => $agentnum2part_pkg,
136
137       'svc_acct_pop' => [ map $_->hashref, qsearch('svc_acct_pop',{} ) ],
138
139       'emailinvoiceonly' => $conf->exists('emailinvoiceonly'),
140
141       'security_phrase' => $conf->exists('security_phrase'),
142
143       'nomadix' => $conf->exists('signup_server-nomadix'),
144
145       'payby' => [ $conf->config('signup_server-payby') ],
146
147       'payby_longname' => [ map { FS::payby->longname($_) } 
148                             $conf->config('signup_server-payby') ],
149
150       'card_types' => card_types(),
151
152       ( map { $_ => $conf->exists("signup-$_") } @signup_bools ),
153
154       ( map { $_ => scalar($conf->config("signup_server-$_")) }
155             @signup_server_scalars
156       ),
157
158       ( map { $_ => join("\n", $conf->config("selfservice-$_")) }
159             @selfservice_textareas
160       ),
161       ( map { $_ => scalar($conf->config("selfservice-$_")) }
162             @selfservice_scalars
163       ),
164
165       #( map { $_ => scalar($conf->config_binary("selfservice-$_")) }
166       #      @selfservice_binaries
167       #),
168
169       'agentnum2part_pkg'  => $agentnum2part_pkg,
170       'svc_acct_pop'       => [ map $_->hashref, qsearch('svc_acct_pop',{} ) ],
171       'nomadix'            => $conf->exists('signup_server-nomadix'),
172       'payby'              => [ $conf->config('signup_server-payby') ],
173       'card_types'         => card_types(),
174       'paytypes'           => [ @FS::cust_main::paytypes ],
175       'cvv_enabled'        => 1,
176       'stateid_enabled'    => $conf->exists('show_stateid'),
177       'paystate_enabled'   => $conf->exists('show_bankstate'),
178       'ship_enabled'       => 1,
179       'msgcat'             => $msgcat,
180       'label'              => $label,
181       'statedefault'       => scalar($conf->config('statedefault')) || 'CA',
182       'countrydefault'     => scalar($conf->config('countrydefault')) || 'US',
183       'refnum'             => scalar($conf->config('signup_server-default_refnum')),
184       'signup_service'     => $svc_x,
185       'company_name'       => scalar($conf->config('company_name')),
186       #per-agent?
187       'agent_ship_address' => scalar($conf->exists('agent-ship_address')),
188       'require_phone'      => scalar($conf->exists('cust_main-require_phone')),
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     if ( $signup_info->{'agent_ship_address'} && $agent->agent_custnum ) {
378       my $cust_main = $agent->agent_cust_main;
379       my $prefix = length($cust_main->ship_last) ? 'ship_' : '';
380       $signup_info->{"ship_$_"} = $cust_main->get("$prefix$_")
381         foreach qw( address1 city county state zip country );
382     }
383
384     #some of the above could probably be cached, too
385
386     my $signup_info_cache_agent = $cache->get("signup_info_cache_agent$agentnum");
387
388     if ( $signup_info_cache_agent ) {
389
390       warn "$me loading cached signup info for agentnum $agentnum\n"
391         if $DEBUG > 1;
392
393     } else {
394
395       warn "$me populating signup info cache for agentnum $agentnum\n"
396         if $DEBUG > 1;
397
398       $signup_info_cache_agent = {
399         #( map { $_ => scalar( $conf->config($_, $agentnum) ) }
400         #  qw( company_name ) ),
401         ( map { $_ => scalar( $conf->config("selfservice-$_", $agentnum ) ) }
402           qw( body_bgcolor box_bgcolor menu_bgcolor ) ),
403         ( map { $_ => join("\n", $conf->config("selfservice-$_", $agentnum ) ) }
404           qw( head body_header body_footer ) ),
405       };
406
407       $cache->set("signup_info_cache_agent$agentnum", $signup_info_cache_agent);
408
409     }
410
411     $signup_info->{$_} = $signup_info_cache_agent->{$_}
412       foreach keys %$signup_info_cache_agent;
413
414   }
415   # else {
416   # delete $signup_info->{'part_pkg'};
417   #}
418
419   warn "$me sorting package list\n" if $DEBUG > 1;
420   $signup_info->{'part_pkg'} = [ sort { $a->{pkg} cmp $b->{pkg} }  # case?
421                                       @{ $signup_info->{'part_pkg'} }
422                                ];
423   warn "$me done sorting package list\n" if $DEBUG > 1;
424
425   if ( exists $packet->{'session_id'} ) {
426     my $agent_signup_info = { %$signup_info };
427     delete $agent_signup_info->{agentnum2part_pkg};
428     $agent_signup_info->{'agent'} = $session->{'agent'};
429     return $agent_signup_info;
430   } 
431   elsif ( exists $packet->{'keys'} ) {
432     my @keys = @{ $packet->{'keys'} };
433     return { map { $_ => $signup_info->{$_} } @keys };
434   }
435   else {
436     return $signup_info;
437   }
438
439 }
440
441 sub domain_select_hash {
442   my $packet = shift;
443
444   my $response = {};
445
446   if ($packet->{pkgpart}) {
447     my $part_pkg = qsearchs('part_pkg' => { 'pkgpart' => $packet->{pkgpart} } );
448     #$packet->{svcpart} = $part_pkg->svcpart('svc_acct')
449     $packet->{svcpart} = $part_pkg->svcpart
450       if $part_pkg;
451   }
452
453   if ($packet->{svcpart}) {
454     my $part_svc = qsearchs('part_svc' => { 'svcpart' => $packet->{svcpart} } );
455     $response->{'domsvc'} = $part_svc->part_svc_column('domsvc')->columnvalue
456       if ($part_svc && $part_svc->part_svc_column('domsvc')->columnflag  eq 'D');
457   }
458
459   $response->{'domains'}
460     = { domain_select_hash FS::svc_acct( map { $_ => $packet->{$_} }
461                                                  qw(svcpart pkgnum)
462                                        ) };
463
464   $response;
465 }
466
467 sub new_customer {
468   my $packet = shift;
469
470   my $conf = new FS::Conf;
471   my $svc_x = $conf->config('signup_server-service') || 'svc_acct';
472
473   if ( $svc_x eq 'svc_acct' ) {
474   
475     #things that aren't necessary in base class, but are for signup server
476       #return "Passwords don't match"
477       #  if $hashref->{'_password'} ne $hashref->{'_password2'}
478     return { 'error' => gettext('empty_password') }
479       unless length($packet->{'_password'});
480     # a bit inefficient for large numbers of pops
481     return { 'error' => gettext('no_access_number_selected') }
482       unless $packet->{'popnum'} || !scalar(qsearch('svc_acct_pop',{} ));
483
484   }
485   elsif ( $svc_x eq 'svc_pbx' ) {
486     #possibly some validation will be needed
487   }
488
489   my $agentnum;
490   if ( exists $packet->{'session_id'} ) {
491     my $cache = new FS::ClientAPI_SessionCache( {
492       'namespace' => 'FS::ClientAPI::Agent',
493     } );
494     my $session = $cache->get($packet->{'session_id'});
495     if ( $session ) {
496       $agentnum = $session->{'agentnum'};
497     } else {
498       return { 'error' => "Can't resume session" }; #better error message
499     }
500   } else {
501     $agentnum = $packet->{agentnum}
502                 || $conf->config('signup_server-default_agentnum');
503   }
504
505   #shares some stuff with htdocs/edit/process/cust_main.cgi... take any
506   # common that are still here and library them.
507   my $template_custnum = $conf->config('signup_server-prepaid-template-custnum');
508   my $cust_main;
509   if ( $template_custnum && $packet->{prepaid_shortform} ) {
510
511     my $template_cust = qsearchs('cust_main', { 'custnum' => $template_custnum } );
512     return { 'error' => 'Configuration error' } unless $template_cust;
513     $cust_main = new FS::cust_main ( {
514       'agentnum'      => $agentnum,
515       'refnum'        => $packet->{refnum}
516                          || $conf->config('signup_server-default_refnum'),
517
518       ( map { $_ => $template_cust->$_ } qw( 
519               last first company address1 address2 
520               city county state zip country
521               daytime night fax 
522
523               ship_last ship_first ship_company ship_address1 ship_address2
524               ship_city ship_county ship_state ship_zip ship_country
525               ship_daytime ship_night ship_fax
526             )
527       ),
528
529       ( map { $_ => $packet->{$_} } qw(
530               ss stateid stateid_state
531
532               payby
533               payinfo paycvv paydate payname paystate paytype
534               paystart_month paystart_year payissue
535               payip
536
537               referral_custnum comments
538             )
539       ),
540
541     } );
542
543   } else {
544
545     $cust_main = new FS::cust_main ( {
546       #'custnum'          => '',
547       'agentnum'      => $agentnum,
548       'refnum'        => $packet->{refnum}
549                          || $conf->config('signup_server-default_refnum'),
550
551       map { $_ => $packet->{$_} } qw(
552
553         last first ss company address1 address2
554         city county state zip country
555         daytime night fax stateid stateid_state
556
557         ship_last ship_first ship_ss ship_company ship_address1 ship_address2
558         ship_city ship_county ship_state ship_zip ship_country
559         ship_daytime ship_night ship_fax
560
561         payby
562         payinfo paycvv paydate payname paystate paytype
563         paystart_month paystart_year payissue
564         payip
565
566         referral_custnum comments
567       )
568
569     } );
570   }
571
572   my $agent = qsearchs('agent', { 'agentnum' => $agentnum } );
573   if ( $conf->exists('agent_ship_address') && $agent->agent_custnum ) {
574     my $agent_cust_main = $agent->agent_cust_main;
575     my $prefix = length($agent_cust_main->ship_last) ? 'ship_' : '';
576     $cust_main->set("ship_$_", $agent_cust_main->get("$prefix$_") )
577       foreach qw( address1 city county state zip country );
578
579     $cust_main->set("ship_$_", $cust_main->get($_))
580       foreach qw( last first );
581
582   }
583
584
585   return { 'error' => "Illegal payment type" }
586     unless grep { $_ eq $packet->{'payby'} }
587                 $conf->config('signup_server-payby');
588
589   if (FS::payby->realtime($packet->{payby})
590     and not $conf->exists('signup_server-third_party_as_card')) {
591     my $payby = $packet->{payby};
592
593     my $agent = qsearchs('agent', { 'agentnum' => $agentnum });
594     return { 'error' => "Unknown reseller" }
595       unless $agent;
596
597     my $gw;
598     my $gatewaynum = $conf->config('selfservice-payment_gateway');
599     if ( $gatewaynum ) {
600       $gw = qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
601       die "configured gatewaynum $gatewaynum not found!" if !$gw;
602     }
603     else {
604       $gw = $agent->payment_gateway( 'method'  => FS::payby->payby2bop($payby),
605                                      'nofatal' => 1,
606                                     );
607     }
608
609     $cust_main->payby('BILL')   # MCRD better?
610       if $gw && $gw->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
611   }
612
613   $cust_main->payinfo($cust_main->daytime)
614     if $cust_main->payby eq 'LECB' && ! $cust_main->payinfo;
615
616   my @invoicing_list = $packet->{'invoicing_list'}
617                          ? split( /\s*\,\s*/, $packet->{'invoicing_list'} )
618                          : ();
619
620   $packet->{'pkgpart'} =~ /^(\d+)$/ or '' =~ /^()$/;
621   my $pkgpart = $1;
622   return { 'error' => 'Please select a package' } unless $pkgpart; #msgcat
623
624   my $part_pkg =
625     qsearchs( 'part_pkg', { 'pkgpart' => $pkgpart } )
626       or return { 'error' => "WARNING: unknown pkgpart: $pkgpart" };
627   my $svcpart = $part_pkg->svcpart($svc_x);
628
629   my $reg_code = '';
630   if ( $packet->{'reg_code'} ) {
631     $reg_code = qsearchs( 'reg_code', { 'code'     => $packet->{'reg_code'},
632                                         'agentnum' => $agentnum,             } )
633       or return { 'error' => 'Unknown registration code' };
634   }
635
636   my $cust_pkg = new FS::cust_pkg ( {
637     #later#'custnum' => $custnum,
638     'pkgpart'    => $packet->{'pkgpart'},
639     'promo_code' => $packet->{'promo_code'},
640     'reg_code'   => $packet->{'reg_code'},
641   } );
642   #my $error = $cust_pkg->check;
643   #return { 'error' => $error } if $error;
644
645   #should be all auto-magic and shit
646   my @svc = ();
647   if ( $svc_x eq 'svc_acct' ) {
648
649     my $svc = new FS::svc_acct {
650       'svcpart'   => $svcpart,
651       map { $_ => $packet->{$_} }
652         qw( username _password sec_phrase popnum ),
653     };
654
655     my @acct_snarf;
656     my $snarfnum = 1;
657     while (    exists($packet->{"snarf_machine$snarfnum"})
658             && length($packet->{"snarf_machine$snarfnum"}) ) {
659       my $acct_snarf = new FS::acct_snarf ( {
660         'machine'   => $packet->{"snarf_machine$snarfnum"},
661         'protocol'  => $packet->{"snarf_protocol$snarfnum"},
662         'username'  => $packet->{"snarf_username$snarfnum"},
663         '_password' => $packet->{"snarf_password$snarfnum"},
664       } );
665       $snarfnum++;
666       push @acct_snarf, $acct_snarf;
667     }
668     $svc->child_objects( \@acct_snarf );
669     push @svc, $svc;
670
671   } elsif ( $svc_x eq 'svc_phone' ) {
672
673     push @svc, new FS::svc_phone ( {
674       'svcpart' => $svcpart,
675        map { $_ => $packet->{$_} }
676          qw( countrycode phonenum sip_password pin ),
677     } );
678
679   } elsif ( $svc_x eq 'svc_pbx' ) {
680
681     push @svc, new FS::svc_pbx ( {
682         'svcpart' => $svcpart,
683         map { $_ => $packet->{$_} } 
684           qw( id title ),
685         } );
686   
687   } else {
688     die "unknown signup service $svc_x";
689   }
690
691   if ($packet->{'mac_addr'} && $conf->exists('signup_server-mac_addr_svcparts'))
692   {
693
694     my %mac_addr_svcparts = map { $_ => 1 }
695                             $conf->config('signup_server-mac_addr_svcparts');
696     my @pkg_svc = grep { $_->quantity && $mac_addr_svcparts{$_->svcpart} }
697                   $cust_pkg->part_pkg->pkg_svc;
698
699     return { 'error' => 'No service defined to assign mac address' }
700       unless @pkg_svc;
701
702     my $svc = new FS::svc_acct {
703       'svcpart'   => $pkg_svc[0]->svcpart, #multiple matches? alas..
704       'username'  => $packet->{'mac_addr'},
705       '_password' => '', #blank as requested (set passwordmin to 0)
706     };
707
708     push @svc, $svc;
709
710   }
711
712   foreach my $svc ( @svc ) {
713     my $y = $svc->setdefault; # arguably should be in new method
714     return { 'error' => $y } if $y && !ref($y);
715     #$error = $svc->check;
716     #return { 'error' => $error } if $error;
717   }
718
719   #setup a job dependancy to delay provisioning
720   my $placeholder = new FS::queue ( {
721     'job'    => 'FS::ClientAPI::Signup::__placeholder',
722     'status' => 'locked',
723   } );
724   my $error = $placeholder->insert;
725   return { 'error' => $error } if $error;
726
727   use Tie::RefHash;
728   tie my %hash, 'Tie::RefHash';
729   %hash = ( $cust_pkg => \@svc );
730   #msgcat
731   $error = $cust_main->insert(
732     \%hash,
733     \@invoicing_list,
734     'depend_jobnum' => $placeholder->jobnum,
735   );
736   if ( $error ) {
737     my $perror = $placeholder->delete;
738     $error .= " (Additionally, error removing placeholder: $perror)" if $perror;
739     return { 'error' => $error };
740   }
741
742   if ( $conf->exists('signup_server-realtime') ) {
743
744     #warn "$me Billing customer...\n" if $Debug;
745
746     my $bill_error = $cust_main->bill( 'depend_jobnum'=>$placeholder->jobnum );
747     #warn "$me error billing new customer: $bill_error"
748     #  if $bill_error;
749
750     $bill_error = $cust_main->apply_payments_and_credits;
751     #warn "$me error applying payments and credits for".
752     #     " new customer: $bill_error"
753     #  if $bill_error;
754
755     $bill_error = $cust_main->realtime_collect(
756        method        => FS::payby->payby2bop( $packet->{payby} ),
757        depend_jobnum => $placeholder->jobnum,
758        selfservice   => 1,
759     );
760     #warn "$me error collecting from new customer: $bill_error"
761     #  if $bill_error;
762
763     if ($bill_error && ref($bill_error) eq 'HASH') {
764       return { 'error' => '_collect',
765                ( map { $_ => $bill_error->{$_} }
766                  qw(popup_url reference collectitems)
767                ),
768                amount => $cust_main->balance,
769              };
770     }
771
772     $bill_error = $cust_main->apply_payments_and_credits;
773     #warn "$me error applying payments and credits for".
774     #     " new customer: $bill_error"
775     #  if $bill_error;
776
777     if ( $cust_main->balance > 0 ) {
778
779       #this makes sense.  credit is "un-doing" the invoice
780       $cust_main->credit( $cust_main->balance, 'signup server decline',
781                           'reason_type' => $conf->config('signup_credit_type'),
782                         );
783       $cust_main->apply_credits;
784
785       #should check list for errors...
786       #$cust_main->suspend;
787       local $FS::svc_Common::noexport_hack = 1;
788       $cust_main->cancel('quiet'=>1);
789
790       my $perror = $placeholder->depended_delete;
791       warn "error removing provisioning jobs after decline: $perror" if $perror;
792       unless ( $perror ) {
793         $perror = $placeholder->delete;
794         warn "error removing placeholder after decline: $perror" if $perror;
795       }
796
797       return { 'error' => '_decline' };
798     }
799
800   }
801
802   if ( $reg_code ) {
803     $error = $reg_code->delete;
804     return { 'error' => $error } if $error;
805   }
806
807   $error = $placeholder->delete;
808   return { 'error' => $error } if $error;
809
810   my %return = ( 'error'          => '',
811                  'signup_service' => $svc_x,
812                  'custnum'        => $cust_main->custnum,
813                );
814
815   if ( $svc[0] ) {
816
817     $return{'svcnum'} = $svc[0]->svcnum;
818
819     if ( $svc_x eq 'svc_acct' ) {
820       $return{$_} = $svc[0]->$_() for qw( username _password );
821     } elsif ( $svc_x eq 'svc_phone' ) {
822       $return{$_} = $svc[0]->$_() for qw(countrycode phonenum sip_password pin);
823     } elsif ( $svc_x eq 'svc_pbx' ) {
824       #$return{$_} = $svc[0]->$_() for qw( ) #nothing yet
825      } else {
826       return {'error' => "configuration error: unknown signup service $svc_x"};
827       #die "unknown signup service $svc_x";
828       # return an error that's visible to someone somewhere
829     }
830
831   }
832
833   return \%return;
834
835 }
836
837 sub capture_payment {
838   my $packet = shift;
839
840   warn "$me capture_payment called on $packet\n" if $DEBUG;
841
842   ###
843   # identify processor/gateway from called back URL
844   ###
845
846   my $conf = new FS::Conf;
847
848   my $payment_gateway;
849   if ( my $gwnum = $conf->config('selfservice-payment_gateway') ) {
850     $payment_gateway = qsearchs('payment_gateway', { 'gatewaynum' => $gwnum })
851       or die "configured gatewaynum $gwnum not found!";
852   }
853   else {
854     my $url = $packet->{url};
855
856     $payment_gateway = qsearchs('payment_gateway', 
857         { 'gateway_callback_url' => popurl(0, $url) } 
858       );
859     if (!$payment_gateway) { 
860
861       my ( $processor, $login, $password, $action, @bop_options ) =
862         $conf->config('business-onlinepayment');
863       $action ||= 'normal authorization';
864       pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
865       die "No real-time processor is enabled - ".
866           "did you set the business-onlinepayment configuration value?\n"
867         unless $processor;
868
869       $payment_gateway = new FS::payment_gateway( {
870         gateway_namespace => $conf->config('business-onlinepayment-namespace'),
871         gateway_module    => $processor,
872         gateway_username  => $login,
873         gateway_password  => $password,
874         gateway_action    => $action,
875         options   => [ ( @bop_options ) ],
876       });
877     }
878   }
879  
880   die "No real-time third party processor is enabled - ".
881       "did you set the business-onlinepayment configuration value?\n*"
882     unless $payment_gateway->gateway_namespace eq 'Business::OnlineThirdPartyPayment';
883
884   ###
885   # locate pending transaction
886   ###
887
888   eval "use Business::OnlineThirdPartyPayment";
889   die $@ if $@;
890
891   my $transaction =
892     new Business::OnlineThirdPartyPayment( $payment_gateway->gateway_module,
893                                            @{ [ $payment_gateway->options ] },
894                                          );
895
896   my $paypendingnum = $transaction->reference($packet->{data});
897
898   my $cust_pay_pending =
899     qsearchs('cust_pay_pending', { paypendingnum => $paypendingnum } );
900
901   unless ($cust_pay_pending) {
902     my $bill_error = "No payment is being processed with id $paypendingnum".
903                      "; Transaction aborted.";
904     return { error => '_decline', bill_error => $bill_error };
905   }
906
907   if ($cust_pay_pending->status ne 'pending') {
908     my $bill_error = "Payment with id $paypendingnum is not pending, but ".
909                      $cust_pay_pending->status.  "; Transaction aborted.";
910     return { error => '_decline', bill_error => $bill_error };
911   }
912
913   my $cust_main = $cust_pay_pending->cust_main;
914   my $bill_error =
915     $cust_main->realtime_botpp_capture( $cust_pay_pending, 
916       %{$packet->{data}},
917       apply => 1,
918   );
919
920   return { 'error'      => ( $bill_error->{bill_error} ? '_decline' : '' ),
921            %$bill_error,
922          };
923
924 }
925
926 1;