2 /***************************************************************
5 * (c) 2004-2005 René Fritz <r.fritz@colorcube.de>
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Service 'User authentication' for the 'sv' extension.
30 * @author René Fritz <r.fritz@colorcube.de>
33 * [CLASS/FUNCTION INDEX of SCRIPT]
37 * 56: class tx_sv_auth extends tx_sv_authbase
38 * 64: function getUser()
39 * 89: function authUser($user)
40 * 129: function getGroups($user, $knownGroups)
43 * (This index is automatically created/updated by the extension "extdeveval")
50 * Authentication services class
52 * @author René Fritz <r.fritz@colorcube.de>
56 class tx_sv_auth
extends tx_sv_authbase
{
60 * Find a user (eg. look up the user record in database when a login is sent)
62 * @return mixed user array or false
67 if ($this->login
['status']=='login' AND $this->login
['uident']) {
69 $user = $this->fetchUserRecord($this->login
['uname']);
71 if(!is_array($user)) {
72 // Failed login attempt (no username found)
73 $this->writelog(255,3,3,2,
74 "Login-attempt from %s (%s), username '%s' not found!!",
75 Array($this->authInfo
['REMOTE_ADDR'], $this->authInfo
['REMOTE_HOST'], $this->login
['uname'])); // Logout written to log
77 if ($this->writeDevLog
) t3lib_div
::devLog('User found: '.t3lib_div
::arrayToLogString($user, array($this->db_user
['userid_column'],$this->db_user
['username_column'])), 'tx_sv_auth');
84 * Authenticate a user (Check various conditions for the user that might invalidate its authentication, eg. password match, domain, IP, etc.)
86 * @param array Data of user.
89 function authUser($user) {
92 if ($this->login
['uident'] && $this->login
['uname']) {
94 // Checking password match for user:
95 $OK = $this->compareUident($user, $this->login
);
98 // Failed login attempt (wrong password) - write that to the log!
99 if ($this->writeAttemptLog
) {
100 $this->writelog(255,3,3,1,
101 "Login-attempt from %s (%s), username '%s', password not accepted!",
102 Array($this->authInfo
['REMOTE_ADDR'], $this->authInfo
['REMOTE_HOST'], $this->login
['uname']));
104 if ($this->writeDevLog
) t3lib_div
::devLog('Password not accepted: '.$this->login
['uident'], 'tx_sv_auth', 2);
107 // Checking the domain (lockToDomain)
108 if ($OK && $user['lockToDomain'] && $user['lockToDomain']!=$this->authInfo
['HTTP_HOST']) {
109 // Lock domain didn't match, so error:
110 if ($this->writeAttemptLog
) {
111 $this->writelog(255,3,3,1,
112 "Login-attempt from %s (%s), username '%s', locked domain '%s' did not match '%s'!",
113 Array($this->authInfo
['REMOTE_ADDR'], $this->authInfo
['REMOTE_HOST'], $user[$this->db_user
['username_column']], $user['lockToDomain'], $this->authInfo
['HTTP_HOST']));
123 * Find usergroup records, currently only for frontend
125 * @param array Data of user.
126 * @param array Group data array of already known groups. This is handy if you want select other related groups. Keys in this array are unique IDs of those groups.
127 * @return mixed Groups array, keys = uid which must be unique
129 function getGroups($user, $knownGroups) {
130 global $TYPO3_CONF_VARS;
132 $groupDataArr = array();
134 if($this->mode
=='getGroupsFE') {
138 if (is_array($user) && $user[$this->db_user
['usergroup_column']]) {
139 $groups = t3lib_div
::intExplode(',',$user[$this->db_user
['usergroup_column']]);
142 // ADD group-numbers if the IPmask matches.
143 if (is_array($TYPO3_CONF_VARS['FE']['IPmaskMountGroups'])) {
144 foreach($TYPO3_CONF_VARS['FE']['IPmaskMountGroups'] as $IPel) {
145 if ($this->authInfo
['REMOTE_ADDR'] && $IPel[0] && t3lib_div
::cmpIP($this->authInfo
['REMOTE_ADDR'],$IPel[0])) {$groups[]=intval($IPel[1]);}
149 $groups = array_unique($groups);
151 if (count($groups)) {
152 $list = implode(',',$groups);
154 if ($this->writeDevLog
) t3lib_div
::devLog('Get usergroups with id: '.$list, 'tx_sv_auth');
156 $lockToDomain_SQL = ' AND (lockToDomain=\'\' OR lockToDomain=\''.$this->authInfo
['HTTP_HOST'].'\')';
157 if (!$this->authInfo
['showHiddenRecords']) $hiddenP = 'AND hidden=0 ';
158 $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', $this->db_groups
['table'], 'deleted=0 '.$hiddenP.' AND uid IN ('.$list.')'.$lockToDomain_SQL);
159 while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
160 $groupDataArr[$row['uid']] = $row;
162 if ($res) $GLOBALS['TYPO3_DB']->sql_free_result($res);
165 if ($this->writeDevLog
) t3lib_div
::devLog('No usergroups found.', 'tx_sv_auth', 2);
167 } elseif ($this->mode
=='getGroupsBE') {
169 # Get the BE groups here
170 # still needs to be implemented in t3lib_userauthgroup
173 return $groupDataArr;
179 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/sv/class.tx_sv_auth.php']) {
180 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/sv/class.tx_sv_auth.php']);