Skip to content

Commit 721e435

Browse files
committed
fix: Refactor refund transaction
1 parent 0b2021f commit 721e435

File tree

3 files changed

+63
-32
lines changed

3 files changed

+63
-32
lines changed

src/Provider/AbstractProvider.php

+10
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ abstract class AbstractProvider implements ProviderContract
2626
public const URL_TOKEN = 'token';
2727
public const URL_VERIFY = 'verify';
2828
public const URL_REFUND = 'refund';
29+
public const URL_CANSEL = 'cansel';
2930
public const URL_MULTIPLEX = 'multiplex';
3031

32+
protected bool $provideTransactionResult = true;
3133
/**
3234
* shaparak operation environment
3335
*
@@ -273,4 +275,12 @@ protected function log(string $message, array $params = [], string $level = 'deb
273275

274276
Shaparak::log($message, $params, $level);
275277
}
278+
279+
/**
280+
* @return bool
281+
*/
282+
public function getTransactionResult(): bool
283+
{
284+
return $this->provideTransactionResult;
285+
}
276286
}

src/Provider/AsanPardakhtProvider.php

+38-18
Original file line numberDiff line numberDiff line change
@@ -65,28 +65,44 @@ public function getUrlFor(string $action): string
6565
{
6666
return 'https:///ipgrest.asanpardakht.ir/v1/Settlement';
6767
}
68+
case self::URL_REFUND:
69+
{
70+
return 'https:///ipgrest.asanpardakht.ir/v1/Reverse';
71+
}
72+
case self::URL_CANSEL:
73+
{
74+
return 'https:///ipgrest.asanpardakht.ir/v1/Cancel';
75+
}
6876
}
6977
} else {
7078
switch ($action) {
7179
case self::URL_GATEWAY:
7280
{
73-
return $this->bankTestBaseUrl . '/ap/asan.shaparak.ir';
81+
return $this->bankTestBaseUrl.'/ap/asan.shaparak.ir';
7482
}
7583
case self::URL_TOKEN:
7684
{
77-
return $this->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Token';
85+
return $this->bankTestBaseUrl.'/ap/ipgrest.asanpardakht.ir/v1/Token';
7886
}
7987
case self::URL_VERIFY:
8088
{
81-
return $this->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Verify';
89+
return $this->bankTestBaseUrl.'/ap/ipgrest.asanpardakht.ir/v1/Verify';
8290
}
8391
case self::URL_RESULT:
8492
{
85-
return $this->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/TranResult';
93+
return $this->bankTestBaseUrl.'/ap/ipgrest.asanpardakht.ir/v1/TranResult';
8694
}
8795
case self::URL_SETTLEMENT:
8896
{
89-
return $this->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Settlement';
97+
return $this->bankTestBaseUrl.'/ap/ipgrest.asanpardakht.ir/v1/Settlement';
98+
}
99+
case self::URL_REFUND:
100+
{
101+
return $this->bankTestBaseUrl.'/ap/ipgrest.asanpardakht.ir/v1/Reverse';
102+
}
103+
case self::URL_CANSEL:
104+
{
105+
return $this->bankTestBaseUrl.'/ap/ipgrest.asanpardakht.ir/v1/Cancel';
90106
}
91107
}
92108
}
@@ -148,16 +164,16 @@ public function requestTokenData(): array
148164
'merchantConfigurationId' => $this->getParameters('terminal_id'),
149165
'localInvoiceId' => $this->getGatewayOrderId(),
150166
'amountInRials' => $this->getAmount(),
151-
'localDate' => $this->getParameters('local_date') . ' ' . $this->getParameters('local_time'),
167+
'localDate' => $this->getParameters('local_date').' '.$this->getParameters('local_time'),
152168
'callbackURL' => $this->getCallbackUrl(),
153169
'paymentId' => 0,
154170
];
155171
}
156172

157173
/**
158-
* @param array $params
159-
* @param string $url
160-
* @param string $method
174+
* @param array $params
175+
* @param string $url
176+
* @param string $method
161177
* @return mixed
162178
*/
163179
public function sendParamToAp(array $params, string $url, string $method): mixed
@@ -200,7 +216,7 @@ public function verifyTransaction(): bool
200216
$this->log($e->getMessage(), [], 'error');
201217

202218
throw new VerificationException(
203-
'verifyTransaction: ' . $e->getMessage() . ' #' . $e->getCode(),
219+
'verifyTransaction: '.$e->getMessage().' #'.$e->getCode(),
204220
$e->getCode()
205221
);
206222
}
@@ -228,9 +244,8 @@ public function getTransactionResult(): bool
228244
$this->getTransaction()->setReferenceId($response->json('refID'));
229245

230246
return true;
231-
} else {
232-
throw new Exception(sprintf('shaparak::asanpardakhtRest.error_%s', $response->status()));
233247
}
248+
return false;
234249
}
235250

236251
/**
@@ -266,7 +281,7 @@ public function settleTransaction(): bool
266281
} catch (\Exception $e) {
267282
$this->log($e->getMessage(), [], 'error');
268283
throw new SettlementException(
269-
'settleTransaction: ' . $e->getMessage() . ' #' . $e->getCode(),
284+
'settleTransaction: '.$e->getMessage().' #'.$e->getCode(),
270285
$e->getCode()
271286
);
272287
}
@@ -285,16 +300,21 @@ public function refundTransaction(): bool
285300
'password',
286301
'terminal_id',
287302
]);
288-
289303
if ($this->getTransaction()->isReadyForRefund() === false) {
290-
throw new RefundException('shaparak::shaparak.could_not_refund_payment');
304+
throw new RefundException(trans('shaparak::shaparak.could_not_refund_payment'));
291305
}
292306

293307
try {
294-
$response = $this->generateComplementaryOperation(self::URL_REFUND);
308+
if ($this->getTransaction()->isReadyForReverse()) {
309+
$response = $this->generateComplementaryOperation(self::URL_REFUND);
310+
} elseif ($this->getTransaction()->isReadyForCancel()) {
311+
$response = $this->generateComplementaryOperation(self::URL_CANSEL);
312+
} else {
313+
throw new RefundException(trans('shaparak::shaparak.could_not_refund_payment'));
314+
}
295315

296316
if ($response !== true) {
297-
throw new Exception('shaparak::asanpardakht.could_not_refund_transaction');
317+
throw new Exception(trans('shaparak::shaparak.refund_payment_already_exist'));
298318
}
299319

300320
$this->getTransaction()->setRefunded(true);
@@ -304,7 +324,7 @@ public function refundTransaction(): bool
304324
$this->log($e->getMessage(), [], 'error');
305325

306326
throw new RefundException(
307-
'refundTransaction: ' . $e->getMessage() . ' #' . $e->getCode(),
327+
'refundTransaction: '.$e->getMessage().' #'.$e->getCode(),
308328
$e->getCode()
309329
);
310330
}

translations/fa/shaparak.php

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
<?php
22

33
return [
4-
'canceled_by_user' => 'تراکنش بانکی توسط کاربر لغو شد',
5-
'could_not_request_token' => 'امکان درخواست توکن برای این تراکنش وجود ندارد',
4+
'canceled_by_user' => 'تراکنش بانکی توسط کاربر لغو شد',
5+
'could_not_request_token' => 'امکان درخواست توکن برای این تراکنش وجود ندارد',
66
'could_not_verify_transaction' => 'امکان تایید این تراکنش وجود ندارد',
7-
'could_not_inquiry_payment' => 'امکان استعلام این تراکنش وجود ندارد',
8-
'could_not_settle_payment' => 'امکان تسویه برای این تراکنش وجود ندارد',
9-
'could_not_refund_payment' => 'امکان برگشت زدن این تراکنش وجود ندارد',
10-
'gate_not_ready' => 'درگاه پرداختی یا وجود ندارد یا آماده سرویس دهی نمی باشد',
11-
'goto_gate' => 'انتقال به درگاه پرداخت',
12-
'invalid_response' => 'پاسخ معتبر از سرور درگاه پرداخت دریافت نشد!',
13-
'token_failed' => 'درخواست توکن تراکنش با موفقیت انجام نشد!',
14-
'verify_failed' => 'تایید تراکنش با موفقیت انجام نشد!',
15-
'inquiry_failed' => 'بررسی وضعیت تراکنش با موفقیت انجام نشد!',
16-
'settle_failed' => 'تایید بعد از تراکنش با موفقیت انجام نشد!',
17-
'refund_failed' => 'بازگشت تراکنش با موفقیت انجام نشد!',
18-
'amounts_not_match' => 'مقدار فاکتور با مقدار برگشتی از درگاه برابر نیست!',
7+
'could_not_inquiry_payment' => 'امکان استعلام این تراکنش وجود ندارد',
8+
'could_not_settle_payment' => 'امکان تسویه برای این تراکنش وجود ندارد',
9+
'could_not_refund_payment' => 'امکان برگشت زدن این تراکنش وجود ندارد',
10+
'refund_payment_already_exist' => 'تراکنش قبلا برگشت خورده است',
11+
'gate_not_ready' => 'درگاه پرداختی یا وجود ندارد یا آماده سرویس دهی نمی باشد',
12+
'goto_gate' => 'انتقال به درگاه پرداخت',
13+
'invalid_response' => 'پاسخ معتبر از سرور درگاه پرداخت دریافت نشد!',
14+
'token_failed' => 'درخواست توکن تراکنش با موفقیت انجام نشد!',
15+
'verify_failed' => 'تایید تراکنش با موفقیت انجام نشد!',
16+
'inquiry_failed' => 'بررسی وضعیت تراکنش با موفقیت انجام نشد!',
17+
'settle_failed' => 'تایید بعد از تراکنش با موفقیت انجام نشد!',
18+
'refund_failed' => 'بازگشت تراکنش با موفقیت انجام نشد!',
19+
'amounts_not_match' => 'مقدار فاکتور با مقدار برگشتی از درگاه برابر نیست!',
1920
];

0 commit comments

Comments
 (0)