0

我正在尝试制作一个 Codeigniter 3 应用程序来对 CAS 服务器进行身份验证。我用 Composer 安装了phpcas包,但我找不到任何有关如何执行此操作的详细信息或示例。我希望只能从身份验证用户访问此应用程序。

我相信我必须编辑一个配置文件,但我找不到任何可以写下 cas 服务器 url 等的文件。此外,在页面的控制器中,我必须以某种方式调用库,但我需要一些示例。

所以主要问题是我怎样才能在我的控制器方法中使用 phpcas 以及如何配置它?

我创建了一个控制器,里面有:

?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class AuthController extends CI_Controller {

public function actionLogin()
{
    $this->module->casService->forceAuthentication();
    $username = $this->module->casService->getUsername();
    $this->module->casService->getAttribute('mail')
    $this->module->casService->getAttribute('title')=='TEACHER';
    //$auth->assign($casRole, $user->id);    
    
}

public function actionLogout()
{
    $this->module->casService->logout(Url::home(true));
    // In case the logout fails (not authenticated)
    return $this->redirect(Url::home(true));
}

}
4

1 回答 1

0

我将以下行放到控制器文件中:

require_once(APPPATH . '/../vendor/autoload.php');

我初始化:

$phpCAS = new phpCAS;
phpCAS::client(CAS_VERSION_2_0, 'sso-test.sch.gr', 443, '', false);
于 2020-09-19T09:43:29.160 回答