123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/CAS');
- class CasAuthenticationPlugin extends AuthenticationPlugin
- {
- public $server;
- public $port = 443;
- public $path = '';
- public $takeOverLogin = false;
- function checkPassword($username, $password)
- {
- global $casTempPassword;
- return ($casTempPassword == $password);
- }
- function onAutoload($cls)
- {
- switch ($cls)
- {
- case 'phpCAS':
- require_once(INSTALLDIR.'/plugins/CasAuthentication/extlib/CAS.php');
- return false;
- }
-
- return parent::onAutoload($cls);
- }
- function onArgsInitialize(&$args)
- {
- if($this->takeOverLogin && $args['action'] == 'login')
- {
- $args['action'] = 'caslogin';
- }
- }
- function onStartInitializeRouter($m)
- {
- $m->connect('main/cas', array('action' => 'caslogin'));
- return true;
- }
- function onEndLoginGroupNav($action)
- {
- $action_name = $action->trimmed('action');
- $action->menuItem(common_local_url('caslogin'),
-
- _m('CAS'),
-
- _m('Login or register with CAS.'),
- $action_name === 'caslogin');
- return true;
- }
- function onEndShowPageNotice($action)
- {
- $name = $action->trimmed('action');
- switch ($name)
- {
- case 'login':
-
-
-
- $instr = _m('(Have an account with CAS? ' .
- 'Try our [CAS login](%%action.caslogin%%)!)');
- break;
- default:
- return true;
- }
- $output = common_markup_to_html($instr);
- $action->raw($output);
- return true;
- }
- function onLoginAction($action, &$login)
- {
- switch ($action)
- {
- case 'caslogin':
- $login = true;
- return false;
- default:
- return true;
- }
- }
- function onInitializePlugin(){
- parent::onInitializePlugin();
- if(!isset($this->server)){
-
- throw new Exception(_m("Specifying a server is required."));
- }
- if(!isset($this->port)){
-
- throw new Exception(_m("Specifying a port is required."));
- }
- if(!isset($this->path)){
-
- throw new Exception(_m("Specifying a path is required."));
- }
-
-
-
- global $casSettings;
- $casSettings = array();
- $casSettings['server']=$this->server;
- $casSettings['port']=$this->port;
- $casSettings['path']=$this->path;
- $casSettings['takeOverLogin']=$this->takeOverLogin;
- }
- function onPluginVersion(&$versions)
- {
- $versions[] = array('name' => 'CAS Authentication',
- 'version' => GNUSOCIAL_VERSION,
- 'author' => 'Craig Andrews',
- 'homepage' => 'http://status.net/wiki/Plugin:CasAuthentication',
-
- 'rawdescription' => _m('The CAS Authentication plugin allows for StatusNet to handle authentication through CAS (Central Authentication Service).'));
- return true;
- }
- }
|