63 lines
1.2 KiB
PHP
63 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Install;
|
|
|
|
use App\Abstracts\Job;
|
|
use App\Traits\Modules;
|
|
use App\Utilities\Console;
|
|
|
|
class DisableModule extends Job
|
|
{
|
|
use Modules;
|
|
|
|
protected $alias;
|
|
|
|
protected $company_id;
|
|
|
|
protected $locale;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @param $alias
|
|
* @param $company_id
|
|
* @param $locale
|
|
*/
|
|
public function __construct($alias, $company_id, $locale = null)
|
|
{
|
|
$this->alias = $alias;
|
|
$this->company_id = $company_id;
|
|
$this->locale = $locale ?: company($company_id)->locale;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function handle()
|
|
{
|
|
$this->authorize();
|
|
|
|
event(new \App\Events\Module\Disabling($this->alias, $this->company_id));
|
|
|
|
$command = "module:disable {$this->alias} {$this->company_id} {$this->locale}";
|
|
|
|
$result = Console::run($command);
|
|
|
|
if ($result !== true) {
|
|
throw new \Exception($result);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determine if this action is applicable.
|
|
*/
|
|
public function authorize(): void
|
|
{
|
|
if (! $this->moduleExists($this->alias)) {
|
|
throw new \Exception("Module [{$this->alias}] not found.");
|
|
}
|
|
}
|
|
}
|