/
home
/
techb158
/
immovalet.com
/
platform
/
plugins
/
paystack
/
src
/
Services
/
/home/techb158/immovalet.com/platform/plugins/paystack/src/Services
mkdir
upload
Name
Size
Mode
Actions
Abstracts/
-
0755
rm
Gateways/
-
0755
rm
Paystack.php
2127
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/plugins/paystack/src/Services/Paystack.php
(2127B)
<?php namespace Botble\Paystack\Services; use Exception; use Unicodeveloper\Paystack\Paystack as PaystackUnico; class Paystack extends PaystackUnico { /** * Refund oreder * @return array * @throws Exception */ public function refundOrder($paymentId, $amount) { $relativeUrl = '/refund'; $data = [ 'body' => json_encode([ 'transaction' => $paymentId, 'amount' => $amount * 100 ]), ]; $this->response = $this->client->post($this->baseUrl . $relativeUrl, $data); if ($this->isValid()) { return $this->getResponse(); } throw new Exception('Invalid Refund Order Paystack'); } /** * Get the whole response from a get operation * @return array */ private function getResponse() { return json_decode($this->response->getBody(), true); } /** * True or false condition whether the transaction is verified * @return boolean */ public function isValid() { return $this->getResponse()['status']; } /** * Get transaction details * @param int $transactionId * @return array * @throws Exception */ public function getPaymentDetails($transactionId) { $relativeUrl = "/transaction/{$transactionId}"; $this->response = $this->client->get($this->baseUrl . $relativeUrl); if ($this->isValid()) { return $this->getResponse(); } throw new Exception('Invalid Get Payment Details Paystack'); } /** * Get list transactions * @param array $params * @return array * @throws Exception */ public function getListTransactions($params = []) { $relativeUrl = '/transaction' . ($params ? ('?' . http_build_query($params)) : ''); $this->response = $this->client->get($this->baseUrl . $relativeUrl); if ($this->isValid()) { return $this->getResponse(); } throw new Exception('Invalid Get List Transactions Paystack'); } }
Save
cmd:
run