-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a6ceb0d
Showing
9 changed files
with
497 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Copyright (c) 2016, University of Freiburg, Chair of Algorithms and Data Structures. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<fieldset id="auth_cas_settings"> | ||
<legend>{L_CAS}</legend> | ||
<dl> | ||
<dt><label for="cas_server">{L_CAS_SERVER}{L_COLON}</label><br /><span>{L_CAS_SERVER_EXPLAIN}</span></dt> | ||
<dd><input type="text" id="cas_server" size="40" name="config[cas_server]" value="{AUTH_CAS_SERVER}" /></dd> | ||
</dl> | ||
<dl> | ||
<dt><label for="cas_port">{L_CAS_PORT}{L_COLON}</label><br /><span>{L_CAS_PORT_EXPLAIN}</span></dt> | ||
<dd><input type="text" id="cas_port" size="40" name="config[cas_port]" value="{AUTH_CAS_PORT}" /></dd> | ||
</dl> | ||
<dl> | ||
<dt><label for="cas_dn">{L_CAS_URI}{L_COLON}</label><br /><span>{L_CAS_URI_EXPLAIN}</span></dt> | ||
<dd><input type="text" id="cas_uri" size="40" name="config[cas_uri]" value="{AUTH_CAS_URI}" /></dd> | ||
</dl> | ||
<dl> | ||
<dt><label for="cas_uid">{L_CAS_VALIDATE}{L_COLON}</label><br /><span>{L_CAS_VALIDATE_EXPLAIN}</span></dt> | ||
<dd><input type="text" id="cas_validate" size="40" name="config[cas_validate]" value="{AUTH_CAS_VALIDATE}" /></dd> | ||
</dl> | ||
<dl> | ||
<dt><label for="cas_uid">{L_CAS_EMAIL_ATTRIBUTE}{L_COLON}</label><br /><span>{L_CAS_EMAIL_ATTRIBUTE_EXPLAIN}</span></dt> | ||
<dd><input type="text" id="cas_email_attribute" size="40" name="config[cas_email_attribute]" value="{AUTH_CAS_EMAIL_ATTRIBUTE}" /></dd> | ||
</dl> | ||
</fieldset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,308 @@ | ||
<?php | ||
/** | ||
* | ||
* @package phpBB Extension - CAS Auth | ||
* @copyright (c) 2016, University of Freiburg, Chair of Algorithms and Data Structures. | ||
* @license https://opensource.org/licenses/BSD-2-Clause BSD 2-Clause License | ||
* | ||
*/ | ||
|
||
namespace daphnetf\casauth\auth\provider; | ||
|
||
class cas extends \phpbb\auth\provider\base | ||
{ | ||
/** | ||
* phpBB passwords manager | ||
* | ||
* @var \phpbb\passwords\manager | ||
*/ | ||
protected $passwords_manager; | ||
protected $is_setup; | ||
|
||
/** | ||
* CAS Authentication Constructor | ||
* | ||
* @param \phpbb\db\driver\driver_interface $db Database object | ||
* @param \phpbb\config\config $config Config object | ||
* @param \phpbb\passwords\manager $passwords_manager Passwords manager object | ||
* @param \phpbb\user $user User object | ||
*/ | ||
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\config\config $config, \phpbb\passwords\manager $passwords_manager, \phpbb\user $user) | ||
{ | ||
require_once(dirname(__FILE__).'/../../vendor/phpCAS/CAS.php'); | ||
$this->db = $db; | ||
$this->config = $config; | ||
$this->passwords_manager = $passwords_manager; | ||
$this->user = $user; | ||
$this->is_setup = false; | ||
$this->setupCas(); | ||
} | ||
|
||
protected function setupCas() | ||
{ | ||
if ($this->is_setup) | ||
{ | ||
return true; | ||
} | ||
|
||
global $request; | ||
$request->enable_super_globals(); | ||
if (strlen((string) $this->config['cas_server']) < 1) { | ||
return false; | ||
} | ||
\phpCAS::client(CAS_VERSION_2_0, (string) $this->config['cas_server'], (int) $this->config['cas_port'], (string) $this->config['cas_uri']); | ||
|
||
if ($this->config['force_server_vars']) | ||
{ | ||
$service = $this->config['server_protocol'].$this->config['server_name'].$this->config['script_path']; | ||
\phpCAS::setFixedServiceURL($service); | ||
} | ||
|
||
/*if ($this->config['cas_validate'] == 0) | ||
\phpCAS::setNoCasServerValidation();*/ | ||
\phpCAS::setNoCasServerValidation(); | ||
|
||
if (defined('IN_LOGIN') && request_var('mode', '') == 'login') | ||
{ | ||
\phpCAS::forceAuthentication(); | ||
} | ||
$request->disable_super_globals(); | ||
$this->is_setup = true; | ||
return true; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function init() | ||
{ | ||
if (!@extension_loaded('curl')) | ||
{ | ||
return $this->user->lang['CAS_NO_CURL_EXTENSION']; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function login($username, $password) | ||
{ | ||
global $request; | ||
// do not allow empty password | ||
if (!$password) | ||
{ | ||
return array( | ||
'status' => LOGIN_ERROR_PASSWORD, | ||
'error_msg' => 'NO_PASSWORD_SUPPLIED', | ||
'user_row' => array('user_id' => ANONYMOUS), | ||
); | ||
} | ||
|
||
if (!$username) | ||
{ | ||
return array( | ||
'status' => LOGIN_ERROR_USERNAME, | ||
'error_msg' => 'LOGIN_ERROR_USERNAME', | ||
'user_row' => array('user_id' => ANONYMOUS), | ||
); | ||
} | ||
|
||
if (!@extension_loaded('curl')) | ||
{ | ||
return array( | ||
'status' => LOGIN_ERROR_EXTERNAL_AUTH, | ||
'error_msg' => 'CAS_NO_CURL_EXTENSION', | ||
'user_row' => array('user_id' => ANONYMOUS), | ||
); | ||
} | ||
|
||
$user_row = array('user_id' => ANONYMOUS); | ||
$status = LOGIN_ERROR_USERNAME; | ||
$error_msg = 'LOGIN_ERROR_USERNAME'; | ||
if($this->setupCas()) | ||
{ | ||
$request->enable_super_globals(); | ||
if (!\phpCAS::isAuthenticated()) | ||
{ | ||
$user->session_kill(); | ||
$user->session_begin(); | ||
} | ||
\phpCAS::forceAuthentication(); | ||
|
||
if (\phpCAS::isAuthenticated()) { | ||
$user_row = $this->get_user_row(\phpCAS::getUser(), $password); | ||
if ($user_row['user_id'] != ANONYMOUS) { | ||
$error_msg = false; | ||
$status = LOGIN_SUCCESS; | ||
} | ||
} | ||
$request->disable_super_globals(); | ||
} | ||
|
||
return array('status' => $status, 'error_msg' => $error_msg, 'user_row' => $user_row); | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function autologin() | ||
{ | ||
global $request; | ||
$result = array(); | ||
if($this->setupCas()) | ||
{ | ||
$request->enable_super_globals(); | ||
if (!defined('IN_LOGIN') && !\phpCAS::isAuthenticated()) | ||
\phpCAS::checkAuthentication(); | ||
if (\phpCAS::isAuthenticated()) | ||
$result = $this->get_user_row(\phpCAS::getUser()); | ||
$request->disable_super_globals(); | ||
} | ||
return $result; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function logout($data, $new_session) | ||
{ | ||
global $request; | ||
if($this->setupCas()) | ||
{ | ||
$request->enable_super_globals(); | ||
\phpCAS::logout(); | ||
$request->disable_super_globals(); | ||
} | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function validate_session($user) | ||
{ | ||
global $request; | ||
$result = false; | ||
if($this->setupCas()) | ||
{ | ||
$request->enable_super_globals(); | ||
if (!defined('IN_LOGIN') or request_var('mode', '') != 'login') | ||
$result = \phpCAS::isAuthenticated(); | ||
$request->disable_super_globals(); | ||
} | ||
return $result; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function acp() | ||
{ | ||
// These are fields required in the config table | ||
return array( | ||
'cas_server', 'cas_port', 'cas_uri', 'cas_validate', 'cas_email_attribute', | ||
); | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function get_acp_template($new_config) | ||
{ | ||
return array( | ||
'TEMPLATE_FILE' => '@daphnetf_casauth/auth_provider_cas.html', | ||
'TEMPLATE_VARS' => array( | ||
'AUTH_CAS_SERVER' => $new_config['cas_server'], | ||
'AUTH_CAS_PORT' => $new_config['cas_port'], | ||
'AUTH_CAS_URI' => $new_config['cas_uri'], | ||
'AUTH_CAS_VALIDATE' => $new_config['cas_validate'], | ||
'AUTH_CAS_EMAIL_ATTRIBUTE' => $new_config['cas_email_attribute'], | ||
), | ||
); | ||
} | ||
|
||
protected function get_user_row($username, $password='') | ||
{ | ||
global $db, $phpbb_root_path, $phpEx; | ||
$username_clean = utf8_clean_string($username); | ||
$user_row = array('user_id' => ANONYMOUS); | ||
$sql ='SELECT * | ||
FROM ' . USERS_TABLE . " | ||
WHERE username_clean = '" . $db->sql_escape($username_clean) . "'"; | ||
$result = $db->sql_query($sql); | ||
$row = $db->sql_fetchrow($result); | ||
$db->sql_freeresult($result); | ||
|
||
if ($row) | ||
{ | ||
if ( !($row['user_type'] == USER_INACTIVE || $row['user_type'] == USER_IGNORE) ) | ||
$user_row = $row; | ||
} | ||
else | ||
{ | ||
// retrieve default group id | ||
$sql = 'SELECT group_id | ||
FROM ' . GROUPS_TABLE . " | ||
WHERE group_name = '" . $db->sql_escape('REGISTERED') . "' | ||
AND group_type = " . GROUP_SPECIAL; | ||
$result = $db->sql_query($sql); | ||
$row = $db->sql_fetchrow($result); | ||
$db->sql_freeresult($result); | ||
|
||
if (!$row) | ||
{ | ||
trigger_error('NO_GROUP'); | ||
} | ||
|
||
// generate user account data | ||
$user_row = array( | ||
'username' => $username, | ||
'username_clean' => $username_clean, | ||
'user_password' => $this->passwords_manager->hash($password), | ||
'user_email' => '', | ||
'group_id' => (int) $row['group_id'], | ||
'user_type' => USER_NORMAL, | ||
'user_ip' => $this->user->ip, | ||
'user_new' => ($this->config['new_member_post_limit']) ? 1 : 0, | ||
); | ||
// we are going to use the user_add function so include functions_user.php if it wasn't defined yet | ||
if (!function_exists('user_add')) | ||
{ | ||
include($phpbb_root_path . 'includes/functions_user.' . $phpEx); | ||
} | ||
user_add($user_row); | ||
// reload user data | ||
$sql ='SELECT * | ||
FROM ' . USERS_TABLE . " | ||
WHERE username_clean = '" . $db->sql_escape(utf8_clean_string($username)) . "'"; | ||
$result = $db->sql_query($sql); | ||
$user_row = $db->sql_fetchrow($result); | ||
$db->sql_freeresult($result); | ||
} | ||
if ( isset($user_row['user_id']) && $user_row['user_id'] != ANONYMOUS ) { | ||
$this->setupCas(); | ||
$attributes = \phpCAS::getAttributes(); | ||
$attributes[$this->config['cas_email_attribute']] = strtolower($attributes[$this->config['cas_email_attribute']]); | ||
$update = ''; | ||
// Update user email to match value provided by cas | ||
if ( $user_row['user_email'] != $attributes[$this->config['cas_email_attribute']] ) { | ||
$user_row['user_email'] = $attributes[$this->config['cas_email_attribute']]; | ||
$user_row['user_email_hash'] = phpbb_email_hash($user_row['user_email']); | ||
$update .= "user_email='".$user_row['user_email']."', "; | ||
$update .= "user_email_hash='".$user_row['user_email_hash']."', "; | ||
} | ||
if ( strlen($password) ) { | ||
$user_row['user_password'] = $this->passwords_manager->hash($password); | ||
$update .= "user_password='".$user_row['user_password']."', "; | ||
} | ||
if ( strlen($update) ) { | ||
$sql = 'UPDATE ' . USERS_TABLE . " | ||
SET " . substr($update, 0, -2). " | ||
WHERE user_id = " . $user_row['user_id']; | ||
$result = $db->sql_query($sql); | ||
} | ||
} | ||
return $user_row; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "daphnetf/casauth", | ||
"type": "phpbb-extension", | ||
"description": "CAS Auth for phpBB 3.1 interfacing with phpCAS", | ||
"homepage": "https://github.com/daphnetf/casauth", | ||
"version": "0.9.9", | ||
"time": "2016-05-20", | ||
"license": "BSD-2-Clause", | ||
"authors": [{ | ||
"name": "Axel Lehmann", | ||
"email": "[email protected]", | ||
"homepage": "", | ||
"role": "Lead Developer" | ||
}], | ||
"support": { | ||
"irc": "irc://irc.freenode.org/daphnetf" | ||
}, | ||
"require": { | ||
"php": ">=5.5.9" | ||
}, | ||
"extra": { | ||
"display-name": "CAS auth", | ||
"soft-require": { | ||
"phpbb/phpbb": ">=3.1.9,<3.2.*@dev" | ||
}, | ||
"version-check": { | ||
"host": "daphnetf.github.io", | ||
"directory": "/casauth", | ||
"filename": "version.json" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
services: | ||
auth.provider.cas: | ||
class: daphnetf\casauth\auth\provider\cas | ||
arguments: | ||
- @dbal.conn | ||
- @config | ||
- @passwords.manager | ||
- @user | ||
tags: | ||
- { name: auth.provider } | ||
daphnetf.casauth.listener: | ||
class: daphnetf\casauth\event\main_listener | ||
arguments: | ||
- @template | ||
- @user | ||
tags: | ||
- { name: event.listener } |
Oops, something went wrong.