111 lines
2.9 KiB
PHP
111 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Vanguard\Http\Controllers\Web\Authorization;
|
|
|
|
use Exception;
|
|
use Illuminate\Contracts\View\Factory;
|
|
use Illuminate\View\View;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
use Vanguard\Http\Controllers\Controller;
|
|
use Vanguard\Http\Requests\Permission\CreatePermissionRequest;
|
|
use Vanguard\Http\Requests\Permission\UpdatePermissionRequest;
|
|
use Vanguard\Permission;
|
|
use Vanguard\Repositories\Permission\PermissionRepository;
|
|
use Vanguard\Repositories\Role\RoleRepository;
|
|
|
|
/**
|
|
* Class PermissionsController
|
|
* @package Vanguard\Http\Controllers
|
|
*/
|
|
class PermissionsController extends Controller
|
|
{
|
|
public function __construct(private RoleRepository $roles, private PermissionRepository $permissions)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Displays the page with all available permissions.
|
|
*
|
|
* @return Factory|View
|
|
*/
|
|
public function index()
|
|
{
|
|
return view('permission.index', [
|
|
'roles' => $this->roles->all(),
|
|
'permissions' => $this->permissions->all()
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Displays the form for creating new permission.
|
|
*
|
|
* @return Factory|View
|
|
*/
|
|
public function create()
|
|
{
|
|
return view('permission.add-edit', ['edit' => false]);
|
|
}
|
|
|
|
/**
|
|
* Store permission to database.
|
|
*
|
|
* @param CreatePermissionRequest $request
|
|
* @return mixed
|
|
*/
|
|
public function store(CreatePermissionRequest $request)
|
|
{
|
|
$this->permissions->create($request->all());
|
|
|
|
return redirect()->route('permissions.index')
|
|
->withSuccess(__('Permission created successfully.'));
|
|
}
|
|
|
|
/**
|
|
* Displays the form for editing specific permission.
|
|
*
|
|
* @param Permission $permission
|
|
* @return Factory|View
|
|
*/
|
|
public function edit(Permission $permission)
|
|
{
|
|
return view('permission.add-edit', [
|
|
'edit' => true,
|
|
'permission' => $permission
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Update specified permission.
|
|
*
|
|
* @param Permission $permission
|
|
* @param UpdatePermissionRequest $request
|
|
* @return mixed
|
|
*/
|
|
public function update(Permission $permission, UpdatePermissionRequest $request)
|
|
{
|
|
$this->permissions->update($permission->id, $request->all());
|
|
|
|
return redirect()->route('permissions.index')
|
|
->withSuccess(__('Permission updated successfully.'));
|
|
}
|
|
|
|
/**
|
|
* Destroy the permission if it is removable.
|
|
*
|
|
* @param Permission $permission
|
|
* @return mixed
|
|
* @throws Exception
|
|
*/
|
|
public function destroy(Permission $permission)
|
|
{
|
|
if (! $permission->removable) {
|
|
throw new NotFoundHttpException;
|
|
}
|
|
|
|
$this->permissions->delete($permission->id);
|
|
|
|
return redirect()->route('permissions.index')
|
|
->withSuccess(__('Permission deleted successfully.'));
|
|
}
|
|
}
|