Skip to content

leegoway/yii2-uic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-uic

User center extension for Yii2 framework

包含功能:

  • [登录] 接入用户中心的单点登录
  • [权限校验] 接入用户中心的权限校验

Installation

The preferred way to install this extension is through composer. Check the composer.json for this extension's requirements and dependencies.

To install, either run

$ php composer.phar require leegoway/yii2-uic "*"

or add

"leegoway/yii2-uic": "*"

to the require section of your composer.json file.

Usage

return [
    'components' => [
        'uicAuther' => [
            'class' => 'leegoway\uic\Auther',
            'domain' => 'autops.corp.elong.com',//cookie的domain属性
            'path' => '/',//cookie的路径
            'expire' => 7200 //超时时间
        ]
    ],
];

then in your controller which need auth, then add the following code:

use leegoway\uic\UicAuthFacade;

...
use UicAuthFacade;

Secondly, you can check permission like the following code:

Yii::$app->uicAuther->checkPermission($permissionId, $organizationId, [$username]); //$username default current login username

About

user center extension for Yii2 framework

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages