daxslab/yii2-cas-client

CAS authentication for Yii2

Installs: 52

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 3

Forks: 3

Type:yii2-extension

1.0.0 2018-07-25 03:24 UTC

This package is auto-updated.

Last update: 2024-04-06 01:48:13 UTC


README

Yii2 library for authentication and user local record update by CAS, using the library phpCAS.

Usage

  1. Add this to the project with composer require daxslab/yii2casclient

  2. Configure the Yii2 application, e.g. in backend/config/main.php :

    return [
        ...
        'session' => [
            'class' => 'poofe\yii2casclient\cas\Session',
            ...
        ],
        'modules' => [
            'cas' => [
                'class' => \daxslab\yii2casclient\cas\CasModule::class,
                'profileClass' => \common\models\Profile::class,
                'userClass' => \common\models\User::class,
                'config' => [
                'host' => '192.168.0.113',
                'port' => '8000',
                'path' => 'rrhh/default/user/cas',
                // optional parameters
                'certfile' => false, // empty, or path to a SSL cert, or false to ignore certs
                'debug' => true, // will add many logs into X/runtime/logs/cas.log
                ],
            ],
    
  3. Add actions that use this CAS module, e.g. in SiteController :

    public function actionLogin()
    {
        if (!Yii::$app->user->isGuest) {
            return $this->goHome();
        }
        return $this->redirect(['/cas/auth/login']);
    }
    
    public function actionLogout()
    {
        if (Yii::$app->user->isGuest) {
            return $this->redirect(['/cas/auth/logout']);
        }
        return $this->goHome();
    }
    

Notes

The user component that implements yii\web\IdentityInterface will be used to fetch the local profile after querying the CAS server. It means that if User is the App component and CAS returns a username of "bibendum", the authentication will be successful if and only if the result of User::findIdentity("bibendum") is not null.

The action path '/cas/auth/login' starts with the alias of the module, as defined in the application configuration, e.g. 'cas' in 'modules' => [ 'cas' => [ ... ] ].

The profileClass and userClass config parameters are used to update the profile and user table. The update proccess is based on the common attributes between the CAS server and the local tables profile and user.