private function _existingClient($data) { $client = $this->_clients->getOne($data->clientID); if ($client['email'] !== $_SESSION['customer']->customer_info['customers_email_address']) { $this->_clients->update(array('id' => $data->clientID, 'email' => $_SESSION['customer']->customer_info['customers_email_address'])); } if (array_key_exists('email', $client)) { $this->_paymentProcessor->setClientId($client['id']); } }
/** * Tests Services_Paymill_Clients->update() */ public function testUpdateUnknownId() { $clientId = 'UNKNOWNID'; $email = '*****@*****.**'; try { $client = $this->_clients->update(array('id' => $clientId, 'email' => $email)); } catch (Exception $e) { $this->assertInstanceOf('Services_Paymill_Exception', $e); $this->assertEquals(404, $e->getCode()); } }
public function confirm() { $preauth = (bool) $this->config->get($this->getPaymentName() . '_preauth'); // read transaction token from session if (isset($this->request->post['paymillToken'])) { $paymillToken = $this->request->post['paymillToken']; } if (isset($this->request->post['paymillFastcheckout'])) { $fastcheckout = $this->request->post['paymillFastcheckout']; } $this->_logId = time(); $this->language->load('payment/' . $this->getPaymentName()); // check if token present if (empty($paymillToken)) { $this->log("No paymill token was provided. Redirect to payments page.", ''); $this->redirect($this->url->link('checkout/checkout')); } else { $this->log("Start processing payment with token.", $paymillToken); $this->load->model('checkout/order'); $this->order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']); $amountRaw = $this->currency->format($this->order_info['total'], $this->order_info['currency_code'], false, false); $amount = number_format($amountRaw, 2, '.', '') * 100; $source = $this->getVersion() . "_opencart_" . VERSION; $privateKey = trim($this->config->get($this->getPaymentName() . '_privatekey')); $paymentProcessor = new Services_Paymill_PaymentProcessor(); $paymentProcessor->setToken($paymillToken); $paymentProcessor->setAmount((int) $amount); $paymentProcessor->setPrivateKey($privateKey); $paymentProcessor->setApiUrl('https://api.paymill.com/v2/'); $paymentProcessor->setCurrency($this->order_info['currency_code']); $paymentProcessor->setDescription(substr("OrderID:" . $this->session->data['order_id'] . " " . $this->order_info['email'], 0, 128)); $paymentProcessor->setEmail($this->order_info['email']); $paymentProcessor->setLogger($this); $paymentProcessor->setName($this->order_info['firstname'] . ' ' . $this->order_info['lastname']); $paymentProcessor->setSource($source); if ($this->customer->getId() != null) { $table = $this->getDatabaseName(); $row = $this->db->query("SELECT `clientId`, `paymentId` FROM {$table} WHERE `userId`=" . $this->customer->getId()); if ($row->num_rows === 1) { if ($fastcheckout === "true") { $paymentID = empty($row->row['paymentId']) ? null : $row->row['paymentId']; $paymentProcessor->setPaymentId($paymentID); } $clientObject = new Services_Paymill_Clients($privateKey, 'https://api.paymill.com/v2/'); $client = $clientObject->getOne($row->row['clientId']); $paymentProcessor->setClientId($row->row['clientId']); if (array_key_exists('email', $client)) { if ($client['email'] !== $this->order_info['email']) { $clientObject->update(array('id' => $row->row['clientId'], 'email' => $this->order_info['email'])); $this->log("Client-mail has been changed. Client updated", $this->order_info['email']); } } } } $captureNow = !$preauth; // process the payment $result = $paymentProcessor->processPayment($captureNow); $this->log("Payment processing resulted in: ", $result ? "Success" : "Fail"); if (!$captureNow) { $preauthId = $paymentProcessor->getPreauthId(); $transId = ''; } else { $preauthId = ''; $transId = $paymentProcessor->getTransactionId(); } $comment = ''; if ($this->getPaymentName() == 'paymilldirectdebit') { $daysUntil = (int) $this->config->get($this->getPaymentName() . '_sepa_date'); $comment = $this->language->get('paymill_infotext_sepa') . ": "; $comment .= date("d.m.Y", strtotime("+ {$daysUntil} DAYS")); } // finish the order if payment was sucessfully processed if ($result === true) { $this->log("Finish order.", ''); $this->_saveUserData($this->customer->getId(), $paymentProcessor->getClientId(), $paymentProcessor->getPaymentId()); $this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('config_order_status_id'), $comment, true); $this->_updateOrderComment($this->session->data['order_id'], $comment); $this->_saveOrderDetails($this->session->data['order_id'], $transId, $preauthId); $this->redirect($this->url->link('checkout/success')); } else { $responseCode = array_key_exists($paymentProcessor->getErrorCode(), $this->_response_codes) ? $this->_response_codes[$paymentProcessor->getErrorCode()] : 'unknown error'; $this->session->data['error_message'] = 'An error occured while processing your payment: ' . $responseCode; $this->redirect($this->url->link('payment/' . $this->getPaymentName() . '/error')); } } }
/** * Eventhandler for the update of the client with new data on email change * @param $arguments */ public function onUpdateCustomerEmail($arguments) { $user = Shopware()->System()->sMODULES['sAdmin']->sGetUserData(); $userId = $user['billingaddress']['userID']; $modelHelper = new Shopware_Plugins_Frontend_PaymPaymentCreditcard_Components_ModelHelper(); $clientId = $modelHelper->getPaymillClientId($userId); //If there is a client for the customer if ($clientId !== "") { $email = $arguments['email']; $description = $user['billingaddress']['customernumber'] . " " . Shopware()->Config()->get('shopname'); $description = substr($description, 0, 128); //Update the client $swConfig = Shopware()->Plugins()->Frontend()->PaymPaymentCreditcard()->Config(); $privateKey = trim($swConfig->get("privateKey")); $apiUrl = "https://api.paymill.com/v2/"; require_once dirname(__FILE__) . '/lib/Services/Paymill/Clients.php'; $client = new Services_Paymill_Clients($privateKey, $apiUrl); $client->update(array('id' => $clientId, 'email' => $email, 'description' => $description)); } }
/** * Update paymill client data if necessary * * @param array $db_data */ private function updatePaymillClient($db_data) { if ($db_data && $this->validateClient($db_data['clientId'])) { $client_object = new Services_Paymill_Clients(Configuration::get('PIGMBH_PAYMILL_PRIVATEKEY'), 'https://api.paymill.com/v2/'); $old_client = $client_object->getOne($db_data['clientId']); if ($this->context->customer->email !== $old_client['email']) { $client_object->update(array('id' => $db_data['clientId'], 'email' => $this->context->customer->email)); } } }
if (Tools::getValue('payment') == 'creditcard') { $sql = 'SELECT `clientId`,`paymentId` FROM `pigmbh_paymill_creditcard_userdata` WHERE `userId`=' . $cart->id_customer; } elseif (Tools::getValue('payment') == 'debit') { $sql = 'SELECT `clientId`,`paymentId` FROM `pigmbh_paymill_directdebit_userdata` WHERE `userId`=' . $cart->id_customer; } try { $dbData = $db->getRow($sql); } catch (Exception $exception) { $dbData = false; } } if ($dbData && validateClient($dbData['clientId'])) { $clientObject = new Services_Paymill_Clients(Configuration::get('PIGMBH_PAYMILL_PRIVATEKEY'), "https://api.paymill.com/v2/"); $oldClient = $clientObject->getOne($dbData['clientId']); if ($customer["email"] !== $oldClient['email']) { $clientObject->update(array('id' => $dbData['clientId'], 'email' => $customer["email"])); } } $payment = false; if ($dbData && validatePayment($dbData['paymentId'])) { $paymentObject = new Services_Paymill_Payments(Configuration::get('PIGMBH_PAYMILL_PRIVATEKEY'), "https://api.paymill.com/v2/"); $paymentResponse = $paymentObject->getOne($dbData['paymentId']); if ($paymentResponse['id'] === $dbData['paymentId']) { $payment = $dbData['paymentId'] !== '' ? $paymentResponse : false; } $payment['expire_date'] = null; if (isset($payment['expire_month'])) { $payment['expire_month'] = $payment['expire_month'] <= 9 ? '0' . $payment['expire_month'] : $payment['expire_month']; $payment['expire_date'] = $payment['expire_month'] . "/" . $payment['expire_year']; } }
/** * Frontend index action controller */ public function indexAction() { //Initialise variables $privateKey = trim($this->config->get("privateKey")); $user = Shopware()->Session()->sOrderVariables['sUserData']; $sState = array('reserviert' => 18, 'bezahlt' => 12); $processId = md5(time() . " " . $user['billingaddress']['lastname'] . ', ' . $user['billingaddress']['firstname']); Shopware()->Session()->paymillProcessId = $processId; $this->logging->setProcessId($processId); // read transaction token from session $paymillToken = Shopware()->Session()->paymillTransactionToken; // check if token present if (empty($paymillToken)) { $this->logging->log("No paymill token was provided. Redirect to payments page.", null); $url = $this->Front()->Router()->assemble(array('action' => 'payment', 'sTarget' => 'checkout', 'sViewport' => 'account', 'appendSession' => true, 'forceSecure' => true)); $this->redirect($url . '&paymill_error=1'); } $this->logging->log("Start processing payment " . $paymillToken === "NoTokenRequired" ? "without" : "with" . " token.", $paymillToken); // process the payment $userId = $user['billingaddress']['userID']; $paymentShortcut = $this->getPaymentShortName(); $params = array('token' => $paymillToken, 'authorizedAmount' => (int) Shopware()->Session()->paymillTotalAmount, 'amount' => (int) round($this->getAmount() * 100, 0), 'currency' => $this->getCurrencyShortName(), 'name' => Shopware()->Session()->paymillTransactionName ? Shopware()->Session()->paymillTransactionName : $user['billingaddress']['lastname'] . ', ' . $user['billingaddress']['firstname'], 'email' => $user['additional']['user']['email'], 'description' => substr($user['additional']['user']['email'] . " " . Shopware()->Config()->get('shopname'), 0, 128), 'payment' => $paymentShortcut); $paymentProcessor = new Shopware_Plugins_Frontend_PaymPaymentCreditcard_Components_PaymentProcessor($params, $processId); $modelHelper = new Shopware_Plugins_Frontend_PaymPaymentCreditcard_Components_ModelHelper(); $clientId = $modelHelper->getPaymillClientId($userId); $paymentId = $modelHelper->getPaymillPaymentId($this->getPaymentShortName(), $userId); if ($clientId != "") { $apiUrl = "https://api.paymill.com/v2/"; require_once dirname(dirname(dirname(__FILE__))) . '/lib/Services/Paymill/Clients.php'; $client = new Services_Paymill_Clients($privateKey, $apiUrl); $client->update(array('id' => $clientId, 'email' => $user['additional']['user']['email'])); $paymentProcessor->setClientId($clientId); } if ($paymentId != "") { if ($paymillToken === "NoTokenRequired") { $paymentProcessor->setPaymentId($paymentId); } } $preAuthOption = $this->config->get("paymillPreAuth"); $isCCPayment = $paymentShortcut === 'paymillcc'; $captureNow = !($preAuthOption && $isCCPayment); $result = $paymentProcessor->processPayment($captureNow); $this->logging->log("Payment processing resulted in: " . ($result ? "Success" : "Failure"), print_r($result, true)); // finish the order if payment was successfully processed if ($result !== true) { Shopware()->Session()->paymillTransactionToken = null; Shopware()->Session()->pigmbhErrorMessage = $this->_getSnippet('PAYMILL_' . $paymentProcessor->getErrorCode()); return $this->forward('error'); } //Save Client Id $modelHelper->setPaymillClientId($userId, $paymentProcessor->getClientId()); //Save Fast Checkout Data $isFastCheckoutEnabled = $this->config->get("paymillFastCheckout"); if ($isFastCheckoutEnabled) { $paymentId = $paymentProcessor->getPaymentId(); $modelHelper->setPaymillPaymentId($this->getPaymentShortName(), $userId, $paymentId); } //Create the order $statusId = $captureNow ? $sState['bezahlt'] : $sState['reserviert']; $transactionId = $captureNow ? $paymentProcessor->getTransactionId() : $paymentProcessor->getPreauthId(); $orderNumber = $this->saveOrder($this->createPaymentUniqueId(), md5($this->createPaymentUniqueId()), $statusId); $this->logging->log("Finish order.", "Ordernumber: " . $orderNumber, "using TransactionId: " . $transactionId); if ($captureNow) { $modelHelper->setPaymillTransactionId($orderNumber, $paymentProcessor->getTransactionId()); } else { $modelHelper->setPaymillPreAuthorization($orderNumber, $paymentProcessor->getPreauthId()); } $this->_updateTransaction($orderNumber, $paymentProcessor); // reset the session field Shopware()->Session()->paymillTransactionToken = null; return $this->redirect(array('controller' => 'checkout', 'action' => 'finish', 'forceSecure' => 1, 'sUniqueID' => md5($transactionId))); }
/** * Handle paymill client update if exist * * @param string $clientId */ private function _existingClientHandling($clientId) { if (!empty($clientId)) { $clients = new Services_Paymill_Clients(trim(Mage::helper('paymill/optionHelper')->getPrivateKey()), Mage::helper('paymill')->getApiUrl()); $quote = Mage::getSingleton('checkout/session')->getQuote(); $client = $clients->getOne($clientId); if (Mage::helper("paymill/customerHelper")->getCustomerEmail($quote) !== $client['email']) { $clients->update(array('id' => $clientId, 'email' => Mage::helper("paymill/customerHelper")->getCustomerEmail($quote))); } } }