Jonathan Druart
b59df2bce7
All the values different from the ones GetMember returned has been managed outside of GetMemberDetails. It looks safe to replace all the occurrences of GetMemberDetails with GetMember. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
116 lines
3.3 KiB
Perl
Executable file
116 lines
3.3 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright ByWater Solutions 2015
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with Koha; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
use strict;
|
|
use warnings;
|
|
use utf8;
|
|
|
|
use CGI;
|
|
use HTTP::Request::Common;
|
|
use LWP::UserAgent;
|
|
use URI;
|
|
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use C4::Accounts;
|
|
use C4::Members;
|
|
use Koha::Acquisition::Currencies;
|
|
use Koha::Database;
|
|
|
|
my $cgi = new CGI;
|
|
|
|
unless ( C4::Context->preference('EnablePayPalOpacPayments') ) {
|
|
print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
|
|
exit;
|
|
}
|
|
|
|
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "opac-account-pay-return.tt",
|
|
query => $cgi,
|
|
type => "opac",
|
|
authnotrequired => 0,
|
|
debug => 1,
|
|
}
|
|
);
|
|
|
|
my $active_currency = Koha::Acquisition::Currencies->get_active;
|
|
|
|
my $token = $cgi->param('token');
|
|
my $payer_id = $cgi->param('PayerID');
|
|
my $amount = $cgi->param('amount');
|
|
my @accountlines = $cgi->multi_param('accountlines');
|
|
|
|
my $ua = LWP::UserAgent->new;
|
|
|
|
my $url =
|
|
C4::Context->preference('PayPalSandboxMode')
|
|
? 'https://api-3t.sandbox.paypal.com/nvp'
|
|
: 'https://api-3t.paypal.com/nvp';
|
|
|
|
my $nvp_params = {
|
|
'USER' => C4::Context->preference('PayPalUser'),
|
|
'PWD' => C4::Context->preference('PayPalPwd'),
|
|
'SIGNATURE' => C4::Context->preference('PayPalSignature'),
|
|
|
|
# API Version and Operation
|
|
'METHOD' => 'DoExpressCheckoutPayment',
|
|
'VERSION' => '82.0',
|
|
|
|
# API specifics for DoExpressCheckout
|
|
'PAYMENTREQUEST_0_PAYMENTACTION' => 'Sale',
|
|
'PAYERID' => $payer_id,
|
|
'TOKEN' => $token,
|
|
'PAYMENTREQUEST_0_AMT' => $amount,
|
|
'PAYMENTREQUEST_0_CURRENCYCODE' => $active_currency->currency,
|
|
};
|
|
|
|
my $response = $ua->request( POST $url, $nvp_params );
|
|
|
|
my $error = q{};
|
|
if ( $response->is_success ) {
|
|
|
|
my $urlencoded = $response->content;
|
|
my %params = URI->new( "?$urlencoded" )->query_form;
|
|
|
|
|
|
if ( $params{ACK} eq "Success" ) {
|
|
$amount = $params{PAYMENTINFO_0_AMT};
|
|
|
|
my $accountlines_rs = Koha::Database->new()->schema()->resultset('Accountline');
|
|
foreach my $accountlines_id ( @accountlines ) {
|
|
my $accountline = $accountlines_rs->find( $accountlines_id );
|
|
makepayment( $accountlines_id, $borrowernumber, undef, $accountline->amountoutstanding, undef, undef, 'PayPal' );
|
|
}
|
|
}
|
|
else {
|
|
$error = "PAYPAL_ERROR_PROCESSING";
|
|
}
|
|
|
|
}
|
|
else {
|
|
$error = "PAYPAL_UNABLE_TO_CONNECT";
|
|
}
|
|
|
|
$template->param(
|
|
borrower => GetMember( borrowernumber => $borrowernumber ),
|
|
accountview => 1
|
|
);
|
|
|
|
print $cgi->redirect("/cgi-bin/koha/opac-account.pl?payment=$amount&payment-error=$error");
|