2020-01-07 00:21:33 +03:00

162 lines
4.8 KiB
PHP

<?php
namespace Akaunting\Module\Commands;
use App\Models\Auth\Permission;
use App\Models\Auth\Role;
use App\Models\Module\Module;
use App\Models\Module\ModuleHistory;
use App\Utilities\Reports;
use App\Utilities\Widgets;
use Illuminate\Console\Command;
use Illuminate\Support\Str;
use Symfony\Component\Console\Input\InputArgument;
class InstallCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'module:install {alias} {company_id}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Install the specified module.';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$alias = Str::kebab($this->argument('alias'));
$company_id = $this->argument('company_id');
$old_company_id = session('company_id');
session(['company_id' => $company_id]);
$module = module($alias);
$model = Module::create([
'company_id' => $company_id,
'alias' => $alias,
'enabled' => '1',
]);
ModuleHistory::create([
'company_id' => $company_id,
'module_id' => $model->id,
'category' => $module->get('category', 'payment-method'),
'version' => $module->get('version'),
'description' => trans('modules.installed', ['module' => $alias]),
]);
$this->call('cache:clear');
// Update database
$this->call('migrate', ['--force' => true]);
event(new \App\Events\Module\Installed($alias, $company_id));
if (!empty($module->get('reports')) || !empty($module->get('widgets')) || !empty($module->get('settings'))) {
$this->updatePermissions($module);
}
session()->forget('company_id');
if (!empty($old_company_id)) {
session(['company_id' => $old_company_id]);
}
$this->info('Module installed!');
}
/**
* Get the console command arguments.
*
* @return array
*/
protected function getArguments()
{
return array(
array('alias', InputArgument::REQUIRED, 'Module alias.'),
array('company_id', InputArgument::REQUIRED, 'Company ID.'),
);
}
protected function updatePermissions($module)
{
$permissions = [];
if (!empty($module->get('reports'))) {
foreach ($module->get('reports') as $class) {
if (!class_exists($class)) {
continue;
}
$name = Reports::getPermission($class);
$display_name = (new $class())->getDefaultName();
$permissions[] = Permission::firstOrCreate([
'name' => $name,
'display_name' => 'Read ' . $module->getName() . ' Reports ' . $display_name,
'description' => 'Read ' . $module->getName() . ' Reports ' . $display_name,
]);
}
}
if (!empty($module->get('widgets'))) {
foreach ($module->get('widgets') as $class) {
if (!class_exists($class)) {
continue;
}
$name = Widgets::getPermission($class);
$display_name = (new $class())->getDefaultName();
$permissions[] = Permission::firstOrCreate([
'name' => $name,
'display_name' => 'Read ' . $module->getName() . ' Widgets ' . $display_name,
'description' => 'Read ' . $module->getName() . ' Widgets ' . $display_name,
]);
}
}
if (!empty($module->get('settings'))) {
$permissions[] = Permission::firstOrCreate([
'name' => 'read-' . $module->getAlias() . '-settings',
'display_name' => 'Read ' . $module->getName() . ' Settings',
'description' => 'Read ' . $module->getName() . ' Settings',
]);
$permissions[] = Permission::firstOrCreate([
'name' => 'update-' . $module->getAlias() . '-settings',
'display_name' => 'Update ' . $module->getName() . ' Settings',
'description' => 'Update ' . $module->getName() . ' Settings',
]);
}
// Attach permission to roles
$roles = Role::all()->filter(function ($r) {
return $r->hasPermission('read-admin-panel');
});
foreach ($roles as $role) {
foreach ($permissions as $permission) {
if ($role->hasPermission($permission->name)) {
continue;
}
$role->attachPermission($permission);
}
}
}
}