dolibarr 21.0.0-alpha
paymentko.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2006-2013 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
30if (!defined('NOLOGIN')) {
31 define("NOLOGIN", 1); // This means this output page does not require to be logged.
32}
33if (!defined('NOCSRFCHECK')) {
34 define("NOCSRFCHECK", 1); // We accept to go on this page from external web site.
35}
36if (!defined('NOIPCHECK')) {
37 define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
38}
39if (!defined('NOBROWSERNOTIF')) {
40 define('NOBROWSERNOTIF', '1');
41}
42
43// For MultiCompany module.
44// Do not use GETPOST here, function is not defined and this test must be done before including main.inc.php
45// Because 2 entities can have the same ref.
46$entity = (!empty($_GET['e']) ? (int) $_GET['e'] : (!empty($_POST['e']) ? (int) $_POST['e'] : 1));
47if (is_numeric($entity)) {
48 define("DOLENTITY", $entity);
49}
50
51'@phan-var-force CommonObject $object';
52
53// Load Dolibarr environment
54require '../../main.inc.php';
55require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
56require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
57
58if (isModEnabled('paypal')) {
59 require_once DOL_DOCUMENT_ROOT.'/paypal/lib/paypal.lib.php';
60 require_once DOL_DOCUMENT_ROOT.'/paypal/lib/paypalfunctions.lib.php';
61}
62
63$langs->loadLangs(array("main", "other", "dict", "bills", "companies", "paybox", "paypal", "stripe"));
64
65if (isModEnabled('paypal')) {
66 $PAYPALTOKEN = GETPOST('TOKEN');
67 if (empty($PAYPALTOKEN)) {
68 $PAYPALTOKEN = GETPOST('token');
69 }
70 $PAYPALPAYERID = GETPOST('PAYERID');
71 if (empty($PAYPALPAYERID)) {
72 $PAYPALPAYERID = GETPOST('PayerID');
73 }
74}
75if (isModEnabled('paybox')) {
76}
77if (isModEnabled('stripe')) {
78}
79
80$FULLTAG = GETPOST('FULLTAG');
81if (empty($FULLTAG)) {
82 $FULLTAG = GETPOST('fulltag');
83}
84
85$suffix = GETPOST("suffix", 'aZ09');
86
87
88// Detect $paymentmethod
89$paymentmethod = '';
90$reg = array();
91if (preg_match('/PM=([^\.]+)/', $FULLTAG, $reg)) {
92 $paymentmethod = $reg[1];
93}
94if (empty($paymentmethod)) {
95 dol_print_error(null, 'The back url does not contain a parameter fulltag that should help us to find the payment method used');
96 exit;
97} else {
98 dol_syslog("paymentmethod=".$paymentmethod);
99}
100
101// Detect $ws
102$ws = preg_match('/WS=([^\.]+)/', $FULLTAG, $reg_ws) ? $reg_ws[1] : 0;
103if ($ws) {
104 dol_syslog("Paymentko.php page is invoked from a website with ref ".$ws.". It performs actions and then redirects back to this website. A page with ref paymentko must be created for this website.", LOG_DEBUG, 0, '_payment');
105}
106
107
108$validpaymentmethod = getValidOnlinePaymentMethods($paymentmethod);
109
110// Security check
111if (empty($validpaymentmethod)) {
112 httponly_accessforbidden('No valid payment mode');
113}
114
115
116$object = new stdClass(); // For triggers
117
118
119/*
120 * Actions
121 */
122
123// None
124
125
126
127/*
128 * View
129 */
130
131// Check if we have redirtodomain to do.
132if ($ws) {
133 $doactionsthenredirect = 1;
134}
135
136
137dol_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');
138
139$tracepost = "";
140foreach ($_POST as $k => $v) {
141 if (is_scalar($k) && is_scalar($v)) {
142 $tracepost .= "$k - $v\n";
143 }
144}
145dol_syslog("POST=".$tracepost, LOG_DEBUG, 0, '_payment');
146
147
148// Set $appli for emails title
149$appli = $mysoc->name;
150
151
152if (!empty($_SESSION['ipaddress'])) { // To avoid to make action twice
153 // Get on url call
154 $fulltag = $FULLTAG;
155 $onlinetoken = empty($PAYPALTOKEN) ? $_SESSION['onlinetoken'] : $PAYPALTOKEN;
156 $payerID = empty($PAYPALPAYERID) ? $_SESSION['payerID'] : $PAYPALPAYERID;
157 // Set by newpayment.php
158 $paymentType = $_SESSION['PaymentType'];
159 $currencyCodeType = $_SESSION['currencyCodeType'];
160 $FinalPaymentAmt = $_SESSION['FinalPaymentAmt'];
161 // From env
162 $ipaddress = $_SESSION['ipaddress'];
163 $errormessage = $_SESSION['errormessage'];
164
165 if (is_object($object) && method_exists($object, 'call_trigger')) {
166 // Call trigger @phan-suppress-next-line PhanUndeclaredMethod
167 $result = $object->call_trigger('PAYMENTONLINE_PAYMENT_KO', $user);
168 if ($result < 0) {
169 $error++;
170 }
171 // End call triggers
172 }
173
174 // Send an email
175 $sendemail = getDolGlobalString('ONLINE_PAYMENT_SENDEMAIL');
176
177 // Send warning of error to administrator
178 if ($sendemail) {
179 $companylangs = new Translate('', $conf);
180 $companylangs->setDefaultLang($mysoc->default_lang);
181 $companylangs->loadLangs(array('main', 'members', 'bills', 'paypal', 'paybox', 'stripe'));
182
183 $from = getDolGlobalString('MAILING_EMAIL_FROM', getDolGlobalString("MAIN_MAIL_EMAIL_FROM"));
184 $sendto = $sendemail;
185
186 $urlback = $_SERVER["REQUEST_URI"];
187 $topic = '['.$appli.'] '.$companylangs->transnoentitiesnoconv("NewOnlinePaymentFailed");
188 $content = "";
189 $content .= '<span style="color: orange">'.$companylangs->transnoentitiesnoconv("ValidationOfOnlinePaymentFailed")."</span>\n";
190
191 $content .= "<br><br>\n";
192 $content .= '<u>'.$companylangs->transnoentitiesnoconv("TechnicalInformation").":</u><br>\n";
193 $content .= $companylangs->transnoentitiesnoconv("OnlinePaymentSystem").': <strong>'.$paymentmethod."</strong><br>\n";
194 $content .= $companylangs->transnoentitiesnoconv("ReturnURLAfterPayment").': '.$urlback."<br>\n";
195 $content .= $companylangs->transnoentitiesnoconv("Error").': '.$errormessage."<br>\n";
196 $content .= "<br>\n";
197 $content .= "tag=".$fulltag." token=".$onlinetoken." paymentType=".$paymentType." currencycodeType=".$currencyCodeType." payerId=".$payerID." ipaddress=".$ipaddress." FinalPaymentAmt=".$FinalPaymentAmt;
198
199 $ishtml = dol_textishtml($content); // May contain urls
200
201 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
202 $mailfile = new CMailFile($topic, $sendto, $from, $content, array(), array(), array(), '', '', 0, $ishtml ? 1 : 0);
203
204 $result = $mailfile->sendfile();
205 if ($result) {
206 dol_syslog("EMail sent to ".$sendto, LOG_DEBUG, 0, '_payment');
207 } else {
208 dol_syslog("Failed to send EMail to ".$sendto, LOG_ERR, 0, '_payment');
209 }
210 }
211
212 unset($_SESSION['ipaddress']);
213}
214
215// Show answer page
216if (empty($doactionsthenredirect)) {
217 $head = '';
218 if (getDolGlobalString('ONLINE_PAYMENT_CSS_URL')) {
219 $head = '<link rel="stylesheet" type="text/css" href="' . getDolGlobalString('ONLINE_PAYMENT_CSS_URL').'?lang='.$langs->defaultlang.'">'."\n";
220 }
221
222 $conf->dol_hide_topmenu = 1;
223 $conf->dol_hide_leftmenu = 1;
224
225 $replacemainarea = (empty($conf->dol_hide_leftmenu) ? '<div>' : '').'<div>';
226 llxHeader($head, $langs->trans("PaymentForm"), '', '', 0, 0, '', '', '', 'onlinepaymentbody', $replacemainarea);
227
228
229 // Show ko message
230 print '<span id="dolpaymentspan"></span>'."\n";
231 print '<div id="dolpaymentdiv" align="center">'."\n";
232
233 // Show logo (search order: logo defined by PAYMENT_LOGO_suffix, then PAYMENT_LOGO, then small company logo, large company logo, theme logo, common logo)
234 // Define logo and logosmall
235 $logosmall = $mysoc->logo_small;
236 $logo = $mysoc->logo;
237 $paramlogo = 'ONLINE_PAYMENT_LOGO_'.$suffix;
238 if (getDolGlobalString($paramlogo)) {
239 $logosmall = getDolGlobalString($paramlogo);
240 } elseif (getDolGlobalString('ONLINE_PAYMENT_LOGO')) {
241 $logosmall = getDolGlobalString('ONLINE_PAYMENT_LOGO');
242 }
243 //print '<!-- Show logo (logosmall='.$logosmall.' logo='.$logo.') -->'."\n";
244 // Define urllogo
245 $urllogo = '';
246 $urllogofull = '';
247 if (!empty($logosmall) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$logosmall)) {
248 $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&amp;entity='.$conf->entity.'&amp;file='.urlencode('logos/thumbs/'.$logosmall);
249 $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall);
250 } elseif (!empty($logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$logo)) {
251 $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&amp;entity='.$conf->entity.'&amp;file='.urlencode('logos/'.$logo);
252 $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo);
253 }
254
255 // Output html code for logo
256 if ($urllogo) {
257 print '<div class="backgreypublicpayment">';
258 print '<div class="logopublicpayment">';
259 print '<img id="dolpaymentlogo" src="'.$urllogo.'"';
260 print '>';
261 print '</div>';
262 if (!getDolGlobalString('MAIN_HIDE_POWERED_BY')) {
263 print '<div class="poweredbypublicpayment opacitymedium right"><a class="poweredbyhref" href="https://www.dolibarr.org?utm_medium=website&utm_source=poweredby" target="dolibarr" rel="noopener">'.$langs->trans("PoweredBy").'<br><img class="poweredbyimg" src="'.DOL_URL_ROOT.'/theme/dolibarr_logo.svg" width="80px"></a></div>';
264 }
265 print '</div>';
266 }
267 if (getDolGlobalString('MAIN_IMAGE_PUBLIC_PAYMENT')) {
268 print '<div class="backimagepublicpayment">';
269 print '<img id="idMAIN_IMAGE_PUBLIC_PAYMENT" src="' . getDolGlobalString('MAIN_IMAGE_PUBLIC_PAYMENT').'">';
270 print '</div>';
271 }
272
273
274 print '<br><br>';
275
276
277 print $langs->trans("YourPaymentHasNotBeenRecorded")."<br><br>";
278
279 $key = 'ONLINE_PAYMENT_MESSAGE_KO';
280 if (getDolGlobalString($key)) {
281 print $conf->global->$key;
282 }
283
284 $type = GETPOST('s', 'alpha');
285 $ref = GETPOST('ref', 'alphanohtml');
286 $tag = GETPOST('tag', 'alpha');
287 require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
288 if ($type || $tag) {
289 $urlsubscription = getOnlinePaymentUrl(0, ($type ? $type : 'free'), $ref, $FinalPaymentAmt, $tag);
290
291 print $langs->trans("ClickHereToTryAgain", $urlsubscription);
292 }
293
294 print "\n</div>\n";
295
296
297 htmlPrintOnlineFooter($mysoc, $langs, 0, $suffix);
298
299 llxFooter('', 'public');
300}
301
302
303$db->close();
304
305
306// If option to do a redirect somewhere else is defined.
307if (!empty($doactionsthenredirect)) {
308 // Redirect to an error page
309 // Paymentko page must be created for the specific website
310 $ext_urlko = DOL_URL_ROOT.'/public/website/index.php?website='.urlencode($ws).'&pageref=paymentko&fulltag='.$FULLTAG;
311 print "<script>window.top.location.href = '".dol_escape_js($ext_urlko)."';</script>";
312}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:70
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
Class to manage translations.
htmlPrintOnlineFooter($fromcompany, $langs, $addformmessage=0, $suffix='', $object=null)
Show footer of company in HTML pages.
llxFooter()
Footer empty.
Definition document.php:107
dol_textishtml($msg, $option=0)
Return if a text is a html content.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.