@@ -65,28 +65,44 @@ public function getUrlFor(string $action): string
65
65
{
66
66
return 'https:///ipgrest.asanpardakht.ir/v1/Settlement ' ;
67
67
}
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
+ }
68
76
}
69
77
} else {
70
78
switch ($ action ) {
71
79
case self ::URL_GATEWAY :
72
80
{
73
- return $ this ->bankTestBaseUrl . '/ap/asan.shaparak.ir ' ;
81
+ return $ this ->bankTestBaseUrl . '/ap/asan.shaparak.ir ' ;
74
82
}
75
83
case self ::URL_TOKEN :
76
84
{
77
- return $ this ->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Token ' ;
85
+ return $ this ->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Token ' ;
78
86
}
79
87
case self ::URL_VERIFY :
80
88
{
81
- return $ this ->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Verify ' ;
89
+ return $ this ->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/Verify ' ;
82
90
}
83
91
case self ::URL_RESULT :
84
92
{
85
- return $ this ->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/TranResult ' ;
93
+ return $ this ->bankTestBaseUrl . '/ap/ipgrest.asanpardakht.ir/v1/TranResult ' ;
86
94
}
87
95
case self ::URL_SETTLEMENT :
88
96
{
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 ' ;
90
106
}
91
107
}
92
108
}
@@ -148,16 +164,16 @@ public function requestTokenData(): array
148
164
'merchantConfigurationId ' => $ this ->getParameters ('terminal_id ' ),
149
165
'localInvoiceId ' => $ this ->getGatewayOrderId (),
150
166
'amountInRials ' => $ this ->getAmount (),
151
- 'localDate ' => $ this ->getParameters ('local_date ' ) . ' ' . $ this ->getParameters ('local_time ' ),
167
+ 'localDate ' => $ this ->getParameters ('local_date ' ). ' ' . $ this ->getParameters ('local_time ' ),
152
168
'callbackURL ' => $ this ->getCallbackUrl (),
153
169
'paymentId ' => 0 ,
154
170
];
155
171
}
156
172
157
173
/**
158
- * @param array $params
159
- * @param string $url
160
- * @param string $method
174
+ * @param array $params
175
+ * @param string $url
176
+ * @param string $method
161
177
* @return mixed
162
178
*/
163
179
public function sendParamToAp (array $ params , string $ url , string $ method ): mixed
@@ -200,7 +216,7 @@ public function verifyTransaction(): bool
200
216
$ this ->log ($ e ->getMessage (), [], 'error ' );
201
217
202
218
throw new VerificationException (
203
- 'verifyTransaction: ' . $ e ->getMessage () . ' # ' . $ e ->getCode (),
219
+ 'verifyTransaction: ' . $ e ->getMessage (). ' # ' . $ e ->getCode (),
204
220
$ e ->getCode ()
205
221
);
206
222
}
@@ -228,9 +244,8 @@ public function getTransactionResult(): bool
228
244
$ this ->getTransaction ()->setReferenceId ($ response ->json ('refID ' ));
229
245
230
246
return true ;
231
- } else {
232
- throw new Exception (sprintf ('shaparak::asanpardakhtRest.error_%s ' , $ response ->status ()));
233
247
}
248
+ return false ;
234
249
}
235
250
236
251
/**
@@ -266,7 +281,7 @@ public function settleTransaction(): bool
266
281
} catch (\Exception $ e ) {
267
282
$ this ->log ($ e ->getMessage (), [], 'error ' );
268
283
throw new SettlementException (
269
- 'settleTransaction: ' . $ e ->getMessage () . ' # ' . $ e ->getCode (),
284
+ 'settleTransaction: ' . $ e ->getMessage (). ' # ' . $ e ->getCode (),
270
285
$ e ->getCode ()
271
286
);
272
287
}
@@ -285,16 +300,21 @@ public function refundTransaction(): bool
285
300
'password ' ,
286
301
'terminal_id ' ,
287
302
]);
288
-
289
303
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 ' ) );
291
305
}
292
306
293
307
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
+ }
295
315
296
316
if ($ response !== true ) {
297
- throw new Exception ('shaparak::asanpardakht.could_not_refund_transaction ' );
317
+ throw new Exception (trans ( 'shaparak::shaparak.refund_payment_already_exist ' ) );
298
318
}
299
319
300
320
$ this ->getTransaction ()->setRefunded (true );
@@ -304,7 +324,7 @@ public function refundTransaction(): bool
304
324
$ this ->log ($ e ->getMessage (), [], 'error ' );
305
325
306
326
throw new RefundException (
307
- 'refundTransaction: ' . $ e ->getMessage () . ' # ' . $ e ->getCode (),
327
+ 'refundTransaction: ' . $ e ->getMessage (). ' # ' . $ e ->getCode (),
308
328
$ e ->getCode ()
309
329
);
310
330
}
0 commit comments