Skip to content

Commit

Permalink
updated code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nuryagdym committed Mar 23, 2024
1 parent c2ca5f7 commit 805f9dc
Show file tree
Hide file tree
Showing 10 changed files with 77 additions and 78 deletions.
6 changes: 2 additions & 4 deletions docs/CANCEL-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ $ cp ./vendor/mews/pos/config/pos_test.php ./pos_test_ayarlar.php
<?php
require './vendor/autoload.php';

$paymentModel = \Mews\Pos\PosInterface::MODEL_NON_SECURE;

// API kullanıcı bilgileri
// AccountFactory'de kullanılacak method Gateway'e göre değişir. Örnek kodlara bakınız.
$account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'akbank', //pos config'deki ayarın index name'i
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
\Mews\Pos\PosInterface::MODEL_NON_SECURE,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
Expand Down
8 changes: 3 additions & 5 deletions docs/HISTORY-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ $ cp ./vendor/mews/pos/config/pos_test.php ./pos_test_ayarlar.php
<?php
require './vendor/autoload.php';

$paymentModel = \Mews\Pos\PosInterface::MODEL_NON_SECURE;

// API kullanıcı bilgileri
// AccountFactory'de kullanılacak method Gateway'e göre değişir. Örnek kodlara bakınız.
$account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'akbank', //pos config'deki ayarın index name'i
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
\Mews\Pos\PosInterface::MODEL_NON_SECURE,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
Expand Down Expand Up @@ -49,7 +47,7 @@ function createHistoryOrder(string $gatewayClass, array $extraData): array
{
$order = [];

if (PayForPos::class === $gatewayClass) {
if (\Mews\Pos\Gateways\PayForPos::class === $gatewayClass) {
$order = [
// odeme tarihi
'transaction_date' => $extraData['transaction_date'] ?? new \DateTimeImmutable(),
Expand Down
20 changes: 10 additions & 10 deletions docs/NON-SECURE-PAYMENT-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ $account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
$paymentModel,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
Expand Down Expand Up @@ -62,19 +62,19 @@ $order = [
try {
$card = \Mews\Pos\Factory\CreditCardFactory::createForGateway(
$pos,
$_REQUEST['card_number'],
$_REQUEST['card_year'],
$_REQUEST['card_month'],
$_REQUEST['card_cvv'],
$_REQUEST['card_name'],
$_POST['card_number'],
$_POST['card_year'],
$_POST['card_month'],
$_POST['card_cvv'],
$_POST['card_name'],

// kart tipi Gateway'e göre zorunlu, alabileceği örnek değer: "visa"
// alabileceği alternatif değerler için \Mews\Pos\Entity\Card\CreditCardInterface'a bakınız.
$_REQUEST['card_type'] ?? null
$_POST['card_type'] ?? null
);
} catch (CardTypeRequiredException $e) {
} catch (\Mews\Pos\Exceptions\CardTypeRequiredException $e) {
// bu gateway için kart tipi zorunlu
} catch (CardTypeNotSupportedException $e) {
} catch (\Mews\Pos\Exceptions\CardTypeNotSupportedException $e) {
// sağlanan kart tipi bu gateway tarafından desteklenmiyor
}

Expand Down
8 changes: 3 additions & 5 deletions docs/ORDER-HISTORY-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,19 @@ $ cp ./vendor/mews/pos/config/pos_test.php ./pos_test_ayarlar.php
<?php
require './vendor/autoload.php';

$paymentModel = \Mews\Pos\PosInterface::MODEL_NON_SECURE;

// API kullanıcı bilgileri
// AccountFactory'de kullanılacak method Gateway'e göre değişir. Örnek kodlara bakınız.
$account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'akbank', //pos config'deki ayarın index name'i
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
\Mews\Pos\PosInterface::MODEL_NON_SECURE,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
$eventDispatcher = new \Symfony\Component\EventDispatcher\EventDispatcher();

try {
$config = require __DIR__.'/pos_test_ayarlar.php';
Expand Down
30 changes: 15 additions & 15 deletions docs/PRE-AUTH-POST-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $sessionHandler = new \Symfony\Component\HttpFoundation\Session\Storage\NativeSe
'cookie_samesite' => 'None',
'cookie_secure' => true,
]);
$session = new Session($sessionHandler);
$session = new \Symfony\Component\HttpFoundation\Session\Session($sessionHandler);
$session->start();

// Ön otorizasyon için kullanılması gereken ödeme modeli değişir.
Expand All @@ -28,9 +28,9 @@ $account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
$paymentModel,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
Expand Down Expand Up @@ -81,25 +81,25 @@ $session->set('order', $order);
try {
$card = \Mews\Pos\Factory\CreditCardFactory::createForGateway(
$pos,
$_REQUEST['card_number'],
$_REQUEST['card_year'],
$_REQUEST['card_month'],
$_REQUEST['card_cvv'],
$_REQUEST['card_name'],
$_POST['card_number'],
$_POST['card_year'],
$_POST['card_month'],
$_POST['card_cvv'],
$_POST['card_name'],

// kart tipi Gateway'e göre zorunlu, alabileceği örnek değer: "visa"
// alabileceği alternatif değerler için \Mews\Pos\Entity\Card\CreditCardInterface'a bakınız.
$_REQUEST['card_type'] ?? null
$_POST['card_type'] ?? null
);
} catch (CardTypeRequiredException $e) {
} catch (\Mews\Pos\Exceptions\CardTypeRequiredException $e) {
// bu gateway için kart tipi zorunlu
} catch (CardTypeNotSupportedException $e) {
} catch (\Mews\Pos\Exceptions\CardTypeNotSupportedException $e) {
// sağlanan kart tipi bu gateway tarafından desteklenmiyor
}

if (get_class($pos) === \Mews\Pos\Gateways\PayFlexV4Pos::class) {
// bu gateway için ödemeyi tamamlarken tekrar kart bilgisi lazım olacak.
$session->set('card', $_REQUEST);
$session->set('card', $_POST);
}

try {
Expand Down Expand Up @@ -169,7 +169,7 @@ try {
if ($pos->isSuccess()) {
$session->set('last_response', $response);
}
} catch (Mews\Pos\Exceptions\HashMismatchException $e) {
} catch (\Mews\Pos\Exceptions\HashMismatchException $e) {
// Bankadan gelen verilerin bankaya ait olmadığında bu exception oluşur.
// Banka API bilgileriniz hatalı ise de oluşur.
}
Expand Down Expand Up @@ -221,12 +221,12 @@ $order = createPostPayOrder(
$postAuthAmount
);

// ($preAuthAmount < $postAuthAmount) durumda API isteğe ekstra değerler eklenmesi gerekiyor.
/** @var \Symfony\Component\EventDispatcher\EventDispatcher $eventDispatcher */
$eventDispatcher->addListener(
\Mews\Pos\Event\RequestDataPreparedEvent::class,
function (\Mews\Pos\Event\RequestDataPreparedEvent $event) use ($gatewayClass, $preAuthAmount, $postAuthAmount) {
if (\Mews\Pos\Gateways\EstPos::class === $gatewayClass || \Mews\Pos\Gateways\EstV3Pos::class === $gatewayClass) {
// ($preAuthAmount < $postAuthAmount) durumda API isteğe ekstra değerler eklenmesi gerekiyor.
if ($preAuthAmount < $postAuthAmount) {
$requestData = $event->getRequestData();
$requestData['Extra']['PREAMT'] = $preAuthAmount;
Expand All @@ -237,7 +237,7 @@ $eventDispatcher->addListener(
try {
$pos->payment($paymentModel, $order, $transaction);
var_dump($response);
catch (Exception $e) {
catch (\Exception $e) {
var_dump($e);
exit;
}
Expand Down
6 changes: 2 additions & 4 deletions docs/REFUND-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ $ cp ./vendor/mews/pos/config/pos_test.php ./pos_test_ayarlar.php
<?php
require './vendor/autoload.php';

$paymentModel = \Mews\Pos\PosInterface::MODEL_NON_SECURE;

// API kullanıcı bilgileri
// AccountFactory'de kullanılacak method Gateway'e göre değişir. Örnek kodlara bakınız.
$account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'akbank', //pos config'deki ayarın index name'i
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
\Mews\Pos\PosInterface::MODEL_NON_SECURE,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
Expand Down
8 changes: 3 additions & 5 deletions docs/STATUS-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,19 @@ $ cp ./vendor/mews/pos/config/pos_test.php ./pos_test_ayarlar.php
<?php
require './vendor/autoload.php';

$paymentModel = \Mews\Pos\PosInterface::MODEL_NON_SECURE;

// API kullanıcı bilgileri
// AccountFactory'de kullanılacak method Gateway'e göre değişir. Örnek kodlara bakınız.
$account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'akbank', //pos config'deki ayarın index name'i
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
\Mews\Pos\PosInterface::MODEL_NON_SECURE,
'', // bankaya göre zorunlu
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
$eventDispatcher = new \Symfony\Component\EventDispatcher\EventDispatcher();

try {
$config = require __DIR__.'/pos_test_ayarlar.php';
Expand Down
40 changes: 24 additions & 16 deletions docs/THREED-PAYMENT-EXAMPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $sessionHandler = new \Symfony\Component\HttpFoundation\Session\Storage\NativeSe
'cookie_samesite' => 'None',
'cookie_secure' => true,
]);
$session = new Session($sessionHandler);
$session = new \Symfony\Component\HttpFoundation\Session\Session($sessionHandler);
$session->start();

$paymentModel = \Mews\Pos\PosInterface::MODEL_3D_SECURE;
Expand All @@ -36,9 +36,9 @@ $account = \Mews\Pos\Factory\AccountFactory::createEstPosAccount(
'yourClientID',
'yourKullaniciAdi',
'yourSifre',
$paymentModel
$paymentModel,
'yourStoreKey',
PosInterface::LANG_TR
\Mews\Pos\PosInterface::LANG_TR
);

$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
Expand Down Expand Up @@ -79,7 +79,7 @@ $order = [
'lang' => \Mews\Pos\Gateways\PosInterface::LANG_TR, // Kullanıcının yönlendirileceği banka gateway sayfasının ve gateway'den dönen mesajların dili.
];

if ($tekrarlanan) { // recurring payments
if ($tekrarlanan = false) { // recurring payments
// Desteleyen Gatewayler: GarantiPos, EstPos, EstV3Pos, PayFlexV4
$order['installment'] = 0; // Tekrarlayan ödemeler taksitli olamaz.

Expand All @@ -104,25 +104,25 @@ $card = null;
if (\Mews\Pos\PosInterface::MODEL_3D_HOST !== $paymentModel) {
$card = \Mews\Pos\Factory\CreditCardFactory::createForGateway(
$pos,
$_REQUEST['card_number'],
$_REQUEST['card_year'],
$_REQUEST['card_month'],
$_REQUEST['card_cvv'],
$_REQUEST['card_name'],
$_POST['card_number'],
$_POST['card_year'],
$_POST['card_month'],
$_POST['card_cvv'],
$_POST['card_name'],

// kart tipi Gateway'e göre zorunlu, alabileceği örnek değer: "visa"
// alabileceği alternatif değerler için \Mews\Pos\Entity\Card\CreditCardInterface'a bakınız.
$_REQUEST['card_type'] ?? null
$_POST['card_type'] ?? null
);
} catch (CardTypeRequiredException $e) {
} catch (\Mews\Pos\Exceptions\CardTypeRequiredException $e) {
// bu gateway için kart tipi zorunlu
} catch (CardTypeNotSupportedException $e) {
} catch (\Mews\Pos\Exceptions\CardTypeNotSupportedException $e) {
// sağlanan kart tipi bu gateway tarafından desteklenmiyor
}

if (get_class($pos) === \Mews\Pos\Gateways\PayFlexV4Pos::class) {
// bu gateway için ödemeyi tamamlarken tekrar kart bilgisi lazım olacak.
$session->set('card', $_REQUEST);
$session->set('card', $_POST);
}
}

Expand Down Expand Up @@ -155,12 +155,20 @@ try {
\Mews\Pos\Gateways\PosInterface::MODEL_3D_PAY_HOSTING,
\Mews\Pos\Gateways\PosInterface::MODEL_3D_HOST,
];
if ($event->getTxType() === PosInterface::TX_TYPE_PAY_AUTH && in_array($event->getPaymentModel(), $supportedPaymentModels, true)) {
if ($event->getTxType() === \Mews\Pos\PosInterface::TX_TYPE_PAY_AUTH && in_array($event->getPaymentModel(), $supportedPaymentModels, true)) {
$formInputs = $event->getFormInputs();
$formInputs['IMCKOD'] = '9999'; // IMCKOD bilgisi bankadan alınmaktadır.
$formInputs['FDONEM'] = '5'; // Ödemenin faizsiz ertelenmesini istediğiniz dönem sayısı.
$event->setFormInputs($formInputs);
}*/

}
if (get_class($pos) === \Mews\Pos\Gateways\EstV3Pos::class) {
// Örnek 2: callbackUrl eklenmesi
// $formInputs = $event->getFormInputs();
// $formInputs['callbackUrl'] = $formInputs['failUrl'];
// $formInputs['refreshTime'] = '10'; // birim: saniye; callbackUrl sisteminin doğru çalışması için eklenmesi gereken parametre
// $event->setFormInputs($formInputs);
}
});

Expand Down Expand Up @@ -224,7 +232,7 @@ if (\Mews\Pos\PosInterface::MODEL_3D_HOST !== $paymentModel) {

// //Isbank İMECE kart ile MODEL_3D_SECURE yöntemiyle ödeme için ekstra alanların eklenme örneği
// $eventDispatcher->addListener(RequestDataPreparedEvent::class, function (RequestDataPreparedEvent $event) use ($paymentModel) {
// if ($event->getTxType() === PosInterface::TX_TYPE_PAY_AUTH && PosInterface::MODEL_3D_SECURE === $paymentModel) {
// if ($event->getTxType() === \Mews\Pos\PosInterface::TX_TYPE_PAY_AUTH && \Mews\Pos\PosInterface::MODEL_3D_SECURE === $paymentModel) {
// $data = $event->getRequestData();
// $data['Extra']['IMCKOD'] = '9999'; // IMCKOD bilgisi bankadan alınmaktadır.
// $data['Extra']['FDONEM'] = '5'; // Ödemenin faizsiz ertelenmesini istediğiniz dönem sayısı
Expand Down Expand Up @@ -252,7 +260,7 @@ try {
if ($pos->isSuccess()) {
// NOT: Ödeme durum sorgulama, iptal ve iade işlemleri yapacaksanız $response değerini saklayınız.
}
} catch (Mews\Pos\Exceptions\HashMismatchException $e) {
} catch (\Mews\Pos\Exceptions\HashMismatchException $e) {
// Bankadan gelen verilerin bankaya ait olmadığında bu exception oluşur.
// Banka API bilgileriniz hatalı ise de oluşur.
}
Expand Down
Loading

0 comments on commit 805f9dc

Please sign in to comment.