-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 191-akbank-yeni-api-destegi
- Loading branch information
Showing
13 changed files
with
698 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,6 +172,39 @@ try { | |
} | ||
}); | ||
|
||
// KuveytVos TDV2.0.0 icin ozel biri durum | ||
$eventDispatcher->addListener( | ||
RequestDataPreparedEvent::class, | ||
function (RequestDataPreparedEvent $requestDataPreparedEvent) use ($pos): void { | ||
if (get_class($pos) !== \Mews\Pos\Gateways\KuveytPos::class) { | ||
return; | ||
} | ||
// KuveytPos TDV2.0.0 icin zorunlu eklenmesi gereken ekstra alanlar: | ||
$additionalRequestDataForKuveyt = [ | ||
'DeviceData' => [ | ||
//2 karakter olmalıdır. 01-Mobil, 02-Web Browser için kullanılmalıdır. | ||
'DeviceChannel' => '02', | ||
], | ||
'CardHolderData' => [ | ||
'BillAddrCity' => 'İstanbul', | ||
// ISO 3166-1 sayısal üç haneli ülke kodu standardı kullanılmalıdır. | ||
'BillAddrCountry' => '792', | ||
'BillAddrLine1' => 'XXX Mahallesi XXX Caddesi No 55 Daire 1', | ||
'BillAddrPostCode' => '34000', | ||
// ISO 3166-2'de tanımlı olan il/eyalet kodu olmalıdır. | ||
'BillAddrState' => '40', | ||
'Email' => '[email protected]', | ||
'MobilePhone' => [ | ||
'Cc' => '90', | ||
'Subscriber' => '1234567899', | ||
], | ||
], | ||
]; | ||
$requestData = $requestDataPreparedEvent->getRequestData(); | ||
$requestData = array_merge_recursive($requestData, $additionalRequestDataForKuveyt); | ||
$requestDataPreparedEvent->setRequestData($requestData); | ||
}); | ||
|
||
$formData = $pos->get3DFormData( | ||
$order, | ||
$paymentModel, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,71 @@ | |
*/ | ||
}); | ||
|
||
// KuveytVos TDV2.0.0 icin ozel biri durum | ||
$eventDispatcher->addListener( | ||
RequestDataPreparedEvent::class, | ||
function (RequestDataPreparedEvent $requestDataPreparedEvent) use ($pos): void { | ||
if (get_class($pos) !== \Mews\Pos\Gateways\KuveytPos::class) { | ||
return; | ||
} | ||
// KuveytPos TDV2.0.0 icin zorunlu eklenmesi gereken ekstra alanlar: | ||
$additionalRequestDataForKuveyt = [ | ||
'DeviceData' => [ | ||
/** | ||
* DeviceChannel : DeviceData alanı içerisinde gönderilmesi beklenen işlemin yapıldığı cihaz bilgisi. | ||
* 2 karakter olmalıdır. 01-Mobil, 02-Web Browser için kullanılmalıdır. | ||
*/ | ||
'DeviceChannel' => '02', | ||
], | ||
'CardHolderData' => [ | ||
/** | ||
* BillAddrCity: Kullanılan kart ile ilişkili kart hamilinin fatura adres şehri. | ||
* Maksimum 50 karakter uzunluğunda olmalıdır. | ||
*/ | ||
'BillAddrCity' => 'İstanbul', | ||
/** | ||
* BillAddrCountry Kullanılan kart ile ilişkili kart hamilinin fatura adresindeki ülke kodu. | ||
* Maksimum 3 karakter uzunluğunda olmalıdır. | ||
* ISO 3166-1 sayısal üç haneli ülke kodu standardı kullanılmalıdır. | ||
*/ | ||
'BillAddrCountry' => '792', | ||
/** | ||
* BillAddrLine1: Kullanılan kart ile ilişkili kart hamilinin teslimat adresinde yer alan sokak vb. bilgileri içeren açık adresi. | ||
* Maksimum 150 karakter uzunluğunda olmalıdır. | ||
*/ | ||
'BillAddrLine1' => 'XXX Mahallesi XXX Caddesi No 55 Daire 1', | ||
/** | ||
* BillAddrPostCode: Kullanılan kart ile ilişkili kart hamilinin fatura adresindeki posta kodu. | ||
*/ | ||
'BillAddrPostCode' => '34000', | ||
/** | ||
* BillAddrState: CardHolderData alanı içerisinde gönderilmesi beklenen ödemede kullanılan kart ile ilişkili kart hamilinin fatura adresindeki il veya eyalet bilgisi kodu. | ||
* ISO 3166-2'de tanımlı olan il/eyalet kodu olmalıdır. | ||
*/ | ||
'BillAddrState' => '40', | ||
/** | ||
* Email: Kullanılan kart ile ilişkili kart hamilinin iş yerinde oluşturduğu hesapta kullandığı email adresi. | ||
* Maksimum 254 karakter uzunluğunda olmalıdır. | ||
*/ | ||
'Email' => '[email protected]', | ||
'MobilePhone' => [ | ||
/** | ||
* Cc: Kullanılan kart ile ilişkili kart hamilinin cep telefonuna ait ülke kodu. 1-3 karakter uzunluğunda olmalıdır. | ||
*/ | ||
'Cc' => '90', | ||
/** | ||
* Subscriber: Kullanılan kart ile ilişkili kart hamilinin cep telefonuna ait abone numarası. | ||
* Maksimum 15 karakter uzunluğunda olmalıdır. | ||
*/ | ||
'Subscriber' => '1234567899', | ||
], | ||
], | ||
]; | ||
$requestData = $requestDataPreparedEvent->getRequestData(); | ||
$requestData = array_merge_recursive($requestData, $additionalRequestDataForKuveyt); | ||
$requestDataPreparedEvent->setRequestData($requestData); | ||
}); | ||
|
||
/** | ||
* Bu Event'i dinleyerek 3D formun hash verisi hesaplanmadan önce formun input array içireğini güncelleyebilirsiniz. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.