2023-07-14 09:27:08 +00:00
|
|
|
<?php
|
|
|
|
|
2024-01-07 15:23:41 +00:00
|
|
|
namespace App\Livewire\Settings;
|
2023-07-14 09:27:08 +00:00
|
|
|
|
|
|
|
use App\Actions\License\CheckResaleLicense;
|
|
|
|
use App\Models\InstanceSettings;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
2024-01-07 15:23:41 +00:00
|
|
|
class License extends Component
|
2023-07-14 09:27:08 +00:00
|
|
|
{
|
2024-01-07 15:23:41 +00:00
|
|
|
public InstanceSettings $settings;
|
2024-06-10 20:43:34 +00:00
|
|
|
|
|
|
|
public ?string $instance_id = null;
|
2024-01-07 15:23:41 +00:00
|
|
|
|
2023-07-14 09:27:08 +00:00
|
|
|
protected $rules = [
|
|
|
|
'settings.resale_license' => 'nullable',
|
|
|
|
'settings.is_resale_license_active' => 'nullable',
|
|
|
|
];
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-07-14 09:27:08 +00:00
|
|
|
protected $validationAttributes = [
|
|
|
|
'settings.resale_license' => 'License',
|
|
|
|
'instance_id' => 'Instance Id (Do not change this)',
|
|
|
|
'settings.is_resale_license_active' => 'Is License Active',
|
|
|
|
];
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2024-06-10 20:43:34 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
|
|
|
if (! isCloud()) {
|
2024-01-07 15:23:41 +00:00
|
|
|
abort(404);
|
|
|
|
}
|
2023-07-14 09:27:08 +00:00
|
|
|
$this->instance_id = config('app.id');
|
2024-07-12 13:45:36 +00:00
|
|
|
$this->settings = \App\Models\InstanceSettings::get();
|
2023-07-14 09:27:08 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-07 15:23:41 +00:00
|
|
|
public function render()
|
|
|
|
{
|
2024-03-22 10:34:15 +00:00
|
|
|
return view('livewire.settings.license');
|
2024-01-07 15:23:41 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-07-14 09:27:08 +00:00
|
|
|
public function submit()
|
|
|
|
{
|
|
|
|
$this->validate();
|
|
|
|
$this->settings->save();
|
|
|
|
if ($this->settings->resale_license) {
|
|
|
|
try {
|
2023-11-02 13:10:29 +00:00
|
|
|
CheckResaleLicense::run();
|
2023-12-07 18:06:32 +00:00
|
|
|
$this->dispatch('reloadWindow');
|
2023-09-11 15:36:30 +00:00
|
|
|
} catch (\Throwable $e) {
|
2024-06-10 20:43:34 +00:00
|
|
|
session()->flash('error', 'Something went wrong. Please contact support. <br>Error: '.$e->getMessage());
|
2023-09-11 15:36:30 +00:00
|
|
|
ray($e->getMessage());
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-12-27 15:45:01 +00:00
|
|
|
return redirect()->route('settings.license');
|
2023-07-14 09:27:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|