Viewing file: PaystackPayment.php (5.05 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Modules\PaymentGateway\PaymentGatewayProvider;
use App\Models\BillingRequest; use App\Models\Deposit; use App\Models\Plan; use Illuminate\Http\Request; use Illuminate\Support\Facades\Config; use Illuminate\Support\Facades\Log; use Unicodeveloper\Paystack\Paystack;
class PaystackPayment implements PaymentInterface { public $planReq; public $redirect_url; public $error_message; public $return_view; public $will_redirect= false;
public function __construct() {
}
public function pay() { // TODO: Implement pay() method. }
public function getCredentials() { $credentials = json_decode(get_settings('payment_gateway'));
if (!isset($credentials->paystack_status) || !$credentials->paystack_merchant_email || !$credentials->paystack_payment_url || !$credentials->paystack_public_key || !$credentials->paystack_secret_key || $credentials->paystack_status != 'active') { throw new \Exception(trans('Invalid Payment')); } return $credentials; }
public function request($request) { $this->request = $request; return $this; }
public function plan($plan) { $this->plan = $plan; return $this; }
public function deposit($deposit){ $this->deposit = $deposit; return $this; } public function will_redirect() { // TODO: Implement will_redirect() method. return $this->will_redirect; }
public function redirect_url() { // TODO: Implement redirect_url() method. return $this->redirect_url; } public function return_view() { // TODO: Implement redirect_url() method. return $this->return_view; } public function error_message() { // TODO: Implement error_message() method. return $this->error_message; } public function process() { $paystackData = $this->payStackPayment($this->deposit , $this->request); if ($paystackData) { $this->redirect_url = $paystackData->redirectNow(); $this->will_redirect = true; $this->return_view = null; } }
function payStackPayment($deposit, $request) { $local_settings = json_decode(get_settings('local_setting')); $credentials = json_decode(get_settings('payment_gateway')); if (!isset($credentials->paystack_public_key) || !$credentials->paystack_secret_key || $credentials->paystack_status != 'active') { throw new \Exception(trans('layout.message.invalid_payment')); }
$data = [ 'secretKey' => $credentials->paystack_secret_key, 'publicKey' => $credentials->paystack_public_key, 'paymentUrl' => $credentials->paystack_payment_url ];
if ($credentials->paystack_merchant_email) { $data['merchantEmail'] = $credentials->paystack_merchant_email; } Config::set('paystack', $data);
$paystack = new Paystack(); $user = auth()->user(); $request->email = $user->email; $request->orderID = "DEPOSITID_" . $deposit->id; $request->amount = $deposit->amount * 100; $request->quantity = 1; $request->currency = isset($local_settings->currency_code)?$local_settings->currency_code:'USD'; $request->reference = $paystack->genTranxRef(); $request->callback_url = route('paymentgateway::payment.paystack.process'); $request->metadata = json_encode(['user_deposit' => $deposit->id]); return $paystack->getAuthorizationUrl();
}
public function processPaystackPayment(Request $request) { $credentials = json_decode(get_settings('payment_gateway')); if (!isset($credentials->paystack_public_key) || !$credentials->paystack_secret_key || $credentials->paystack_status != 'active') { throw new \Exception(trans('Invalid Request')); }
$data = [ 'secretKey' => $credentials->paystack_secret_key, 'publicKey' => $credentials->paystack_public_key, 'paymentUrl' => $credentials->paystack_payment_url ];
if ($credentials->paystack_merchant_email) { $data['merchantEmail'] = $credentials->paystack_merchant_email; } Config::set('paystack', $data);
$paymentDetails = paystack()->getPaymentData();
if (isset($paymentDetails['data']) && isset($paymentDetails['data']['id'])) { $user_deposit = isset($paymentDetails['data']['metadata']['user_deposit']) ? $paymentDetails['data']['metadata']['user_deposit'] : ''; if ($user_deposit) { $userPlan = Deposit::find($user_deposit); if (!$userPlan) { Log::info("user plan not found -" . $user_deposit); exit; }; } Log::info("Meta data not found"); $this->error_message= 'Meta data not found'; exit; } else { $this->error_message= trans('Invalid payment'); } }
}
|