2017 © Pedro Peláez
 

yii2-extension module-user-management

User with improved RBAC

image

mauztor/module-user-management

User with improved RBAC

  • Sunday, April 22, 2018
  • by mauztor
  • Repository
  • 1 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 107 Forks
  • 0 Open issues
  • 20 Versions
  • 0 % Grown

The README.md

User management module for Yii 2, (*1)

===== forked from webvimark/user-management, (*2)

Perks

  • User management
  • RBAC (roles, permissions and stuff) with web interface
  • Registration, authorization, password recovery and so on
  • Visit log
  • Optimised (zero DB queries during usual user workflow)
  • Nice widgets like GhostMenu or GhostHtml::a where elements are visible only if user has access to route where they point

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

composer require webvimark/module-user-management

or add, (*5)

"mauztor/module-user-management": "^1"

to the require section of your composer.json file., (*6)

Configuration

1) In your config/web.php, (*7)


'components'=>[ 'user' => [ 'class' => 'mauztor\modules\UserManagement\components\UserConfig', // Comment this if you don't want to record user logins 'on afterLogin' => function($event) { \mauztor\modules\UserManagement\models\UserVisitLog::newVisitor($event->identity->id); } ], ], 'modules'=>[ 'user-management' => [ 'class' => 'mauztor\modules\UserManagement\UserManagementModule', // 'enableRegistration' => true, // Add regexp validation to passwords. Default pattern does not restrict user and can enter any set of characters. // The example below allows user to enter : // any set of characters // (?=\S{8,}): of at least length 8 // (?=\S*[a-z]): containing at least one lowercase letter // (?=\S*[A-Z]): and at least one uppercase letter // (?=\S*[\d]): and at least one number // $: anchored to the end of the string //'passwordRegexp' => '^\S*(?=\S{8,})(?=\S*[a-z])(?=\S*[A-Z])(?=\S*[\d])\S*$', // Here you can set your handler to change layout for any controller or action // Tip: you can use this event in any module 'on beforeAction'=>function(yii\base\ActionEvent $event) { if ( $event->action->uniqueId == 'user-management/auth/login' ) { $event->action->controller->layout = 'loginLayout.php'; }; }, ], ],

To learn about events check:, (*8)

  • http://www.yiiframework.com/doc-2.0/guide-concept-events.html
  • http://www.yiiframework.com/doc-2.0/guide-concept-configurations.html#configuration-format

Layout handler example in AuthHelper::layoutHandler(), (*9)

To see full list of options check UserManagementModule file, (*10)

2) In your config/console.php (this is needed for migrations and working with console), (*11)


'modules'=>[ 'user-management' => [ 'class' => 'mauztor\modules\UserManagement\UserManagementModule', 'controllerNamespace'=>'vendor\mauztor\modules\UserManagement\controllers', // To prevent yii help from crashing ], ],

3) Run migrations, (*12)


./yii migrate --migrationPath=vendor/mauztor/module-user-management/migrations/

4) In you base controller, (*13)


public function behaviors() { return [ 'ghost-access'=> [ 'class' => 'mauztor\modules\UserManagement\components\GhostAccessControl', ], ]; }

Where you can go


false, 'activateParents'=>true, 'items' => [ [ 'label' => 'Backend routes', 'items'=>UserManagementModule::menuItems() ], [ 'label' => 'Frontend routes', 'items'=>[ ['label'=>'Login', 'url'=>['/user-management/auth/login']], ['label'=>'Logout', 'url'=>['/user-management/auth/logout']], ['label'=>'Registration', 'url'=>['/user-management/auth/registration']], ['label'=>'Change own password', 'url'=>['/user-management/auth/change-own-password']], ['label'=>'Password recovery', 'url'=>['/user-management/auth/password-recovery']], ['label'=>'E-mail confirmation', 'url'=>['/user-management/auth/confirm-email']], ], ], ], ]); ?>

First steps

From the menu above at first you'll se only 2 element: "Login" and "Logout" because you have no permission to visit other urls and to render menu we using GhostMenu::widget(). It's render only element that active user can visit., (*14)

Also same functionality has GhostNav::widget() and GhostHtml:a(), (*15)

1) Login as superadmin/superadmin, (*16)

2) Go to "Permissions" and play there, (*17)

3) Go to "Roles" and play there, (*18)

4) Go to "User" and play there, (*19)

5) Relax, (*20)

Usage

You controllers may have two properties that will make whole controller or selected action accessible to everyone, (*21)

public $freeAccess = true;

Or, (*22)

public $freeAccessActions = ['first-action', 'another-action'];

Here are list of the useful helpers. For detailed explanation look in the corresponding functions., (*23)


User::hasRole($roles, $superAdminAllowed = true) User::hasPermission($permission, $superAdminAllowed = true) User::canRoute($route, $superAdminAllowed = true) User::assignRole($userId, $roleName) User::revokeRole($userId, $roleName) User::getCurrentUser($fromSingleton = true)

Role, Permission and Route all have following methods, (*24)


Role::create($name, $description = null, $groupCode = null, $ruleName = null, $data = null) Role::addChildren($parentName, $childrenNames, $throwException = false) Role::removeChildren($parentName, $childrenNames)

Events

Events can be handled via config file like following, (*25)


'modules'=>[ 'user-management' => [ 'class' => 'mauztor\modules\UserManagement\UserManagementModule', 'on afterRegistration' => function(UserAuthEvent $event) { // Here you can do your own stuff like assign roles, send emails and so on }, ], ],

List of supported events can be found in UserAuthEvent class, (*26)

FAQ

Question: Do you have API docs?, (*27)

Answer: Check this one http://opensource.id5.com.br/webvimark/doc/index.html (Credits to lukBarros), (*28)

Question: I want users to register and login with they e-mails! Mmmmm... And they should confirm it too!, (*29)

Answer: See configuration properties $useEmailAsLogin and $emailConfirmationRequired, (*30)

Question: I want to have profile for user with avatar, birthday and stuff. What should I do ?, (*31)

Answer: Profiles are to project-specific, so you'll have to implement them yourself (but you can find example here - https://github.com/webvimark/user-management/wiki/Profile-and-custom-registration). Here is how to do it without modifying this module, (*32)

1) Create table and model for profile, that have user_id (connect with "user" table), (*33)

2) Check AuthController::actionRegistration() how it works (you can skip this part), (*34)

3) Define your layout for registration. Check example in AuthHelper::layoutHandler(). Now use theming to change registraion.php file, (*35)

4) Define your own UserManagementModule::$registrationFormClass. In this class you can do whatever you want like validating custom forms and saving profiles, (*36)

5) Create your controller where user can view profiles, (*37)

The Versions

22/04 2018

dev-master

9999999-dev

User with improved RBAC

  Sources   Download

The Requires

 

22/04 2018

v1.0.17

1.0.17.0

User with improved RBAC

  Sources   Download

The Requires