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:
<?php
namespace RKD\Banklink\Protocol;
use DateTime;
use DateTimeZone;
use RKD\Banklink\Protocol\Helper\ProtocolHelper;
use RKD\Banklink\Protocol\ProtocolTrait\NoAuthTrait;
use RKD\Banklink\Response\PaymentResponse;
use RKD\Banklink\Response\ResponseInterface;
use UnexpectedValueException;
class ECommerce implements ProtocolInterface
{
use NoAuthTrait;
const PAYMENT_RESPONSE_SUCCESS = '000';
const PAYMENT_RESPONSE_ABORT = '017';
protected $publicKey;
protected $privateKey;
protected $privateKeyPassword;
protected $sellerId;
protected $version;
protected $requestUrl;
protected $result;
protected $algorithm = OPENSSL_ALGO_SHA1;
public function __construct(
$sellerId,
$privateKey,
$privateKeyPassword,
$publicKey,
$requestUrl,
$version = '004'
) {
$this->privateKey = $privateKey;
$this->privateKeyPassword = $privateKeyPassword;
$this->publicKey = $publicKey;
$this->sellerId = $sellerId;
$this->version = $version;
$this->requestUrl = $requestUrl;
}
public function getPaymentRequest(
int $orderId,
float $sum,
string $message,
string $language = 'EST',
string $currency = 'EUR',
array $customRequestData = [],
string $encoding = 'UTF-8',
string $timezone = 'Europe/Tallinn'
) : array {
$time = getenv('CI') ? getenv('TEST_DATETIME') : 'now';
$datetime = new Datetime($time, new DateTimeZone($timezone));
$data = [
'lang' => ProtocolHelper::langToISO6391($language),
'action' => 'gaf',
'ver' => $this->version,
'id' => $this->sellerId,
'ecuno' => $orderId,
'eamount' => $sum * 100,
'cur' => $currency,
'datetime' => $datetime->format('YmdHis'),
'charEncoding' => $encoding,
'feedBackUrl' => $this->requestUrl,
'delivery' => 'S',
'additionalinfo' => $message
];
if (is_array($customRequestData)) {
$data = array_merge($data, $customRequestData);
}
if (strlen($data['additionalinfo']) < 1) {
unset($data['additionalinfo']);
}
$data['mac'] = $this->getSignature($data, $encoding);
return $data;
}
protected function handlePaymentResponse(array $responseData, bool $success) : ResponseInterface
{
$status = PaymentResponse::STATUS_ERROR;
if ($success && $responseData['respcode'] === self::PAYMENT_RESPONSE_SUCCESS) {
$status = PaymentResponse::STATUS_SUCCESS;
}
$response = new PaymentResponse($status, $responseData);
$response->setOrderId($responseData['ecuno']);
if (isset($responseData['auto'])) {
$response->setAutomatic(strtoupper($responseData['auto']) === PaymentResponse::RESPONSE_AUTO);
}
if (isset($responseData['msgdata'])) {
$response->setMessage($responseData['msgdata']);
}
if (PaymentResponse::STATUS_SUCCESS === $status) {
$response
->setSum(round($responseData['eamount'] / 100, 2))
->setCurrency($responseData['cur'])
->setTransactionId($responseData['receipt_no'])
->setTransactionDate((new Datetime($responseData['datetime']))->format('Y-m-d\TH:i:s'));
}
return $response;
}
protected function getSignature(array $data, string $encoding = 'UTF-8') : string
{
$mac = $this->generateSignature($data, $encoding);
if (is_file($this->privateKey)) {
$privateKey = openssl_pkey_get_private('file://'.$this->privateKey, $this->privateKeyPassword);
} elseif (is_string($this->privateKey)) {
$privateKey = openssl_pkey_get_private($this->privateKey, $this->privateKeyPassword);
}
if (!$privateKey) {
throw new UnexpectedValueException('Can not get private key.');
}
openssl_sign($mac, $signature, $privateKey, $this->algorithm);
openssl_free_key($privateKey);
$result = bin2hex($signature);
return $result;
}
protected function generateSignature(array $data, string $encoding = 'UTF-8') : string
{
$fields = [
'ver',
'id',
'ecuno',
'eamount',
'cur',
'datetime',
'feedBackUrl',
'delivery'
];
if (isset($data['respcode'])) {
$fields = [
'ver',
'id',
'ecuno',
'receipt_no',
'eamount',
'cur',
'respcode',
'datetime',
'msgdata',
'actiontext'
];
$data['receipt_no'] = ProtocolHelper::mbStrPad($data['receipt_no'], 6, "0", STR_PAD_LEFT, $encoding);
$data['msgdata'] = ProtocolHelper::mbStrPad(
$data['respcode'] === self::PAYMENT_RESPONSE_ABORT && strlen($data['msgdata']) == 0 ? ' ' : $data['msgdata'],
40,
" ",
STR_PAD_RIGHT,
$encoding
);
$data['respcode'] = ProtocolHelper::mbStrPad($data['respcode'], 3, "0", STR_PAD_LEFT, $encoding);
$data['actiontext'] = ProtocolHelper::mbStrPad($data['actiontext'], 40, " ", STR_PAD_RIGHT, $encoding);
}
if (isset($data['feedBackUrl'])) {
$data['feedBackUrl'] = ProtocolHelper::mbStrPad($data['feedBackUrl'], 128);
}
if (isset($data['additionalinfo'])) {
$fields[] = 'additionalinfo';
$data['additionalinfo'] = ProtocolHelper::mbStrPad($data['additionalinfo'], 128);
}
$data['ver'] = ProtocolHelper::mbStrPad($data['ver'], 3, "0", STR_PAD_LEFT, $encoding);
$data['id'] = ProtocolHelper::mbStrPad($data['id'], 10, " ", STR_PAD_RIGHT, $encoding);
$data['ecuno'] = ProtocolHelper::mbStrPad($data['ecuno'], 12, "0", STR_PAD_LEFT, $encoding);
$data['eamount'] = ProtocolHelper::mbStrPad($data['eamount'], 12, "0", STR_PAD_LEFT, $encoding);
$data['cur'] = ProtocolHelper::mbStrPad($data['cur'], 3, " ", STR_PAD_RIGHT, $encoding);
$data['datetime'] = ProtocolHelper::mbStrPad($data['datetime'], 14, " ", STR_PAD_RIGHT, $encoding);
$mac = '';
foreach ($fields as $key) {
if (!isset($data[$key]) || $data[$key] === false || is_null($data[$key])) {
throw new UnexpectedValueException(
vsprintf('Field %s must be set to use ECommerce protocol.', [$key])
);
}
$mac .= $data[$key];
}
return $mac;
}
protected function validateSignature(array $response, string $encoding = 'UTF-8') : bool
{
$data = $this->generateSignature($response, $encoding);
if (is_file($this->publicKey)) {
$publicKey = openssl_get_publickey('file://'.$this->publicKey);
} elseif (is_string($this->publicKey)) {
$publicKey = openssl_get_publickey($this->publicKey);
}
if (!$publicKey) {
throw new UnexpectedValueException('Can not get public key.');
}
$this->result = openssl_verify($data, pack('H*', $response['mac']), $publicKey, $this->algorithm);
openssl_free_key($publicKey);
return $this->result === 1;
}
public function setAlgorithm($algorithm) : self
{
$this->algorithm = $algorithm;
return $this;
}
public function getAlgorithm()
{
return $this->algorithm;
}
}