!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/app/Http/Controllers/   drwxrwxr-x
Free 13.18 GB of 57.97 GB (22.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MercadoPaymentController.php (18.74 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace App\Http\Controllers;

use 
App\Models\Coupon;
use 
App\Models\Customer;
use 
App\Models\Invoice;
use 
App\Models\InvoicePayment;
use 
App\Models\Order;
use 
App\Models\Payment;
use 
App\Models\Plan;
use 
App\Models\User;
use 
App\Models\UserCoupon;
use 
App\Models\Utility;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\Auth;
use 
Illuminate\Support\Facades\Crypt;
use 
Illuminate\Support\Facades\DB;
use 
Illuminate\Support\Facades\Validator;


class 
MercadoPaymentController extends Controller
{

    public 
$token;
    public 
$is_enabled;
    public 
$currancy;
    public 
$mode;
    protected 
$invoiceData;

    public function 
paymentConfig()
    {
        if(
\Auth::check())
        {
            
$payment_setting Utility::getAdminPaymentSetting();
            
$this->currancy  env('CURRENCY');
        }
        else
        {
            
$payment_setting Utility::getCompanyPaymentSetting($this->invoiceData->created_by);
            
$this->currancy  = !empty(Utility::getValByName('site_currency')) ? Utility::getValByName('site_currency') : 'USD';

        }

        
$this->token      = isset($payment_setting['mercado_access_token']) ? $payment_setting['mercado_access_token'] : '';
        
$this->mode       = isset($payment_setting['mercado_mode']) ? $payment_setting['mercado_mode'] : '';
        
$this->is_enabled = isset($payment_setting['is_mercado_enabled']) ? $payment_setting['is_mercado_enabled'] : 'off';

        return 
$this;
    }

    public function 
planPayWithMercado(Request $request)
    {
        
$payment $this->paymentConfig();

        
$planID   \Illuminate\Support\Facades\Crypt::decrypt($request->plan_id);
        
$plan     Plan::find($planID);
        
$authuser \Auth::user();

        
$coupons_id '';
        if(
$plan)
        {
            
$price $plan->price;
            if(isset(
$request->coupon) && !empty($request->coupon))
            {
                
$request->coupon trim($request->coupon);
                
$coupons         Coupon::where('code'strtoupper($request->coupon))->where('is_active''1')->first();
                if(!empty(
$coupons))
                {
                    
$usedCoupun             $coupons->used_coupon();
                    
$discount_value         = ($price 100) * $coupons->discount;
                    
$plan->discounted_price $price $discount_value;
                    
$coupons_id             $coupons->id;
                    if(
$usedCoupun >= $coupons->limit)
                    {
                        return 
redirect()->back()->with('error'__('This coupon code has expired.'));
                    }
                    
$price $price $discount_value;
                }
                else
                {
                    return 
redirect()->back()->with('error'__('This coupon code is invalid or has expired.'));
                }
            }

            if(
$price <= 0)
            {

                
$authuser->plan $plan->id;

                
$authuser->save();

                
$assignPlan $authuser->assignPlan($plan->id);

                if(
$assignPlan['is_success'] == true && !empty($plan))
                {
                    if(!empty(
$authuser->payment_subscription_id) && $authuser->payment_subscription_id != '')
                    {
                        try
                        {
                            
$authuser->cancel_subscription($authuser->id);
                        }
                        catch(
\Exception $exception)
                        {
                            
\Log::debug($exception->getMessage());
                        }
                    }

                    
$orderID time();
                    
Order::create(
                        [
                            
'order_id' => $orderID,
                            
'name' => null,
                            
'email' => null,
                            
'card_number' => null,
                            
'card_exp_month' => null,
                            
'card_exp_year' => null,
                            
'plan_name' => $plan->name,
                            
'plan_id' => $plan->id,
                            
'price' => $price == null $price,
                            
'price_currency' => !empty(env('CURRENCY')) ? env('CURRENCY') : 'USD',
                            
'txn_id' => '',
                            
'payment_type' => __('Mercado'),
                            
'payment_status' => 'succeeded',
                            
'receipt' => null,
                            
'user_id' => $authuser->id,
                        ]
                    );


                    return 
redirect()->route('plans.index')->with('success'__('Plan activated Successfully!'));
                }
                else
                {
                    return 
redirect()->route('plans.index')->with('error'__('Plan fail to upgrade.'));
                }
            }

            
\MercadoPago\SDK::setAccessToken($this->token);
            try
            {

                
// Create a preference object
                
$preference = new \MercadoPago\Preference();
                
// Create an item in the preference
                
$item              = new \MercadoPago\Item();
                
$item->title       "Plan : " $plan->name;
                
$item->quantity    1;
                
$item->unit_price  = (float)$price;
                
$preference->items = array($item);


                
$success_url route(
                    
'plan.mercado', [
                                      
$request->plan_id,
                                      
$price,
                                      
'payment_frequency=' $request->mercado_payment_frequency,
                                      
'coupon_id=' $coupons_id,
                                      
'flag' => 'success',
                                  ]
                );
                
$failure_url route(
                    
'stripe', [
                                
Crypt::encrypt($request->plan_id),
                            ]
                );
                
$pending_url route(
                    
'plan.mercado', [
                                      
$request->plan_id,
                                      
$price,
                                      
'payment_frequency=' $request->mercado_payment_frequency,
                                      
'coupon_id=' $coupons_id,
                                      
'flag' => 'pending',
                                  ]
                );

                
$preference->back_urls = array(
                    
"success" => $success_url,
                    
"failure" => $failure_url,
                    
"pending" => $pending_url,
                );

                
$preference->auto_return "approved";
                
$preference->save();

                
// Create a customer object
                
$payer = new \MercadoPago\Payer();
                
// Create payer information
                
$payer->name    \Auth::user()->name;
                
$payer->email   \Auth::user()->email;
                
$payer->address = array(
                    
"street_name" => '',
                );
                if(
$this->mode == 'live')
                {
                    
$redirectUrl $preference->init_point;
                }
                else
                {
                    
$redirectUrl $preference->sandbox_init_point;
                }

                return 
redirect($redirectUrl);
            }
            catch(
Exception $e)
            {
                return 
redirect()->back()->with('error'$e->getMessage());
            }

        }
        else
        {
            return 
redirect()->back()->with('error''Plan is deleted.');
        }

    }

    public function 
getPaymentStatus(Request $request$plan$price)
    {

        
$planID  \Illuminate\Support\Facades\Crypt::decrypt($plan);
        
$plan    Plan::find($planID);
        
$user    \Auth::user();
        
$orderID time();
        if(
$plan)
        {
            try
            {

                if(
$plan && $request->has('status'))
                {

                    if(
$request->status == 'approved' && $request->flag == 'success')
                    {


                        if(
$request->has('coupon_id') && $request->coupon_id != '')
                        {
                            
$coupons Coupon::find($request->coupon_id);

                            if(!empty(
$coupons))
                            {
                                
$userCoupon         = new UserCoupon();
                                
$userCoupon->user   $user->id;
                                
$userCoupon->coupon $coupons->id;
                                
$userCoupon->order  $orderID;
                                
$userCoupon->save();

                                
$usedCoupun $coupons->used_coupon();
                                if(
$coupons->limit <= $usedCoupun)
                                {
                                    
$coupons->is_active 0;
                                    
$coupons->save();
                                }
                            }
                        }

                        
$order                 = new Order();
                        
$order->order_id       $orderID;
                        
$order->name           $user->name;
                        
$order->card_number    '';
                        
$order->card_exp_month '';
                        
$order->card_exp_year  '';
                        
$order->plan_name      $plan->name;
                        
$order->plan_id        $plan->id;
                        
$order->price          $price;
                        
$order->price_currency env('CURRENCY');
                        
$order->txn_id         = isset($request->TXNID) ? $request->TXNID '';
                        
$order->payment_type   __('Mercado');
                        
$order->payment_status 'success';
                        
$order->receipt        '';
                        
$order->user_id        $user->id;
                        
$order->save();

                        
$assignPlan $user->assignPlan($plan->id$request->payment_frequency);
                        if(
$assignPlan['is_success'])
                        {
                            return 
redirect()->route('plans.index')->with('success'__('Plan activated Successfully!'));
                        }
                        else
                        {
                            return 
redirect()->route('plans.index')->with('error'__($assignPlan['error']));
                        }
                    }
                    else
                    {
                        return 
redirect()->route('plans.index')->with('error'__('Transaction has been failed! '));
                    }
                }
                else
                {
                    return 
redirect()->route('plans.index')->with('error'__('Transaction has been failed! '));
                }
            }
            catch(
\Exception $e)
            {
                return 
redirect()->route('plans.index')->with('error'__('Plan not found!'));
            }
        }
    }

    public function 
customerPayWithMercado(Request $request)
    {

        
$invoiceID \Illuminate\Support\Facades\Crypt::decrypt($request->invoice_id);
        
$invoice   Invoice::find($invoiceID);

        
$this->invoiceData $invoice;

        
$payment $this->paymentConfig();

        
$validatorArray = [
            
'amount' => 'required',
            
'invoice_id' => 'required',
        ];
        
$validator      Validator::make(
            
$request->all(), $validatorArray
        
)->setAttributeNames(
            [
'invoice_id' => 'Invoice']
        );
        if(
$validator->fails())
        {
            return 
redirect()->back()->with('error'__($validator->errors()->first()));
        }

        
$user      User::find($invoice->created_by);
        if(
$invoice->getDue() < $request->amount)
        {
            return 
redirect()->back()->with('error'__('Not currect amount'));

        }
        
\MercadoPago\SDK::setAccessToken($this->token);
        try
        {

            
// Create a preference object
            
$preference = new \MercadoPago\Preference();
            
// Create an item in the preference
            
$item              = new \MercadoPago\Item();
            
$item->title       "Invoice : " $invoice->invoice_id;
            
$item->quantity    1;
            
$item->unit_price  = (float)$request->amount;
            
$preference->items = array($item);

            
$success_url             route(
                
'customer.mercado', [
                                      
encrypt($invoice->id),
                                      
'amount' => (float)$request->amount,
                                      
'flag' => 'success',
                                  ]
            );
            
$failure_url             route(
                
'customer.mercado', [
                                      
encrypt($invoice->id),
                                      
'flag' => 'failure',
                                  ]
            );
            
$pending_url             route(
                
'customer.mercado', [
                                      
encrypt($invoice->id),
                                      
'flag' => 'pending',
                                  ]
            );
            
$preference->back_urls   = array(
                
"success" => $success_url,
                
"failure" => $failure_url,
                
"pending" => $pending_url,
            );
            
$preference->auto_return "approved";
            
$preference->save();

            
// Create a customer object
            
$payer = new \MercadoPago\Payer();
            
// Create payer information
            
$payer->name    $user->name;
            
$payer->email   $user->email;
            
$payer->address = array(
                
"street_name" => '',
            );

            if(
$this->mode == 'live')
            {
                
$redirectUrl $preference->init_point;
            }
            else
            {
                
$redirectUrl $preference->sandbox_init_point;
            }

            return 
redirect($redirectUrl);
        }
        catch(
Exception $e)
        {

            return 
redirect()->back()->with('error'$e->getMessage());
        }

    }

    public function 
getInvoicePaymentStatus(Request $request,$invoice_id)
    {

        if(!empty(
$invoice_id))
        {
            
$invoice_id decrypt($invoice_id);
            
$invoice    Invoice::find($invoice_id);

            
$orderID  strtoupper(str_replace('.'''uniqid(''true)));
            
$settings DB::table('settings')->where('created_by''='$invoice->created_by)->get()->pluck('value''name');


            if(
$invoice && $request->has('status'))
            {
                try
                {

                    if(
$request->status == 'approved' && $request->flag == 'success')
                    {
                        
$payments InvoicePayment::create(
                            [
                                
'invoice_id' => $invoice_id,
                                
'date' => date('Y-m-d'),
                                
'amount' => $request->has('amount') ? $request->amount 0,
                                
'payment_method' => 1,
                                
'order_id' => $orderID,
                                
'payment_type' => __('Mercado'),
                                
'receipt' => '',
                                
'description' => __('Invoice') . ' ' Utility::invoiceNumberFormat($settings$invoice->invoice_id),
                            ]
                        );

                        
$invoice Invoice::find($invoice->id);


                        if(
$invoice->getDue() <= 0)
                        {
                            
Invoice::change_status($invoice->id4);
                        }
                        else
                        {
                            
Invoice::change_status($invoice->id3);
                        }

                        
//Slack Notification
                        
$setting  Utility::settings($invoice->created_by);
                        
$customer Customer::find($invoice->customer_id);
                        if(isset(
$setting['payment_notification']) && $setting['payment_notification'] == 1)
                        {
                            
$msg __("New payment of").' ' $request->amount __("created for").' ' $customer->name __("by").' '__('Mercado'). '.';
                            
Utility::send_slack_msg($msg,$invoice->created_by);
                        }

                        
//Telegram Notification
                        
$setting  Utility::settings($invoice->created_by);
                        
$customer Customer::find($invoice->customer_id);
                        if(isset(
$setting['telegram_payment_notification']) && $setting['telegram_payment_notification'] == 1)
                        {
                            
$msg __("New payment of").' ' $request->amount __("created for").' ' $customer->name __("by").' '__('Mercado'). '.';
                            
Utility::send_telegram_msg($msg,$invoice->created_by);
                        }

                        
//Twilio Notification
                        
$setting  Utility::settings($invoice->created_by);
                        
$customer Customer::find($invoice->customer_id);
                        if(isset(
$setting['twilio_payment_notification']) && $setting['twilio_payment_notification'] ==1)
                        {
                            
$msg __("New payment of").' ' $request->amount __("created for").' ' $customer->name __("by").' '.  $payments['payment_type'] . '.';
                            
Utility::send_twilio_msg($customer->contact,$msg,$invoice->created_by);
                        }



                        return 
redirect()->route('invoice.link.copy'Crypt::encrypt($invoice->id))->with('success'__(' Payment successfully added.'));

                    }
                    else
                    {
                        return 
redirect()->route('invoice.link.copy'Crypt::encrypt($invoice->id))->with('error'__('Transaction fail'));
                    }
                }
                catch(
\Exception $e)
                {
                    return 
redirect()-route('invoice.link.copy'Crypt::encrypt($invoice->id))->with('error'__('Invoice not found!'));
                }
            }
            else
            {
                return 
redirect()->route('invoice.link.copy'Crypt::encrypt($invoice->id))->with('error'__('Invoice not found.'));
            }
        }
        else
        {
            return 
redirect()->route('invoice.link.copy'Crypt::encrypt($invoice_id))->with('error'__('Invoice not found.'));
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0069 ]--