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 >
2018-10-27 14:43:12 +02:00
* Copyright ( C ) 2012 Regis Houssin < regis . houssin @ inodbox . com >
2017-04-23 02:44:38 +02:00
*
* 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
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2017-04-23 02:44:38 +02:00
*/
/**
* \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 .
*/
2019-11-13 19:37:08 +01:00
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.
2017-04-23 02:44:38 +02:00
// 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.
2019-11-13 19:37:08 +01: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' ;
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> paypal -> enabled ))
2017-04-23 02:44:38 +02:00
{
require_once DOL_DOCUMENT_ROOT . '/paypal/lib/paypal.lib.php' ;
require_once DOL_DOCUMENT_ROOT . '/paypal/lib/paypalfunctions.lib.php' ;
}
2018-10-01 08:22:23 +02:00
$langs -> loadLangs ( array ( " main " , " other " , " dict " , " bills " , " companies " , " paybox " , " paypal " , " stripe " ));
2017-04-23 02:44:38 +02:00
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> paypal -> enabled ))
2017-05-14 16:17:00 +02:00
{
2020-09-07 10:18:17 +02:00
$PAYPALTOKEN = GETPOST ( 'TOKEN' );
if ( empty ( $PAYPALTOKEN )) $PAYPALTOKEN = GETPOST ( 'token' );
$PAYPALPAYERID = GETPOST ( 'PAYERID' );
if ( empty ( $PAYPALPAYERID )) $PAYPALPAYERID = GETPOST ( 'PayerID' );
2017-05-14 16:17:00 +02:00
}
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> paybox -> enabled ))
2017-08-31 02:34:07 +02:00
{
}
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> stripe -> enabled ))
2017-08-31 02:34:07 +02:00
{
}
2017-05-14 16:17:00 +02:00
2019-11-13 19:37:08 +01:00
$FULLTAG = GETPOST ( 'FULLTAG' );
if ( empty ( $FULLTAG )) $FULLTAG = GETPOST ( 'fulltag' );
2017-04-23 02:44:38 +02:00
2019-11-13 19:37:08 +01:00
$suffix = GETPOST ( " suffix " , 'aZ09' );
2017-09-01 18:49:55 +02:00
2017-05-14 16:17:00 +02:00
// Detect $paymentmethod
2019-11-13 19:37:08 +01:00
$paymentmethod = '' ;
2020-03-13 03:28:13 +01:00
$reg = array ();
2017-05-14 16:17:00 +02:00
if ( preg_match ( '/PM=([^\.]+)/' , $FULLTAG , $reg ))
{
2020-09-07 10:18:17 +02:00
$paymentmethod = $reg [ 1 ];
2017-05-14 16:17:00 +02:00
}
if ( empty ( $paymentmethod ))
{
2020-09-07 10:18:17 +02:00
dol_print_error ( null , 'The back url does not contains a parameter fulltag that should help us to find the payment method used' );
exit ;
2020-05-21 15:05:19 +02:00
} else {
2020-09-07 10:18:17 +02:00
dol_syslog ( " paymentmethod= " . $paymentmethod );
2017-05-14 16:17:00 +02:00
}
2019-11-13 19:37:08 +01:00
$validpaymentmethod = array ();
if ( ! empty ( $conf -> paypal -> enabled )) $validpaymentmethod [ 'paypal' ] = 'paypal' ;
if ( ! empty ( $conf -> paybox -> enabled )) $validpaymentmethod [ 'paybox' ] = 'paybox' ;
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
2019-11-13 19:37:08 +01:00
$object = new stdClass (); // For triggers
2017-05-13 21:10:56 +02:00
2017-04-23 02:44:38 +02:00
/*
* Actions
*/
/*
* View
*/
2019-11-13 19:37:08 +01:00
dol_syslog ( " Callback url when an online payment is refused or 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 = " " ;
2019-11-13 19:37:08 +01:00
foreach ( $_POST as $k => $v ) $tracepost .= " { $k } - { $v } \n " ;
2017-04-23 02:44:38 +02:00
dol_syslog ( " POST= " . $tracepost , LOG_DEBUG , 0 , '_payment' );
2019-11-13 19:37:08 +01:00
if ( ! empty ( $_SESSION [ 'ipaddress' ])) // To avoid to make action twice
2017-04-23 02:44:38 +02:00
{
2020-09-07 10:18:17 +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' ];
$FinalPaymentAmt = $_SESSION [ 'FinalPaymentAmt' ];
// From env
$ipaddress = $_SESSION [ 'ipaddress' ];
$errormessage = $_SESSION [ 'errormessage' ];
if ( is_object ( $object ) && method_exists ( $object , 'call_trigger' )) {
// Call trigger
$result = $object -> call_trigger ( 'PAYMENTONLINE_PAYMENT_KO' , $user );
if ( $result < 0 ) $error ++ ;
// End call triggers
}
// Send an email
$sendemail = '' ;
2019-11-13 19:37:08 +01:00
if ( ! empty ( $conf -> global -> ONLINE_PAYMENT_SENDEMAIL ))
2017-08-31 02:34:07 +02:00
{
2020-09-07 10:18:17 +02:00
$sendemail = $conf -> global -> ONLINE_PAYMENT_SENDEMAIL ;
}
// Send warning of error to administrator
if ( $sendemail )
{
$companylangs = new Translate ( '' , $conf );
$companylangs -> setDefaultLang ( $mysoc -> default_lang );
$companylangs -> loadLangs ( array ( 'main' , 'members' , 'bills' , 'paypal' , 'paybox' ));
$from = $conf -> global -> MAILING_EMAIL_FROM ;
$sendto = $sendemail ;
// 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 ;
$urlback = $_SERVER [ " REQUEST_URI " ];
$topic = '[' . $appli . '] ' . $companylangs -> transnoentitiesnoconv ( " NewOnlinePaymentFailed " );
$content = " " ;
$content .= '<font color="orange">' . $companylangs -> transnoentitiesnoconv ( " ValidationOfOnlinePaymentFailed " ) . " </font> \n " ;
$content .= " <br><br> \n " ;
$content .= '<u>' . $companylangs -> transnoentitiesnoconv ( " TechnicalInformation " ) . " :</u><br> \n " ;
$content .= $companylangs -> transnoentitiesnoconv ( " OnlinePaymentSystem " ) . ': <strong>' . $paymentmethod . " </strong><br> \n " ;
$content .= $companylangs -> transnoentitiesnoconv ( " ReturnURLAfterPayment " ) . ': ' . $urlback . " <br> \n " ;
$content .= $companylangs -> transnoentitiesnoconv ( " Error " ) . ': ' . $errormessage . " <br> \n " ;
$content .= " <br> \n " ;
$content .= " tag= " . $fulltag . " token= " . $onlinetoken . " paymentType= " . $paymentType . " currencycodeType= " . $currencyCodeType . " payerId= " . $payerID . " ipaddress= " . $ipaddress . " FinalPaymentAmt= " . $FinalPaymentAmt ;
$ishtml = dol_textishtml ( $content ); // May contain urls
require_once DOL_DOCUMENT_ROOT . '/core/class/CMailFile.class.php' ;
$mailfile = new CMailFile ( $topic , $sendto , $from , $content , array (), array (), array (), '' , '' , 0 , $ishtml );
$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' );
}
}
unset ( $_SESSION [ 'ipaddress' ]);
2017-04-23 02:44:38 +02:00
}
2019-11-13 19:37:08 +01:00
$head = '' ;
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
2019-11-13 19:37:08 +01:00
$conf -> dol_hide_topmenu = 1 ;
$conf -> dol_hide_leftmenu = 1 ;
2017-05-13 15:19:35 +02:00
2020-03-13 03:28:13 +01:00
$replacemainarea = ( empty ( $conf -> dol_hide_leftmenu ) ? '<div>' : '' ) . '<div>' ;
llxHeader ( $head , $langs -> trans ( " PaymentForm " ), '' , '' , 0 , 0 , '' , '' , '' , 'onlinepaymentbody' , $replacemainarea );
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)
// Define logo and logosmall
2019-11-13 19:37:08 +01:00
$logosmall = $mysoc -> logo_small ;
$logo = $mysoc -> logo ;
$paramlogo = 'ONLINE_PAYMENT_LOGO_' . $suffix ;
if ( ! empty ( $conf -> global -> $paramlogo )) $logosmall = $conf -> global -> $paramlogo ;
elseif ( ! empty ( $conf -> global -> ONLINE_PAYMENT_LOGO )) $logosmall = $conf -> global -> ONLINE_PAYMENT_LOGO ;
2017-09-01 18:49:55 +02:00
//print '<!-- Show logo (logosmall='.$logosmall.' logo='.$logo.') -->'."\n";
// Define urllogo
2019-11-13 19:37:08 +01:00
$urllogo = '' ;
2020-03-13 03:28:13 +01:00
$urllogofull = '' ;
2019-11-13 19:37:08 +01:00
if ( ! empty ( $logosmall ) && is_readable ( $conf -> mycompany -> dir_output . '/logos/thumbs/' . $logosmall ))
2017-09-01 18:49:55 +02:00
{
2020-03-13 03:28:13 +01:00
$urllogo = DOL_URL_ROOT . '/viewimage.php?modulepart=mycompany&entity=' . $conf -> entity . '&file=' . urlencode ( 'logos/thumbs/' . $logosmall );
$urllogofull = $dolibarr_main_url_root . '/viewimage.php?modulepart=mycompany&entity=' . $conf -> entity . '&file=' . urlencode ( 'logos/thumbs/' . $logosmall );
2020-05-21 15:05:19 +02:00
} elseif ( ! empty ( $logo ) && is_readable ( $conf -> mycompany -> dir_output . '/logos/' . $logo ))
2017-09-01 18:49:55 +02:00
{
2020-03-13 03:28:13 +01:00
$urllogo = DOL_URL_ROOT . '/viewimage.php?modulepart=mycompany&entity=' . $conf -> entity . '&file=' . urlencode ( 'logos/' . $logo );
$urllogofull = $dolibarr_main_url_root . '/viewimage.php?modulepart=mycompany&entity=' . $conf -> entity . '&file=' . urlencode ( 'logos/' . $logo );
2017-09-01 18:49:55 +02:00
}
2020-03-13 03:28:13 +01:00
2017-09-01 18:49:55 +02:00
// Output html code for logo
if ( $urllogo )
{
2020-03-13 03:28:13 +01:00
print '<div class="backgreypublicpayment">' ;
print '<div class="logopublicpayment">' ;
print '<img id="dolpaymentlogo" src="' . $urllogo . '"' ;
print '>' ;
print '</div>' ;
if ( empty ( $conf -> global -> MAIN_HIDE_POWERED_BY )) {
2020-05-15 12:43:48 +02:00
print '<div class="poweredbypublicpayment opacitymedium right"><a href="https://www.dolibarr.org" target="dolibarr">' . $langs -> trans ( " PoweredBy " ) . '<br><img src="' . DOL_URL_ROOT . '/theme/dolibarr_logo.svg" width="80px"></a></div>' ;
2020-03-13 03:28:13 +01:00
}
print '</div>' ;
2017-09-01 18:49:55 +02:00
}
2020-03-13 03:28:13 +01:00
print '<br><br>' ;
2017-04-23 02:44:38 +02:00
print $langs -> trans ( " YourPaymentHasNotBeenRecorded " ) . " <br><br> " ;
2019-11-13 19:37:08 +01:00
$key = 'ONLINE_PAYMENT_MESSAGE_KO' ;
if ( ! empty ( $conf -> global -> $key )) print $conf -> global -> $key ;
2017-09-09 10:03:09 +02:00
2019-08-01 03:54:54 +02:00
$type = GETPOST ( 's' , 'alpha' );
$ref = GETPOST ( 'ref' , 'none' );
$tag = GETPOST ( 'tag' , 'alpha' );
require_once DOL_DOCUMENT_ROOT . '/core/lib/payments.lib.php' ;
if ( $type || $tag )
{
2020-04-10 10:59:32 +02:00
$urlsubscription = getOnlinePaymentUrl ( 0 , ( $type ? $type : 'free' ), $ref , $FinalPaymentAmt , $tag );
2019-08-01 03:54:54 +02:00
print $langs -> trans ( " ClickHereToTryAgain " , $urlsubscription );
}
2017-04-23 02:44:38 +02:00
print " \n </div> \n " ;
2019-01-27 11:55:16 +01: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 ();