Martin Renvoize
9ec4d86636
This patch adds the 'interface' field to the accountlines table and updates all Koha::Object routines and calls to use it. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
126 lines
3.4 KiB
Perl
Executable file
126 lines
3.4 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 Modern::Perl;
|
|
use utf8;
|
|
|
|
use CGI;
|
|
use HTTP::Request::Common;
|
|
use LWP::UserAgent;
|
|
use URI;
|
|
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use C4::Accounts;
|
|
use Koha::Acquisition::Currencies;
|
|
use Koha::Database;
|
|
use Koha::Patrons;
|
|
|
|
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 $account = Koha::Account->new( { patron_id => $borrowernumber } );
|
|
my @lines = Koha::Account::Lines->search(
|
|
{
|
|
accountlines_id => { -in => \@accountlines }
|
|
}
|
|
);
|
|
|
|
$account->pay(
|
|
{
|
|
amount => $amount,
|
|
lines => \@lines,
|
|
note => 'PayPal',
|
|
interface => C4::Context->interface
|
|
}
|
|
);
|
|
}
|
|
else {
|
|
$error = "PAYPAL_ERROR_PROCESSING";
|
|
}
|
|
|
|
}
|
|
else {
|
|
$error = "PAYPAL_UNABLE_TO_CONNECT";
|
|
}
|
|
|
|
my $patron = Koha::Patrons->find( $borrowernumber );
|
|
$template->param(
|
|
borrower => $patron->unblessed,
|
|
accountview => 1
|
|
);
|
|
|
|
print $cgi->redirect("/cgi-bin/koha/opac-account.pl?payment=$amount&payment-error=$error");
|