summaryrefslogtreecommitdiff
path: root/FS/FS/payment_gateway.pm
blob: 3500bf9bcf29215a2cbdb349fe5eef20218d5546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
package FS::payment_gateway;
use base qw( FS::option_Common );

use strict;
use vars qw( $me $DEBUG );
use FS::Record qw( qsearch dbh ); #qw( qsearch qsearchs dbh );

$me = '[ FS::payment_gateway ]';
$DEBUG=0;

=head1 NAME

FS::payment_gateway - Object methods for payment_gateway records

=head1 SYNOPSIS

  use FS::payment_gateway;

  $record = new FS::payment_gateway \%hash;
  $record = new FS::payment_gateway { 'column' => 'value' };

  $error = $record->insert;

  $error = $new_record->replace($old_record);

  $error = $record->delete;

  $error = $record->check;

=head1 DESCRIPTION

An FS::payment_gateway object represents an payment gateway.
FS::payment_gateway inherits from FS::Record.  The following fields are
currently supported:

=over 4

=item gatewaynum - primary key

=item gateway_namespace - Business::OnlinePayment, Business::OnlineThirdPartyPayment, or Business::BatchPayment

=item gateway_module - Business::OnlinePayment:: (or other) module name

=item gateway_username - payment gateway username

=item gateway_password - payment gateway password

=item gateway_action - optional action or actions (multiple actions are separated with `,': for example: `Authorization Only, Post Authorization').  Defaults to `Normal Authorization'.

=item disabled - Disabled flag, empty or 'Y'

=item gateway_callback_url - For ThirdPartyPayment only, set to the URL that 
the user should be redirected to on a successful payment.  This will be sent
as a transaction parameter named "return_url".

=item gateway_cancel_url - For ThirdPartyPayment only, set to the URL that 
the user should be redirected to if they cancel the transaction.  This will 
be sent as a transaction parameter named "cancel_url".

=item auto_resolve_status - For BatchPayment only, set to 'approve' to 
auto-approve unresolved payments after some number of days, 'reject' to 
auto-decline them, or null to do nothing.

=item auto_resolve_days - For BatchPayment, the number of days to wait before 
auto-resolving the batch.

=back

=head1 METHODS

=over 4

=item new HASHREF

Creates a new payment gateway.  To add the payment gateway to the database, see
L<"insert">.

Note that this stores the hash reference, not a distinct copy of the hash it
points to.  You can ask the object for a copy with the I<hash> method.

=cut

# the new method can be inherited from FS::Record, if a table method is defined

sub table { 'payment_gateway'; }

=item insert

Adds this record to the database.  If there is an error, returns the error,
otherwise returns false.

=cut

# the insert method can be inherited from FS::Record

=item delete

Delete this record from the database.

=cut

# the delete method can be inherited from FS::Record

=item replace OLD_RECORD

Replaces the OLD_RECORD with this one in the database.  If there is an error,
returns the error, otherwise returns false.

=cut

# the replace method can be inherited from FS::Record

=item check

Checks all fields to make sure this is a valid payment gateway.  If there is
an error, returns the error, otherwise returns false.  Called by the insert
and replace methods.

=cut

# the check method should currently be supplied - FS::Record contains some
# data checking routines

sub check {
  my $self = shift;

  my $error = 
    $self->ut_numbern('gatewaynum')
    || $self->ut_alpha('gateway_module')
    || $self->ut_enum('gateway_namespace', ['Business::OnlinePayment',
                                            'Business::OnlineThirdPartyPayment',
                                            'Business::BatchPayment',
                                           ] )
    || $self->ut_textn('gateway_username')
    || $self->ut_anything('gateway_password')
    || $self->ut_textn('gateway_callback_url')  # a bit too permissive
    || $self->ut_textn('gateway_cancel_url')
    || $self->ut_enum('disabled', [ '', 'Y' ] )
    || $self->ut_enum('auto_resolve_status', [ '', 'approve', 'reject' ])
    || $self->ut_numbern('auto_resolve_days')
    #|| $self->ut_textn('gateway_action')
  ;
  return $error if $error;

  if ( $self->gateway_namespace eq 'Business::BatchPayment' ) {
    $self->gateway_action('Payment');
  } elsif ( $self->gateway_action ) {
    my @actions = split(/,\s*/, $self->gateway_action);
    $self->gateway_action(
      join( ',', map { /^(Normal Authorization|Authorization Only|Credit|Post Authorization)$/
                         or return "Unknown action $_";
                       $1
                     }
                     @actions
          )
   );
  } else {
    $self->gateway_action('Normal Authorization');
  }

  # this little kludge mimics FS::CGI::popurl
  #$self->gateway_callback_url($self->gateway_callback_url. '/')
  #  if ( $self->gateway_callback_url && $self->gateway_callback_url !~ /\/$/ );

  $self->SUPER::check;
}

=item agent_payment_gateway

Returns any agent overrides for this payment gateway.

=item disable

Disables this payment gateway: deletes all associated agent_payment_gateway
overrides and sets the I<disabled> field to "B<Y>".

=cut

sub disable {
  my $self = shift;

  local $SIG{HUP} = 'IGNORE';
  local $SIG{INT} = 'IGNORE';
  local $SIG{QUIT} = 'IGNORE';
  local $SIG{TERM} = 'IGNORE';
  local $SIG{TSTP} = 'IGNORE';
  local $SIG{PIPE} = 'IGNORE';

  my $oldAutoCommit = $FS::UID::AutoCommit;
  local $FS::UID::AutoCommit = 0;
  my $dbh = dbh;

  foreach my $agent_payment_gateway ( $self->agent_payment_gateway ) {
    my $error = $agent_payment_gateway->delete;
    if ( $error ) {
      $dbh->rollback if $oldAutoCommit;
      return "error deleting agent_payment_gateway override: $error";
    }
  }

  $self->disabled('Y');
  my $error = $self->replace();
  if ( $error ) {
    $dbh->rollback if $oldAutoCommit;
    return "error disabling payment_gateway: $error";
  }

  $dbh->commit or die $dbh->errstr if $oldAutoCommit;
  '';

}

=item label

Returns a semi-friendly label for the gateway.

=cut

sub label {
  my $self = shift;
  $self->gatewaynum . ': ' . 
  ($self->gateway_username ? $self->gateway_username . '@' : '') . 
  $self->gateway_module
}

=item namespace_description

returns a friendly name for the namespace

=cut

my %namespace2description = (
  '' => 'Direct',
  'Business::OnlinePayment' => 'Direct',
  'Business::OnlineThirdPartyPayment' => 'Hosted',
  'Business::BatchPayment' => 'Batch',
);

sub namespace_description {
  $namespace2description{shift->gateway_namespace} || 'Unknown';
}

=item batch_processor OPTIONS

For BatchPayment gateways only.  Returns a 
L<Business::BatchPayment::Processor> object to communicate with the 
gateway.

OPTIONS will be passed to the constructor, along with any gateway 
options in the database for this L<FS::payment_gateway>.  Useful things
to include there may include 'input' and 'output' (to direct transport
to files), 'debug', and 'test_mode'.

If the global 'business-batchpayment-test_transaction' flag is set, 
'test_mode' will be forced on, and gateways that don't support test
mode will be disabled.

=cut

sub batch_processor {
  local $@;
  my $self = shift;
  my %opt = @_;
  my $batch = $opt{batch};
  my $output = $opt{output};
  die 'gateway '.$self->gatewaynum.' is not a Business::BatchPayment gateway'
    unless $self->gateway_namespace eq 'Business::BatchPayment';
  eval "use Business::BatchPayment;";
  die "couldn't load Business::BatchPayment: $@" if $@;

  #false laziness with processor
  foreach (qw(username password)) {
    if (length($self->get("gateway_$_"))) {
      $opt{$_} = $self->get("gateway_$_");
    }
  }

  my $module = $self->gateway_module;
  my $processor = eval { 
    Business::BatchPayment->create($module, $self->options, %opt)
  };
  die "failed to create Business::BatchPayment::$module object: $@"
    if $@;

  die "$module does not support test mode"
    if $opt{'test_mode'}
      and not $processor->does('Business::BatchPayment::TestMode');

  return $processor;
}

=item processor OPTIONS

Loads the module for the processor and returns an instance of it.

=cut

sub processor {
  local $@;
  my $self = shift;
  my %opt = @_;
  foreach (qw(action username password)) {
    if (length($self->get("gateway_$_"))) {
      $opt{$_} = $self->get("gateway_$_");
    }
  }
  $opt{'return_url'} = $self->gateway_callback_url;
  $opt{'cancel_url'} = $self->gateway_cancel_url;

  my $conf = new FS::Conf;
  my $test_mode = $conf->exists('business-batchpayment-test_transaction');
  $opt{'test_mode'} = 1 if $test_mode;

  my $namespace = $self->gateway_namespace;
  eval "use $namespace";
  die "couldn't load $namespace: $@" if $@;

  if ( $namespace eq 'Business::BatchPayment' ) {
    # at some point we can merge these, but there's enough special behavior...
    return $self->batch_processor(%opt);
  } else {
    return $namespace->new( $self->gateway_module, $self->options, %opt );
  }
}

=item default_gateway OPTIONS

Class method.

Returns default gateway (from business-onlinepayment conf) as a payment_gateway object.

Accepts options

conf - existing conf object

nofatal - return blank instead of dying if no default gateway is configured

method - if set to CHEK or ECHECK, returns object for business-onlinepayment-ach if available

Before using this, be sure you wouldn't rather be using L</by_key_or_default> or,
more likely, L<FS::agent/payment_gateway>.

=cut

# the standard settings from the config could be moved to a null agent
# agent_payment_gateway referenced payment_gateway

sub default_gateway {
  my ($self,%options) = @_;

  $options{'conf'} ||= new FS::Conf;
  my $conf = $options{'conf'};

  unless ( $conf->exists('business-onlinepayment') ) {
    if ( $options{'nofatal'} ) {
      return '';
    } else {
      die "Real-time processing not enabled\n";
    }
  }

  #load up config
  my $bop_config = 'business-onlinepayment';
  $bop_config .= '-ach'
    if ( $options{method}
         && $options{method} =~ /^(ECHECK|CHEK)$/
         && $conf->exists($bop_config. '-ach')
       );
  my ( $processor, $login, $password, $action, @bop_options ) =
    $conf->config($bop_config);
  $action ||= 'normal authorization';
  pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
  die "No real-time processor is enabled - ".
      "did you set the business-onlinepayment configuration value?\n"
    unless $processor;

  my $payment_gateway = new FS::payment_gateway;
  $payment_gateway->gateway_namespace( $conf->config('business-onlinepayment-namespace') ||
                                       'Business::OnlinePayment');
  $payment_gateway->gateway_module($processor);
  $payment_gateway->gateway_username($login);
  $payment_gateway->gateway_password($password);
  $payment_gateway->gateway_action($action);
  $payment_gateway->set('options', [ @bop_options ]);
  return $payment_gateway;
}

=item by_key_with_namespace GATEWAYNUM

Like usual by_key, but makes sure namespace is set,
and dies if not found.

=cut

sub by_key_with_namespace {
  my $self = shift;
  my $payment_gateway = $self->by_key(@_);
  die "payment_gateway not found"
    unless $payment_gateway;
  $payment_gateway->gateway_namespace('Business::OnlinePayment')
    unless $payment_gateway->gateway_namespace;
  return $payment_gateway;
}

=item by_key_or_default OPTIONS

Either returns the gateway specified by option gatewaynum, or the default gateway.

Accepts the same options as L</default_gateway>.

Also ensures that the gateway_namespace has been set.

=cut

sub by_key_or_default {
  my ($self,%options) = @_;

  if ($options{'gatewaynum'}) {
    return $self->by_key_with_namespace($options{'gatewaynum'});
  } else {
    return $self->default_gateway(%options);
  }
}

# if it weren't for the way gateway_namespace default is set, this method would not be necessary
# that should really go in check() with an accompanying upgrade, so we could just use qsearch safely,
# but currently short on time to test deeper changes...
#
# if no default gateway is set and nofatal is passed, first value returned is blank string
sub all_gateways {
  my ($self,%options) = @_;
  my @out;
  foreach my $gatewaynum ('',( map {$_->gatewaynum} qsearch('payment_gateway') )) {
    push @out, $self->by_key_or_default( %options, gatewaynum => $gatewaynum );
  }
  return @out;
}

# _upgrade_data
#
# Used by FS::Upgrade to migrate to a new database.
#
#

sub _upgrade_data {
  my ($class, %opts) = @_;
  my $dbh = dbh;

  warn "$me upgrading $class\n" if $DEBUG;

  foreach ( qsearch( 'payment_gateway', { 'gateway_namespace' => '' } ) ) {
    $_->gateway_namespace('Business::OnlinePayment');  #defaulting
    my $error = $_->replace;
    die "$class had error during upgrade replacement: $error" if $error;
  }
}

=back

=head1 BUGS

=head1 SEE ALSO

L<FS::Record>, schema.html from the base documentation.

=cut

1;