signup server: FS::part_pkg->payby kludge & example template which uses
[freeside.git] / fs_signup / fs_signup_server
1 #!/usr/bin/perl -Tw
2 #
3 # fs_signup_server
4 #
5
6 use strict;
7 use vars qw($pid);
8 use IO::Handle;
9 use Storable qw(nstore_fd fd_retrieve);
10 use Tie::RefHash;
11 use Net::SSH qw(sshopen2);
12 use FS::UID qw(adminsuidsetup);
13 use FS::Conf;
14 use FS::Record qw( qsearch qsearchs );
15 use FS::cust_main_county;
16 use FS::cust_main;
17 use FS::Msgcat qw(gettext);
18
19 use vars qw( $opt $Debug );
20
21 $Debug = 2;
22
23 my $user = shift or die &usage;
24 &adminsuidsetup( $user ); 
25
26 my $conf = new FS::Conf;
27
28 #my @payby = qw(CARD PREPAY);
29 my @payby = $conf->config('signup_server-payby');
30 my $smtpmachine = $conf->config('smtpmachine');
31
32 my $machine = shift or die &usage;
33
34 my $agentnum = shift or die &usage;
35 my $agent = qsearchs( 'agent', { 'agentnum' => $agentnum } ) or die &usage;
36 my $pkgpart_href = $agent->pkgpart_hashref;
37
38 my $refnum = shift or die &usage;
39
40 #causing trouble for some folks
41 #$SIG{CHLD} = sub { wait() };
42
43 $SIG{HUP} = \&killssh;
44 $SIG{INT} = \&killssh;
45 $SIG{QUIT} = \&killssh;
46 $SIG{TERM} = \&killssh;
47 $SIG{PIPE} = \&killssh;
48 sub killssh { kill 'TERM', $pid if $pid; exit; };
49
50 my($fs_signupd)="/usr/local/sbin/fs_signupd";
51
52 while (1) {
53   my($reader,$writer)=(new IO::Handle, new IO::Handle);
54   #seems to be broken - calling ->flush explicitly# $writer->autoflush(1);
55   warn "[fs_signup_server] Connecting to $machine...\n" if $Debug;
56   $pid = sshopen2($machine,$reader,$writer,$fs_signupd);
57
58   my @pops = qsearch('svc_acct_pop',{} );
59   my $init_data = {
60
61     #'_protocol' => 'signup',
62     #'_version' => '0.1',
63     #'_packet' => 'init'
64   
65     'cust_main_county' =>
66       [ map { $_->hashref } qsearch('cust_main_county', {}) ],
67       
68     'part_pkg' =>
69       [
70         #map { $_->hashref }
71         map { { 'payby' => [ $_->payby ], %{$_->hashref} } }
72           grep { $_->svcpart('svc_acct') && $pkgpart_href->{ $_->pkgpart } }
73             qsearch( 'part_pkg', { 'disabled' => '' } )
74       ],
75
76     'agentnum2part_pkg' =>
77       {
78         map {
79           my $href = $_->pkgpart_hashref;
80           $_->agentnum =>
81             [
82               map { { 'payby' => [ $_->payby ], %{$_->hashref} } }
83                 grep { $_->svcpart('svc_acct') && $href->{ $_->pkgpart } }
84                   qsearch( 'part_pkg', { 'disabled' => '' } )
85             ];
86         } qsearch('agent', {} )
87       },
88
89     'svc_acct_pop' => [ map { $_->hashref } @pops ],
90
91     'security_phrase' => $conf->exists('security_phrase'),
92
93     'payby' => [ $conf->config('signup_server-payby') ],
94
95     'msgcat' => { map { $_=>gettext($_) } qw(
96       passwords_dont_match invalid_card unknown_card_type not_a
97     ) }
98
99   };
100
101   warn "[fs_signup_server] Sending init data...\n" if $Debug;
102   nstore_fd($init_data, $writer) or die "can't send init data: $!";
103   $writer->flush;
104
105   warn "[fs_signup_server] Entering main loop...\n" if $Debug;
106   while (1) {
107     warn "[fs_signup_server] Reading (waiting for) signup data...\n" if $Debug;
108     my $signup_data = fd_retrieve($reader);
109
110     if ( $Debug > 1 ) {
111       warn join('',
112         map { "  $_ => ". $signup_data->{$_}. "\n" } keys %$signup_data );
113     }
114
115     warn "[fs_signup_server] Processing signup...\n" if $Debug;
116
117     my $error = '';
118
119     #things that aren't necessary in base class, but are for signup server
120       #return "Passwords don't match"
121       #  if $hashref->{'_password'} ne $hashref->{'_password2'}
122     $error ||= gettext('empty_password') unless $signup_data->{'_password'};
123     $error ||= gettext('no_access_number_selected')
124       unless $signup_data->{'popnum'} || !scalar(@pops);
125
126     #shares some stuff with htdocs/edit/process/cust_main.cgi... take any
127     # common that are still here and library them.
128     my $cust_main = new FS::cust_main ( {
129       #'custnum'          => '',
130       'agentnum'         => $signup_data->{agentnum} || $agentnum,
131       'refnum'           => $refnum,
132
133       map { $_ => $signup_data->{$_} } qw(
134         last first ss company address1 address2 city county state zip country
135         daytime night fax payby payinfo paydate payname referral_custnum
136       ),
137
138     } );
139
140     $error ||= "Illegal payment type"
141       unless grep { $_ eq $signup_data->{'payby'} } @payby;
142
143     my @invoicing_list = split( /\s*\,\s*/, $signup_data->{'invoicing_list'} );
144
145     my $part_pkg =
146       qsearchs( 'part_pkg', { 'pkgpart' => $signup_data->{'pkgpart'} } )
147         or $error ||= "WARNING: unknown pkgpart ". $signup_data->{pkgpart};
148     my $svcpart = $part_pkg->svcpart unless $error;
149
150     # this should wind up in FS::cust_pkg!
151     my $agent = qsearchs( 'agent', { 'agentnum' => $agentnum } );
152     #my $pkgpart_href = $agent->pkgpart_hashref;
153     $error ||= "WARNING: agent $agentnum can't purchase pkgpart ".
154                $signup_data->{pkgpart}
155       unless $pkgpart_href->{ $signup_data->{pkgpart} };
156
157     my $cust_pkg = new FS::cust_pkg ( {
158       #later#'custnum' => $custnum,
159       'pkgpart' => $signup_data->{'pkgpart'},
160     } );
161     $error ||= $cust_pkg->check;
162
163     my $svc_acct = new FS::svc_acct ( {
164       'svcpart'   => $svcpart,
165       map { $_ => $signup_data->{$_} }
166         qw( username _password sec_phrase popnum ),
167     } );
168
169     my $y = $svc_acct->setdefault; # arguably should be in new method
170     $error ||= $y unless ref($y);
171
172     $error ||= $svc_acct->check;
173
174     use Tie::RefHash;
175     tie my %hash, 'Tie::RefHash';
176     %hash = ( $cust_pkg => [ $svc_acct ] );
177     $error ||= $cust_main->insert( \%hash, \@invoicing_list ); #msgcat
178
179     warn "[fs_signup_server] Sending results...\n" if $Debug;
180     print $writer $error, "\n";
181
182     next if $error;
183
184     if ( $conf->exists('signup_server-realtime') ) {
185
186       warn "[fs_signup_server] Billing customer...\n" if $Debug;
187
188       my $bill_error = $cust_main->bill;
189       warn "[fs_signup_server] error billing new customer: $bill_error"
190         if $bill_error;
191
192       $cust_main->apply_payments;
193       $cust_main->apply_credits;
194
195       $bill_error = $cust_main->collect;
196       warn "[fs_signup_server] error collecting from new customer: $bill_error"
197         if $bill_error;
198
199       if ( $cust_main->balance ) {
200         #should check list for errors...
201         $cust_main->suspend;
202       }
203     }
204
205     if ( $conf->config('signup_server-email') ) {
206       warn "[fs_signup_server] Sending email...\n" if $Debug;
207
208       #false laziness w/FS::cust_bill::send & FS::cust_pay::delete
209       use Mail::Header;
210       use Mail::Internet;
211       use Date::Format;
212       my $from = $conf->config('invoice_from'); #??? as good as any
213       $ENV{MAILADDRESS} = $from;
214       my $header = new Mail::Header ( [
215         "From: $from",
216         "To: ". $conf->config('signup_server-email'),
217         "Sender: $from",
218         "Reply-To: $from",
219         "Date: ". time2str("%a, %d %b %Y %X %z", time),
220         "Subject: FREESIDE NOTIFICATION: Signup Server",
221       ] );
222       my $body = [
223         "This is an automatic message from your Freeside installation\n",
224         "informing you a customer has signed up via the signup server:\n",
225         "\n",
226         'custnum: '. $cust_main->custnum. "\n",
227         'Name   : '. $cust_main->last. ", ". $cust_main->first. "\n",
228         'Agent  : '. $cust_main->agent->agent. "\n",
229         "\n",
230       ];
231       if ( $cust_main->balance ) {
232         push @$body,
233           "This customer has an outstanding balance and has been suspended.\n";
234       }
235       my $message = new Mail::Internet ( 'Header' => $header, 'Body' => $body );
236       $!=0;
237       $message->smtpsend( Host => $smtpmachine )
238         or $message->smtpsend( Host => $smtpmachine, Debug => 1 )
239           or warn "[fs_signup_server] can't send email to ".
240                    $conf->config('signup_server-email').
241                    " via server $smtpmachine with SMTP: $!";
242       #end-of-send mail
243     }
244
245   }
246   close $writer;
247   close $reader;
248   warn "connection to $machine lost!  waiting 60 seconds...\n";
249   sleep 60;
250   warn "reconnecting...\n";
251 }
252
253 sub usage {
254   die "Usage:\n\n  fs_signup_server user machine agentnum refnum\n";
255 }
256