Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iris-it/lmod-authz
https://github.com/iris-it/lmod-authz
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iris-it/lmod-authz
- Owner: iris-it
- Created: 2017-08-22T09:03:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T10:00:24.000Z (almost 7 years ago)
- Last Synced: 2023-07-15T03:38:53.524Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Authz Module
Documentation du module d'authentification et d'authorisation
## Fonctionnalités
#### Guest
- Sign up ✓
- Sign in ✓
- Forgot password ✓
- Reset password ✓#### User
- Edit account information ✓
- Edit account password ✓#### Admin
- List of users
-- Create user ✓
-- Edit user ✓
-- Enable / Disable user
-- Send password on new user ✓
-- Assign role to user ✓- List of permissions
-- Parse from source file ✓
-- Edit descriptions- List of roles
-- Create role
-- Edit role
--- Assign permissions to role## Install
Begin by installing this package through Composer. Edit your project's composer.json file to require laravelcollective/html.
composer require `"laravelcollective/html":"^5.4.0"`
Next, add your new provider to the providers array of config/app.php:
```php
'providers' => [
// ...
Collective\Html\HtmlServiceProvider::class,
Irisit\Authz\AuthzServiceProvider::class,
// ...
],
```Finally, add two class aliases to the aliases array of config/app.php:
```php
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
// ...
],
```Replace all the in the `App\User::class`
```
string('firstname');
$table->string('lastname');
```Replace the line in `App\Http\Kernel.php`
`'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,`
by
`'guest' => \Irisit\Authz\Http\Middleware\RedirectIfAuthenticated::class,`
And add at the end ( after guest )
`'role' => \Irisit\Authz\Http\Middleware\RedirectIfNotRole::class,`so you can use the middleware 'role' to protect a route or a group like this `middleware => 'role:admin,manager'`
Run
`php artisan db:seed --class=Irisit\Authz\Database\Seeds\DatabaseSeeder`
Add to config/filesystem.php
```
'base' => [
'driver' => 'local',
'root' => base_path() . DIRECTORY_SEPARATOR,
],
```Add this to app/Exceptions/Handler.php
```php
/**
* @override
* @param \Illuminate\Http\Request $request
* @param AuthenticationException $exception
* @return \Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse|\Illuminate\Http\Response
*/
protected function unauthenticated($request, AuthenticationException $exception)
{
return $request->expectsJson()
? response()->json(['message' => 'Unauthenticated.'], 401)
: redirect()->guest(route('authz.get_login'));
}
```And run `php artisan vendor:publish --provider="Irisit\Authz\AuthzServiceProvider"` to get the configuration file and the seeder file
For the seeder add `$this->call(RoleTableSeeder::class);` to the `/database/seeders/DatabaseSeeder.php`