2017-04-23 02:44:38 +02:00
< ? php
/* Copyright ( C ) 2001 - 2002 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
* Copyright ( C ) 2006 - 2013 Laurent Destailleur < eldy @ users . sourceforge . net >
* Copyright ( C ) 2012 Regis Houssin < regis . houssin @ capnetworks . com >
*
* This program 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 .
*
* This program 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 this program . If not , see < http :// www . gnu . org / licenses />.
*/
/**
* \file htdocs / public / payment / paymentko . php
* \ingroup core
* \brief File to show page after a failed payment .
* This page is called by payment system with url provided to it competed with parameter TOKEN = xxx
* This token can be used to get more informations .
*/
define ( " NOLOGIN " , 1 ); // This means this output page does not require to be logged.
define ( " NOCSRFCHECK " , 1 ); // We accept to go on this page from external web site.
// For MultiCompany module.
// Do not use GETPOST here, function is not defined and define must be done before including main.inc.php
// TODO This should be useless. Because entity must be retreive from object ref and not from url.
2017-09-20 19:34:14 +02:00
$entity = ( ! empty ( $_GET [ 'e' ]) ? ( int ) $_GET [ 'e' ] : ( ! empty ( $_POST [ 'e' ]) ? ( int ) $_POST [ 'e' ] : 1 ));
2017-04-23 02:44:38 +02:00
if ( is_numeric ( $entity )) define ( " DOLENTITY " , $entity );
require '../../main.inc.php' ;
require_once DOL_DOCUMENT_ROOT . '/core/lib/company.lib.php' ;
2017-05-13 14:03:09 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/lib/payments.lib.php' ;
2017-04-23 02:44:38 +02:00
if ( ! empty ( $conf -> paypal -> enabled ))
{
require_once DOL_DOCUMENT_ROOT . '/paypal/lib/paypal.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/paypal/lib/paypalfunctions.lib.php' ;
}
$langs -> load ( " main " );
$langs -> load ( " other " );
$langs -> load ( " dict " );
$langs -> load ( " bills " );
$langs -> load ( " companies " );
$langs -> load ( " paybox " );
$langs -> load ( " paypal " );
2017-08-31 02:34:07 +02:00
$langs -> load ( " stripe " );
2017-04-23 02:44:38 +02:00
2017-05-14 16:17:00 +02:00
if ( ! empty ( $conf -> paypal -> enabled ))
{
$PAYPALTOKEN = GETPOST ( 'TOKEN' );
if ( empty ( $PAYPALTOKEN )) $PAYPALTOKEN = GETPOST ( 'token' );
$PAYPALPAYERID = GETPOST ( 'PAYERID' );
if ( empty ( $PAYPALPAYERID )) $PAYPALPAYERID = GETPOST ( 'PayerID' );
}
2017-08-31 02:34:07 +02:00
if ( ! empty ( $conf -> paybox -> enabled ))
{
}
if ( ! empty ( $conf -> stripe -> enabled ))
{
}
2017-05-14 16:17:00 +02:00
2017-05-13 15:19:35 +02:00
$FULLTAG = GETPOST ( 'FULLTAG' );
if ( empty ( $FULLTAG )) $FULLTAG = GETPOST ( 'fulltag' );
2017-04-23 02:44:38 +02:00
2017-09-01 18:49:55 +02:00
$suffix = GETPOST ( " suffix " , 'aZ09' );
2017-05-14 16:17:00 +02:00
// Detect $paymentmethod
$paymentmethod = '' ;
if ( preg_match ( '/PM=([^\.]+)/' , $FULLTAG , $reg ))
{
$paymentmethod = $reg [ 1 ];
}
if ( empty ( $paymentmethod ))
{
dol_print_error ( null , 'The back url does not contains a parameter fulltag that should help us to find the payment method used' );
exit ;
}
else
{
dol_syslog ( " paymentmethod= " . $paymentmethod );
}
2017-05-13 15:19:35 +02:00
$validpaymentmethod = array ();
if ( ! empty ( $conf -> paypal -> enabled )) $validpaymentmethod [ 'paypal' ] = 'paypal' ;
if ( ! empty ( $conf -> paybox -> enabled )) $validpaymentmethod [ 'paybox' ] = 'paybox' ;
2017-05-14 16:17:00 +02:00
if ( ! empty ( $conf -> stripe -> enabled )) $validpaymentmethod [ 'stripe' ] = 'stripe' ;
2017-04-23 02:44:38 +02:00
// Security check
2017-05-13 15:19:35 +02:00
if ( empty ( $validpaymentmethod )) accessforbidden ( '' , 0 , 0 , 1 );
2017-04-23 02:44:38 +02:00
2017-05-13 21:10:56 +02:00
$object = new stdClass (); // For triggers
2017-04-23 02:44:38 +02:00
/*
* Actions
*/
/*
* View
*/
2017-08-31 02:34:07 +02:00
dol_syslog ( " Callback url when an online payment is canceled. query_string= " . ( empty ( $_SERVER [ " QUERY_STRING " ]) ? '' : $_SERVER [ " QUERY_STRING " ]) . " script_uri= " . ( empty ( $_SERVER [ " SCRIPT_URI " ]) ? '' : $_SERVER [ " SCRIPT_URI " ]), LOG_DEBUG , 0 , '_payment' );
2017-04-23 02:44:38 +02:00
$tracepost = " " ;
foreach ( $_POST as $k => $v ) $tracepost .= " { $k } - { $v } \n " ;
dol_syslog ( " POST= " . $tracepost , LOG_DEBUG , 0 , '_payment' );
2017-05-14 16:17:00 +02:00
if ( ! empty ( $_SESSION [ 'ipaddress' ])) // To avoid to make action twice
2017-04-23 02:44:38 +02:00
{
2017-05-14 16:17:00 +02:00
// Get on url call
$fulltag = $FULLTAG ;
$onlinetoken = empty ( $PAYPALTOKEN ) ? $_SESSION [ 'onlinetoken' ] : $PAYPALTOKEN ;
$payerID = empty ( $PAYPALPAYERID ) ? $_SESSION [ 'payerID' ] : $PAYPALPAYERID ;
// Set by newpayment.php
$paymentType = $_SESSION [ 'PaymentType' ];
$currencyCodeType = $_SESSION [ 'currencyCodeType' ];
2017-08-31 02:34:07 +02:00
$FinalPaymentAmt = $_SESSION [ 'FinalPaymentAmt' ];
2017-05-14 16:17:00 +02:00
// From env
$ipaddress = $_SESSION [ 'ipaddress' ];
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
// Appel des triggers
include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php' ;
$interface = new Interfaces ( $db );
$result = $interface -> run_triggers ( 'PAYMENTONLINE_PAYMENT_KO' , $object , $user , $langs , $conf );
if ( $result < 0 ) { $error ++ ; $errors = $interface -> errors ; }
// Fin appel triggers
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
// Send an email
$sendemail = '' ;
2017-08-31 02:34:07 +02:00
if ( ! empty ( $conf -> global -> ONLINE_PAYMENT_SENDEMAIL ))
{
$sendemail = $conf -> global -> ONLINE_PAYMENT_SENDEMAIL ;
2017-05-14 16:17:00 +02:00
}
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
if ( $sendemail )
{
$from = $conf -> global -> MAILING_EMAIL_FROM ;
$sendto = $sendemail ;
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
// Define link to login card
$appli = constant ( 'DOL_APPLICATION_TITLE' );
if ( ! empty ( $conf -> global -> MAIN_APPLICATION_TITLE ))
{
$appli = $conf -> global -> MAIN_APPLICATION_TITLE ;
if ( preg_match ( '/\d\.\d/' , $appli ))
{
if ( ! preg_match ( '/' . preg_quote ( DOL_VERSION ) . '/' , $appli )) $appli .= " ( " . DOL_VERSION . " ) " ; // If new title contains a version that is different than core
}
else $appli .= " " . DOL_VERSION ;
}
else $appli .= " " . DOL_VERSION ;
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
$urlback = $_SERVER [ " REQUEST_URI " ];
$topic = '[' . $appli . '] ' . $langs -> transnoentitiesnoconv ( " NewOnlinePaymentFailed " );
$content = " " ;
$content .= $langs -> transnoentitiesnoconv ( " ValidationOfOnlinePaymentFailed " ) . " \n " ;
$content .= " \n " ;
$content .= $langs -> transnoentitiesnoconv ( " TechnicalInformation " ) . " : \n " ;
$content .= $langs -> transnoentitiesnoconv ( " OnlinePaymentSystem " ) . ': ' . $paymentmethod . " <br> \n " ;
$content .= $langs -> transnoentitiesnoconv ( " ReturnURLAfterPayment " ) . ': ' . $urlback . " \n " ;
$content .= " tag= " . $fulltag . " \n token= " . $onlinetoken . " paymentType= " . $paymentType . " currencycodeType= " . $currencyCodeType . " payerId= " . $payerID . " ipaddress= " . $ipaddress . " FinalPaymentAmt= " . $FinalPaymentAmt ;
require_once DOL_DOCUMENT_ROOT . '/core/class/CMailFile.class.php' ;
$mailfile = new CMailFile ( $topic , $sendto , $from , $content );
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
$result = $mailfile -> sendfile ();
if ( $result )
{
dol_syslog ( " EMail sent to " . $sendto , LOG_DEBUG , 0 , '_payment' );
}
else
{
dol_syslog ( " Failed to send EMail to " . $sendto , LOG_ERR , 0 , '_payment' );
}
}
2017-08-31 02:34:07 +02:00
2017-05-14 16:17:00 +02:00
unset ( $_SESSION [ 'ipaddress' ]);
2017-04-23 02:44:38 +02:00
}
$head = '' ;
2017-08-31 02:34:07 +02:00
if ( ! empty ( $conf -> global -> ONLINE_PAYMENT_CSS_URL )) $head = '<link rel="stylesheet" type="text/css" href="' . $conf -> global -> ONLINE_PAYMENT_CSS_URL . '?lang=' . $langs -> defaultlang . '">' . " \n " ;
2017-04-23 02:44:38 +02:00
2017-05-13 15:19:35 +02:00
$conf -> dol_hide_topmenu = 1 ;
$conf -> dol_hide_leftmenu = 1 ;
llxHeader ( $head , $langs -> trans ( " PaymentForm " ), '' , '' , 0 , 0 , '' , '' , '' , 'onlinepaymentbody' );
2017-04-23 02:44:38 +02:00
// Show ko message
print '<span id="dolpaymentspan"></span>' . " \n " ;
print '<div id="dolpaymentdiv" align="center">' . " \n " ;
2017-09-01 18:49:55 +02:00
// Show logo (search order: logo defined by PAYMENT_LOGO_suffix, then PAYMENT_LOGO, then small company logo, large company logo, theme logo, common logo)
$width = 0 ;
// Define logo and logosmall
$logosmall = $mysoc -> logo_small ;
$logo = $mysoc -> logo ;
$paramlogo = 'ONLINE_PAYMENT_LOGO_' . $suffix ;
if ( ! empty ( $conf -> global -> $paramlogo )) $logosmall = $conf -> global -> $paramlogo ;
else if ( ! empty ( $conf -> global -> ONLINE_PAYMENT_LOGO )) $logosmall = $conf -> global -> ONLINE_PAYMENT_LOGO ;
//print '<!-- Show logo (logosmall='.$logosmall.' logo='.$logo.') -->'."\n";
// Define urllogo
$urllogo = '' ;
if ( ! empty ( $logosmall ) && is_readable ( $conf -> mycompany -> dir_output . '/logos/thumbs/' . $logosmall ))
{
$urllogo = DOL_URL_ROOT . '/viewimage.php?modulepart=mycompany&file=' . urlencode ( 'thumbs/' . $logosmall );
$width = 150 ;
}
elseif ( ! empty ( $logo ) && is_readable ( $conf -> mycompany -> dir_output . '/logos/' . $logo ))
{
$urllogo = DOL_URL_ROOT . '/viewimage.php?modulepart=mycompany&file=' . urlencode ( $logo );
$width = 150 ;
}
// Output html code for logo
if ( $urllogo )
{
print '<center><img id="dolpaymentlogo" title="' . $title . '" src="' . $urllogo . '"' ;
if ( $width ) print ' width="' . $width . '"' ;
print '></center>' ;
print '<br>' ;
}
2017-04-23 02:44:38 +02:00
print $langs -> trans ( " YourPaymentHasNotBeenRecorded " ) . " <br><br> " ;
2017-09-09 10:03:09 +02:00
$key = 'ONLINE_PAYMENT_MESSAGE_KO' ;
if ( ! empty ( $conf -> global -> $key )) print $conf -> global -> $key ;
2017-04-23 02:44:38 +02:00
print " \n </div> \n " ;
2017-09-09 10:54:30 +02:00
htmlPrintOnlinePaymentFooter ( $mysoc , $langs , 0 , $suffix );
2017-04-23 02:44:38 +02:00
2017-05-13 15:19:35 +02:00
llxFooter ( '' , 'public' );
2017-04-23 02:44:38 +02:00
$db -> close ();