dolibarr 24.0.0-beta
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-2025 Frédéric France <frederic.france@free.fr>
6 * Copyright (C) 2024-2025 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
43if (!defined('XFRAMEOPTIONS_ALLOWALL')) {
44 define('XFRAMEOPTIONS_ALLOWALL', '1');
45}
46
47// For MultiCompany module.
48// Do not use GETPOST here, function is not defined and this test must be done before including main.inc.php
49// Because 2 entities can have the same ref.
50$entity = (!empty($_GET['e']) ? (int) $_GET['e'] : (!empty($_POST['e']) ? (int) $_POST['e'] : 1));
51if (is_numeric($entity)) {
52 define("DOLENTITY", $entity);
53}
54
55'@phan-var-force CommonObject $object';
56
57// Load Dolibarr environment
58require '../../main.inc.php';
59require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
60require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
61require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
62if (isModEnabled('paypal')) {
63 require_once DOL_DOCUMENT_ROOT.'/paypal/lib/paypal.lib.php';
64 require_once DOL_DOCUMENT_ROOT.'/paypal/lib/paypalfunctions.lib.php';
65}
66
78// Hook to be used by external payment modules (ie Payzen, ...)
79$hookmanager = new HookManager($db);
80
81$hookmanager->initHooks(array('newpayment'));
82
83$langs->loadLangs(array("main", "other", "dict", "bills", "companies", "paypal", "stripe"));
84
85$PAYPALTOKEN = "";
86$PAYPALPAYERID = "";
87if (isModEnabled('paypal')) {
88 $PAYPALTOKEN = GETPOST('TOKEN');
89 if (empty($PAYPALTOKEN)) {
90 $PAYPALTOKEN = GETPOST('token');
91 }
92 $PAYPALPAYERID = GETPOST('PAYERID');
93 if (empty($PAYPALPAYERID)) {
94 $PAYPALPAYERID = GETPOST('PayerID');
95 }
96}
97
98$FULLTAG = GETPOST('FULLTAG');
99if (empty($FULLTAG)) {
100 $FULLTAG = GETPOST('fulltag');
101}
102
103$suffix = GETPOST("suffix", 'aZ09');
104
105
106// Detect $paymentmethod
107$paymentmethod = '';
108$reg = array();
109if (preg_match('/PM=([^\.]+)/', $FULLTAG, $reg)) {
110 $paymentmethod = $reg[1];
111}
112if (empty($paymentmethod)) {
113 dol_print_error(null, 'The back url does not contain a parameter fulltag that should help us to find the payment method used');
114 exit;
115} else {
116 dol_syslog("paymentko.php: paymentmethod=".$paymentmethod, LOG_DEBUG, 0, '_payment');
117}
118
119// Detect $ws
120$reg_ws = array();
121$ws = preg_match('/WS=([^\.]+)/', $FULLTAG, $reg_ws) ? $reg_ws[1] : 0;
122if ($ws) {
123 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');
124}
125
126
127$validpaymentmethod = getValidOnlinePaymentMethods($paymentmethod);
128
129// Security check
130if (empty($validpaymentmethod)) {
131 httponly_accessforbidden('No valid payment mode');
132}
133
134
135$object = new stdClass(); // For triggers
138$error = 0;
139
140// Check if we have redirtodomain to do.
141$ws_virtuelhost = null;
142$ws_id = 0;
143$doactionsthenredirect = 0;
144if ($ws) {
145 $doactionsthenredirect = 1;
146 include_once DOL_DOCUMENT_ROOT.'/website/class/website.class.php';
147 $website = new Website($db);
148 $result = $website->fetch(0, $ws);
149 if ($result > 0) {
150 $ws_virtuelhost = $website->virtualhost;
151 $ws_id = $website->id;
152 }
153}
154
155
156/*
157 * Actions
158 */
159
160// None
161
162
163/*
164 * View
165 */
166
167dol_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');
168
169$tracepost = "";
170foreach ($_POST as $k => $v) {
171 if (is_scalar($k) && is_scalar($v)) {
172 $tracepost .= "$k - $v\n";
173 }
174}
175dol_syslog("POST=".$tracepost, LOG_DEBUG, 0, '_payment');
176
177dol_syslog("paymentkosessioncode=".GETPOST('paymentkosessioncode')." SESSION['paymentkosessioncode']=".$_SESSION['paymentkosessioncode'], LOG_DEBUG, 0, '_payment');
178
179// Set $appli for emails title
180$appli = $mysoc->name;
181$error = 0;
182$FinalPaymentAmt = 0;
183
184
185if (!empty($_SESSION['ipaddress'])) { // To avoid to make action twice
186 // Get on url call
187 $fulltag = $FULLTAG;
188 $onlinetoken = empty($PAYPALTOKEN) ? $_SESSION['onlinetoken'] : $PAYPALTOKEN;
189 $payerID = empty($PAYPALPAYERID) ? $_SESSION['payerID'] : $PAYPALPAYERID;
190 // Set by newpayment.php
191 $paymentType = $_SESSION['PaymentType'] ?? '';
192 $currencyCodeType = $_SESSION['currencyCodeType'];
193 $FinalPaymentAmt = $_SESSION['FinalPaymentAmt'];
194 // From env
195 $ipaddress = $_SESSION['ipaddress'];
196 $errormessage = $_SESSION['errormessage'];
197
198 // @phpstan-ignore-next-line
199 if (is_object($object) && method_exists($object, 'call_trigger')) {
200 // Call trigger @phan-suppress-next-line PhanUndeclaredMethod
201 $result = $object->call_trigger('PAYMENTONLINE_PAYMENT_KO', $user);
202 if ($result < 0) {
203 $error++;
204 }
205 // End call triggers
206 }
207
208 // Send an email
209 $sendemail = getDolGlobalString('ONLINE_PAYMENT_SENDEMAIL');
210
211 // Send warning of error to administrator
212 if ($sendemail) {
213 // Get default language to use for the company for supervision emails
214 $myCompanyDefaultLang = (string) $mysoc->default_lang;
215 if (empty($myCompanyDefaultLang) || $myCompanyDefaultLang === 'auto') {
216 // We must guess the language from the company country. We must not use the language of the visitor. This is a technical email for supervision
217 // so it must always be into the same language.
218 $myCompanyDefaultLang = (string) getLanguageCodeFromCountryCode($mysoc->country_code);
219 }
220
221 $companylangs = new Translate('', $conf);
222 $companylangs->setDefaultLang($myCompanyDefaultLang);
223 $companylangs->loadLangs(array('main', 'members', 'bills', 'paypal', 'stripe'));
224
225 $from = getDolGlobalString("MAIN_MAIL_EMAIL_FROM");
226 $sendto = $sendemail;
227
228 $urlback = $_SERVER["REQUEST_URI"];
229 $topic = '['.$appli.'] '.$companylangs->transnoentitiesnoconv("NewOnlinePaymentFailed");
230 $content = "";
231 $content .= '<span style="color: orange">'.$companylangs->transnoentitiesnoconv("ValidationOfOnlinePaymentFailed")."</span>\n";
232
233 $content .= "<br><br>\n";
234 $content .= '<u>'.$companylangs->transnoentitiesnoconv("TechnicalInformation").":</u><br>\n";
235 $content .= $companylangs->transnoentitiesnoconv("OnlinePaymentSystem").': <strong>'.$paymentmethod."</strong><br>\n";
236 $content .= $companylangs->transnoentitiesnoconv("ReturnURLAfterPayment").': '.$urlback."<br>\n";
237 $content .= $companylangs->transnoentitiesnoconv("Error").': '.$errormessage."<br>\n";
238 $content .= "<br>\n";
239 $content .= "tag=".$fulltag." token=".$onlinetoken." paymentType=".$paymentType." currencycodeType=".$currencyCodeType." payerId=".$payerID." ipaddress=".$ipaddress." FinalPaymentAmt=".$FinalPaymentAmt;
240
241 $ishtml = dol_textishtml($content); // May contain urls
242
243 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
244 $mailfile = new CMailFile($topic, $sendto, $from, $content, array(), array(), array(), '', '', 0, $ishtml ? 1 : 0);
245
246 $result = $mailfile->sendfile();
247 if ($result) {
248 dol_syslog("EMail sent to ".$sendto, LOG_DEBUG, 0, '_payment');
249 } else {
250 dol_syslog("Failed to send EMail to ".$sendto, LOG_ERR, 0, '_payment');
251 }
252 }
253
254 unset($_SESSION['ipaddress']);
255}
256
257// Show answer page
258if (empty($doactionsthenredirect)) {
259 $head = '';
260 if (getDolGlobalString('ONLINE_PAYMENT_CSS_URL')) {
261 $head = '<link rel="stylesheet" type="text/css" href="' . getDolGlobalString('ONLINE_PAYMENT_CSS_URL').'?lang='.$langs->defaultlang.'">'."\n";
262 }
263
264 $conf->dol_hide_topmenu = 1;
265 $conf->dol_hide_leftmenu = 1;
266
267 $replacemainarea = (empty($conf->dol_hide_leftmenu) ? '<div>' : '').'<div>';
268 llxHeader($head, $langs->trans("PaymentForm"), '', '', 0, 0, '', '', '', 'onlinepaymentbody', $replacemainarea);
269
270
271 // Show ko message
272 print '<span id="dolpaymentspan"></span>'."\n";
273 print '<div id="dolpaymentdiv" align="center">'."\n";
274
275 // Show logo (search order: logo defined by PAYMENT_LOGO_suffix, then PAYMENT_LOGO, then small company logo, large company logo, theme logo, common logo)
276 // Define logo and logosmall
277 $logosmall = $mysoc->logo_small;
278 $logo = $mysoc->logo;
279 $paramlogo = 'ONLINE_PAYMENT_LOGO_'.$suffix;
280 if (getDolGlobalString($paramlogo)) {
281 $logosmall = getDolGlobalString($paramlogo);
282 } elseif (getDolGlobalString('ONLINE_PAYMENT_LOGO')) {
283 $logosmall = getDolGlobalString('ONLINE_PAYMENT_LOGO');
284 }
285 //print '<!-- Show logo (logosmall='.$logosmall.' logo='.$logo.') -->'."\n";
286 // Define urllogo
287 $urllogo = '';
288 $urllogofull = '';
289 if (!empty($logosmall) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$logosmall)) {
290 $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&amp;entity='.$conf->entity.'&amp;file='.urlencode('logos/thumbs/'.$logosmall);
291 $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/thumbs/'.$logosmall);
292 } elseif (!empty($logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$logo)) {
293 $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&amp;entity='.$conf->entity.'&amp;file='.urlencode('logos/'.$logo);
294 $urllogofull = $dolibarr_main_url_root.'/viewimage.php?modulepart=mycompany&entity='.$conf->entity.'&file='.urlencode('logos/'.$logo);
295 }
296
297 // Output html code for logo
298 if ($urllogo) {
299 print '<div class="backgreypublicpayment">';
300 print '<div class="logopublicpayment">';
301 print '<img id="dolpaymentlogo" src="'.$urllogo.'"';
302 print '>';
303 print '</div>';
304 if (!getDolGlobalString('MAIN_HIDE_POWERED_BY')) {
305 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>';
306 }
307 print '</div>';
308 }
309 if (getDolGlobalString('MAIN_IMAGE_PUBLIC_PAYMENT')) {
310 print '<div class="backimagepublicpayment">';
311 print '<img id="idMAIN_IMAGE_PUBLIC_PAYMENT" src="' . getDolGlobalString('MAIN_IMAGE_PUBLIC_PAYMENT').'">';
312 print '</div>';
313 }
314
315
316 print '<br><br>';
317
318
319 print $langs->trans("YourPaymentHasNotBeenRecorded")."<br><br>";
320
321 $key = 'ONLINE_PAYMENT_MESSAGE_KO';
322 if (getDolGlobalString($key)) {
323 print $conf->global->$key;
324 }
325
326 $type = GETPOST('s', 'alpha');
327 $ref = GETPOST('ref', 'alphanohtml');
328 $tag = GETPOST('tag', 'alpha');
329 require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
330 if ($type || $tag) {
331 $urlsubscription = getOnlinePaymentUrl(0, ($type ? $type : 'free'), $ref, $FinalPaymentAmt, $tag);
332
333 print $langs->trans("ClickHereToTryAgain", $urlsubscription);
334 }
335
336 print "\n</div>\n";
337
338
339 htmlPrintOnlineFooter($mysoc, $langs, 0, $suffix);
340
341 llxFooter('', 'public');
342}
343
344
345$db->close();
346
347
348// If option to do a redirect somewhere else is defined.
349if (!empty($doactionsthenredirect)) {
350 // Redirect to an error page
351 $randomseckey = getRandomPassword(true, null, 20);
352 $_SESSION['paymentkosessionkey'] = $randomseckey; // key between paymentok.php to another page like a paymentko of the website.
353
354 // Paymentko page must be created for the specific website
355 if (!defined('USEDOLIBARRSERVER') && !empty($ws_virtuelhost)) {
356 $ext_urlko = $ws_virtuelhost . '/paymentko.php?paymentkosessioncode='.urlencode($randomseckey).'&fulltag='.$FULLTAG;
357 } else {
358 $ext_urlko = DOL_URL_ROOT.'/public/website/index.php?paymentkosessioncode='.urlencode($randomseckey).'&website='.urlencode($ws).'&pageref=paymentko&fulltag='.$FULLTAG;
359 }
360
361 dol_syslog("Now do a redirect using Location : ".$ext_urlko, LOG_DEBUG, 0, '_payment');
362 header("Location: ".$ext_urlko);
363 exit;
364}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
global $dolibarr_main_url_root
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
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:73
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
Class to manage hooks.
Class to manage translations.
Class Website.
htmlPrintOnlineFooter($fromcompany, $langs, $addformmessage=0, $suffix='', $object=null)
Show footer of company in HTML public pages.
global $mysoc
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
getLanguageCodeFromCountryCode($countrycode)
Return default language from country code.
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.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
getRandomPassword($generic=false, $replaceambiguouschars=null, $length=32)
Return a generated password using default module.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.