forked from PrestaShopCorp/pigmbhpaymill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pigmbhpaymill.php
558 lines (503 loc) · 19.7 KB
/
pigmbhpaymill.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
<?php
/**
* 2012-2014 PAYMILL
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
*
* @author PAYMILL <support@paymill.com>
* @copyright 2012-2014 PAYMILL
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
require_once(_PS_ROOT_DIR_.'/modules/pigmbhpaymill/components/paymillUtil.php');
require_once(_PS_ROOT_DIR_.'/modules/pigmbhpaymill/components/orderActionService.php');
require_once(_PS_ROOT_DIR_.'/modules/pigmbhpaymill/components/configurationHandler.php');
require_once(_PS_ROOT_DIR_.'/modules/pigmbhpaymill/components/models/configurationModel.php');
require_once(_PS_ROOT_DIR_.'/modules/pigmbhpaymill/paymill/v2/lib/Services/Paymill/Webhooks.php');
/**
* PigmbhPaymill
*
* @category PayIntelligent
* @copyright Copyright (c) 2013 PayIntelligent GmbH (http://payintelligent.de)
*/
if (!function_exists('curl_init'))
exit;
class PigmbhPaymill extends PaymentModule {
/**
*
* @var ConfigurationHandler
*/
private $configuration_handler;
/**
* Sets the Information for the Modulmanager
* Also creates an instance of this class
*/
public function __construct()
{
$this->name = 'pigmbhpaymill';
$this->tab = 'payments_gateways';
$this->version = '2.3.0';
$this->author = 'PAYMILL GmbH';
$this->need_instance = 1;
$this->currencies = true;
$this->currencies_mode = 'checkbox';
$this->is_eu_compatible = 1;
Configuration::updateValue('PIGMBH_PAYMILL_VERSION', $this->version);
parent::__construct();
$this->configuration_handler = new ConfigurationHandler();
$this->displayName = $this->l('PAYMILL');
$this->description = $this->l('Accept online payments easily in up to 100 currencies. Free download & testing!');
//Adjust Modulname to the One use in Checkout, so the customer will be correctly redirected to the thank-you page
if ($this->context->cookie->__isset('paymill_payment_text'))
$this->displayName = $this->context->cookie->__get('paymill_payment_text');
}
/**
* This function installs the Module
*
* @return boolean
*/
public function install()
{
$this->warning = null;
if (is_null($this->warning) && !function_exists('curl_init'))
$this->warning = $this->l('cURL is required to use this module. Please install the php extention cURL.');
if (is_null($this->warning)
&& !(parent::install()
&& $this->registerHook('displayPayment')
&& $this->registerHook('displayPaymentReturn')
&& $this->registerHook('displayAdminOrder')
&& $this->registerHook('displayHeader')
&& $this->registerHook('displayPaymentTop')))
$this->warning = $this->l('There was an Error installing the module.');
if (is_null($this->warning) && !$this->configuration_handler->setDefaultConfiguration())
$this->warning = $this->l('There was an Error initiating the configuration.');
if (is_null($this->warning) && !$this->createDatabaseTables())
$this->warning = $this->l('There was an Error creating the database tables.');
if (is_null($this->warning) && !$this->addPaymillOrderState())
$this->warning = $this->l('There was an Error creating a custom orderstate.');
$this->registerHook('displayPaymentEU');
return is_null($this->warning);
}
/**
* This function deinstalls the Module
*
* @return boolean
*/
public function uninstall()
{
Configuration::deleteByName('PIGMBH_PAYMILL_ORDERSTATE', null);
return $this->unregisterHook('payment')
&& $this->unregisterHook('paymentReturn')
&& $this->unregisterHook('paymentTop')
&& $this->unregisterHook('Header')
&& parent::uninstall();
}
/**
* Register the refund webhook
*
* @param string $private_key
* @return array
*/
private function registerPaymillWebhook($private_key)
{
$webhook = new Services_Paymill_Webhooks($private_key, 'https://api.paymill.com/v2/');
return $webhook->create(array(
'url' => _PS_BASE_URL_.__PS_BASE_URI__.'modules/pigmbhpaymill/webHookEndpoint.php',
'event_types' => array('refund.succeeded')
));
}
/**
* Load CSS and JS into HTML Head-tag
*/
public function hookdisplayAdminOrder($hook)
{
$order_id = 0;
if (array_key_exists('id_order', $hook))
$order_id = (int)$hook['id_order'];
$util = new PaymillUtil();
if (!$this->active || !$util->isPaymillOrder($order_id))
return;
$order_action = new OrderActionService();
$result = null;
if (Tools::isSubmit('paymillCapture'))
$result = $order_action->capture($order_id);
elseif (Tools::isSubmit('paymillRefund'))
$result = $order_action->refund($order_id);
$db = Db::getInstance();
$sql = 'SELECT * FROM `'._DB_PREFIX_.'pigmbh_paymill_transactiondata` WHERE `id`='.$order_id;
$transactiondata = $db->executeS($sql, true, false);
$this->context->smarty->assign(array(
'showCapture' => $transactiondata[0]['preauth'] != '' && $transactiondata[0]['transaction'] == '',
'showRefund' => $transactiondata[0]['transaction'] != '' && $transactiondata[0]['refund'] == 0,
'orderId' => $order_id,
'orderaction' => $result,
'backwardcompatible' => _PS_VERSION_ < '1.6'
));
return $this->display(__FILE__, 'views/templates/hook/displayAdminOrder.tpl');
}
/**
* Load CSS and JS into HTML Head-tag
*/
public function hookdisplayHeader()
{
if (!$this->active)
return;
if ($this->name === Tools::getValue('module'))
{
$this->context->controller->addCSS(__PS_BASE_URI__.'modules/pigmbhpaymill/css/paymill_styles.css');
$this->context->controller->addCSS('https://fonts.googleapis.com/css?family=Open+Sans:400,300,700');
if (_PS_VERSION_ < '1.6')
$this->context->controller->addCSS(__PS_BASE_URI__.'modules/pigmbhpaymill/css/paymill_checkout_1_5.css');
$this->context->controller->addJS('https://bridge.paymill.com/dss3');
$this->context->controller->addJS(__PS_BASE_URI__.'modules/pigmbhpaymill/js/BrandDetection.js');
$this->context->controller->addJS(__PS_BASE_URI__.'modules/pigmbhpaymill/js/Iban.js');
$this->context->controller->addJS(__PS_BASE_URI__.'modules/pigmbhpaymill/js/PaymillCheckout.js');
}
}
/**
* @return string
*/
public function hookdisplayPayment()
{
if (!$this->active)
return;
$private_key = Configuration::get('PIGMBH_PAYMILL_PRIVATEKEY');
$public_key = Configuration::get('PIGMBH_PAYMILL_PUBLICKEY');
$this->context->smarty->assign(array(
'this_path' => $this->_path,
'this_path_ssl' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/'.$this->name,
'debit' => Configuration::get('PIGMBH_PAYMILL_DEBIT'),
'creditcard' => Configuration::get('PIGMBH_PAYMILL_CREDITCARD'),
'valid_key' => !empty($private_key) && !empty($public_key),
));
$template = 'views/templates/hook/payment.tpl';
if (_PS_VERSION_ < '1.6')
$template = 'views/templates/hook/payment1_5.tpl';
return $this->display(__FILE__, $template);
}
/**
* @return string
*/
public function hookdisplayPaymentEU()
{
if (!$this->active)
return;
$private_key = Configuration::get('PIGMBH_PAYMILL_PRIVATEKEY');
$public_key = Configuration::get('PIGMBH_PAYMILL_PUBLICKEY');
$this->context->smarty->assign(array(
'this_path' => $this->_path,
'this_path_ssl' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/'.$this->name,
'debit' => Configuration::get('PIGMBH_PAYMILL_DEBIT'),
'creditcard' => Configuration::get('PIGMBH_PAYMILL_CREDITCARD'),
'valid_key' => !empty($private_key) && !empty($public_key),
));
$payments = array();
if(Configuration::get('PIGMBH_PAYMILL_DEBIT') === 'on'){
$payments[] = array(
'cta_text' => $this->l('Paymill Directdebit'),
'logo' => Media::getMediaPath(dirname(__FILE__).'/img/icon-hook.png'),
'action' => $this->context->link->getModuleLink($this->name, 'payment', array('payment' => 'debit'), true)
);
}
if(Configuration::get('PIGMBH_PAYMILL_CREDITCARD') === 'on'){
$payments[] = array(
'cta_text' => $this->l('Paymill Creditcard'),
'logo' => Media::getMediaPath(dirname(__FILE__).'/img/icon-hook.png'),
'action' => $this->context->link->getModuleLink($this->name, 'payment', array('payment' => 'creditcard'), true)
);
}
return $payments;
}
/**
* @return string
*/
public function hookdisplayPaymentTop()
{
if (!$this->active && Tools::getValue('paymillerror') != 1)
return;
$this->context->controller->addCSS(__PS_BASE_URI__.'modules/pigmbhpaymill/css/paymill_styles.css');
$this->context->smarty->assign(array(
'paymillerror' => Tools::getValue('paymillerror') == 1 ? $this->l('Payment could not be processed.') : null,
'errormessage' => $this->errorCodeMapping(Tools::getValue('errorCode')),
'modul_base' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/pigmbhpaymill/'
));
return $this->display(__FILE__, 'views/templates/hook/error.tpl');
}
/**
* @return string
*/
public function hookdisplayPaymentReturn()
{
if (!$this->active)
return;
return $this->display(__FILE__, 'views/templates/hook/confirmation.tpl');
}
/**
* Create all needed tables
*
* @return boolean
*/
public function createDatabaseTables()
{
try {
$db = Db::getInstance();
$db->execute('CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'pigmbh_paymill_logging` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` text NOT NULL,
`debug` text NOT NULL,
`message` text NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) AUTO_INCREMENT=1'
);
$db->execute('CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'pigmbh_paymill_directdebit_userdata` (
`userId` int(11) NOT NULL,
`clientId` text NOT NULL,
`paymentId` text NOT NULL,
PRIMARY KEY (`userId`)
);'
);
$db->execute('CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'pigmbh_paymill_creditcard_userdata` (
`userId` int(11) NOT NULL,
`clientId` text NOT NULL,
`paymentId` text NOT NULL,
PRIMARY KEY (`userId`)
);'
);
$db->execute('CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'pigmbh_paymill_transactiondata` (
`id` int(11) NOT NULL,
`preauth` text,
`transaction` text,
`refund` int(1),
PRIMARY KEY (`id`)
);'
);
return true;
} catch (Exception $exception) {
return false;
}
}
private function onConfigurationSave()
{
$old_config = $this->configuration_handler->loadConfiguration();
$new_config = new ConfigurationModel();
$accepted_brands = array();
if (Tools::getValue('accepted_brands'))
{
foreach (Tools::getValue('accepted_brands') as $accepted_brand)
$accepted_brands[$accepted_brand] = true;
}
$accepted_brands_result = array();
foreach (array_keys($old_config->getAccpetedCreditCards()) as $key)
{
if (array_key_exists($key, $accepted_brands))
$accepted_brands_result[$key] = true;
else
$accepted_brands_result[$key] = false;
}
$new_config->setCreditcard(Tools::getValue('creditcard', 'OFF'));
$new_config->setDirectdebit(Tools::getValue('debit', 'OFF'));
$new_config->setDebug(Tools::getValue('debug', 'OFF'));
$new_config->setFastcheckout(Tools::getValue('fastcheckout', 'OFF'));
$new_config->setLogging(Tools::getValue('logging', 'OFF'));
$new_config->setPrivateKey(trim(Tools::getValue('privatekey', $old_config->getPrivateKey())));
$new_config->setPublicKey(trim(Tools::getValue('publickey', $old_config->getPublicKey())));
$new_config->setAccpetedCreditCards($accepted_brands_result);
$new_config->setDebitDays(Tools::getValue('debit_days', '7'));
$new_config->setCapture(Tools::getValue('capture_option', 'OFF'));
$new_config->setPci(Tools::getValue('pci',0));
$this->configuration_handler->updateConfiguration($new_config);
$this->registerPaymillWebhook($new_config->getPrivateKey());
}
/**
* Returns the Pluginconfiguration as HTML-string
*
* @return string
*/
public function getContent()
{
//configuration
if (Tools::isSubmit('btnSubmit'))
$this->onConfigurationSave();
$configuration_model = $this->configuration_handler->loadConfiguration();
//logging
$db = Db::getInstance();
$logdata = array();
$detail_data = array();
$show_detail = false;
$search = pSQL(Tools::getValue('searchvalue', false));
$connected_search = Tools::getValue('connectedsearch', 'off');
$this->limit = 10;
$where = $search && !empty($search) ? ' WHERE `debug` LIKE "%'.$search.'%" OR `message` LIKE "%'.$search.'%"' : null;
$db->execute('SELECT * FROM `'._DB_PREFIX_.'pigmbh_paymill_logging`'.$where, true);
$max_page = ceil($db->numRows() / $this->limit) == 0 ? 1 : range(1, ceil($db->numRows() / $this->limit));
$page = $max_page < Tools::getValue('paymillpage', 1) ? $max_page : Tools::getValue('paymillpage', 1);
$start = $page * $this->limit - $this->limit;
$myaction = $this->context->link->getAdminLink('AdminModules', false);
$myaction .= '&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
$myaction .= '&token='.Tools::getAdminTokenLite('AdminModules');
//Details
if (Tools::getValue('paymillid') && Tools::getValue('paymillkey'))
{
$show_detail = true;
$row = $db->executeS('SELECT * FROM `'._DB_PREFIX_.'pigmbh_paymill_logging` WHERE id="'.pSQL(Tools::getValue('paymillid')).'";', true);
$detail_data['title'] = 'DEBUG';
$detail_data['data'] = $row[0]['debug'];
}
//getAll Data
if ($connected_search === 'on')
$where = 'WHERE `identifier` in(SELECT `identifier` FROM `'._DB_PREFIX_.'pigmbh_paymill_logging` '.$where.')';
$sql = 'SELECT `id`,`identifier`,`date`,`message`,`debug` FROM `'._DB_PREFIX_.'pigmbh_paymill_logging` '.$where.' LIMIT '.$start.', '.$this->limit;
foreach ($db->executeS($sql, true) as $row)
{
$unsorted_print_data = array();
foreach ($row as $key => $value)
{
$value = is_array($value) ? $value[1].'<br><br>'.$value[0] : $value;
$unsorted_print_data[$key] = $value;
if (Tools::strlen($value) >= 250)
$unsorted_print_data['link'] = $myaction.'&paymillid='.$row['id'].'&paymillkey='.$key.'&searchvalue='.$search;
}
$logdata[] = $unsorted_print_data;
}
$this->context->smarty->assign(array(
'include' => array(
'css' => _PS_BASE_URL_.__PS_BASE_URI__.'modules/pigmbhpaymill/css/paymill_styles.css',
'header' => dirname(__FILE__).'/views/templates/admin/paymillheader.tpl',
'config' => dirname(__FILE__).'/views/templates/admin/paymillconfig.tpl',
'log' => dirname(__FILE__).'/views/templates/admin/paymilllog.tpl',
'img' => _PS_BASE_URL_.__PS_BASE_URI__.'modules/pigmbhpaymill/img',
),
'header' => array(
'paymill_description' => 'Online payments made easy'
),
'config' => array(
'action' => $myaction,
'creditcard' => $this->getCheckboxState($configuration_model->getCreditcard()),
'debit' => $this->getCheckboxState($configuration_model->getDirectdebit()),
'privatekey' => $configuration_model->getPrivateKey(),
'publickey' => $configuration_model->getPublicKey(),
'debit_days' => $configuration_model->getDebitDays(),
'debug' => $this->getCheckboxState($configuration_model->getDebug()),
'logging' => $this->getCheckboxState($configuration_model->getLogging()),
'fastcheckout' => $this->getCheckboxState($configuration_model->getFastcheckout()),
'accepted_brands' => $configuration_model->getAccpetedCreditCards(),
'capture_option' => $this->getCheckboxState($configuration_model->getCapture()),
'pci' => $configuration_model->getPci()
),
'logging' => array(
'data' => $logdata,
'detail_data' => $detail_data,
'show_detail' => $show_detail,
'paymill_maxpage' => $max_page,
'paymill_currentpage' => $page,
'paymill_searchvalue' => $search,
'paymill_connectedsearch' => $connected_search,
)
));
return $this->display(__FILE__, 'views/templates/admin/adminpage.tpl');
}
/**
* Get the checkbox state
*
* @param string $value
* @return string
*/
private function getCheckboxState($value)
{
$return = '';
if (in_array(Tools::strtolower($value), array('on')))
$return = 'checked';
return $return;
}
/**
* Add paymill order state
* @return boolean
*/
private function addPaymillOrderState()
{
if (!Configuration::get('PIGMBH_PAYMILL_ORDERSTATE'))
{
$new_orderstate = new OrderState();
$new_orderstate->name = array();
$new_orderstate->module_name = $this->name;
$new_orderstate->send_email = false;
$new_orderstate->color = '#73E650';
$new_orderstate->hidden = false;
$new_orderstate->delivery = true;
$new_orderstate->logable = true;
$new_orderstate->invoice = true;
$new_orderstate->paid = true;
foreach (Language::getLanguages() as $language)
{
if (Tools::strtolower($language['iso_code']) == 'de')
$new_orderstate->name[$language['id_lang']] = 'Bezahlung via PAYMILL erfolgreich';
else
$new_orderstate->name[$language['id_lang']] = 'Payment via PAYMILL successfully';
}
if ($new_orderstate->add())
{
$paymill_icon = dirname(__FILE__).'/img/20x20_orderstate.gif';
$new_state_icon = dirname(__FILE__).'/../../img/os/'.(int)$new_orderstate->id.'.gif';
copy($paymill_icon, $new_state_icon);
}
Configuration::updateValue('PIGMBH_PAYMILL_ORDERSTATE', (int)$new_orderstate->id);
}
return true;
}
/**
* Get error code map
* @param string $code
* @return string
*/
public function errorCodeMapping($code)
{
$error_messages = array(
'10001' => $this->l('General undefined response.'),
'10002' => $this->l('Still waiting on something.'),
'20000' => $this->l('General success response.'),
'40000' => $this->l('General problem with data.'),
'40001' => $this->l('General problem with payment data.'),
'40100' => $this->l('Problem with credit card data.'),
'40101' => $this->l('Problem with cvv.'),
'40102' => $this->l('Card expired or not yet valid.'),
'40103' => $this->l('Limit exceeded.'),
'40104' => $this->l('Card invalid.'),
'40105' => $this->l('Expiry date not valid.'),
'40106' => $this->l('Credit card brand required.'),
'40200' => $this->l('Problem with bank account data.'),
'40201' => $this->l('Bank account data combination mismatch.'),
'40202' => $this->l('User authentication failed.'),
'40300' => $this->l('Problem with 3d secure data.'),
'40301' => $this->l('Currency / amount mismatch'),
'40400' => $this->l('Problem with input data.'),
'40401' => $this->l('Amount too low or zero.'),
'40402' => $this->l('Usage field too long.'),
'40403' => $this->l('Currency not allowed.'),
'50000' => $this->l('General problem with backend.'),
'50001' => $this->l('Country blacklisted.'),
'50100' => $this->l('Technical error with credit card.'),
'50101' => $this->l('Error limit exceeded.'),
'50102' => $this->l('Card declined by authorization system.'),
'50103' => $this->l('Manipulation or stolen card.'),
'50104' => $this->l('Card restricted.'),
'50105' => $this->l('Invalid card configuration data.'),
'50200' => $this->l('Technical error with bank account.'),
'50201' => $this->l('Card blacklisted.'),
'50300' => $this->l('Technical error with 3D secure.'),
'50400' => $this->l('Decline because of risk issues.'),
'50500' => $this->l('General timeout.'),
'50501' => $this->l('Timeout on side of the acquirer.'),
'50502' => $this->l('Risk management transaction timeout.'),
'50600' => $this->l('Duplicate transaction.')
);
if (is_null($code))
return array_key_exists($code, $error_messages) ? $error_messages[$code] : 'Unknown Error';
else
return 'Unknown Error';
}
}