]>
src.bluestatic.org Git - bugdar.git/blob - includes/auth/auth.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright ©2002-2007 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 require_once('./includes/api_user.php');
25 * Abstract Authentication
27 * This is an abstract class that is used to provide authentication for
31 * @copyright Copyright (c)2002 - 2007, Blue Static
39 * The database connection to AUTHENTICATE against; can be to a separate database
45 * The database connection to the BUGDAR database
51 * Array of user data from the AUTHENTICATION database
57 * Array of user data from the BUGDAR database
63 * Mapping of Bugdar fields to authentication database fields; these will be synced between databases upon login.
64 * AT THE VERY MINIMUM, YOU MUST MAP THESE FIELDS:
67 var $fieldMap = array(
69 'displayname' => null,
73 // ###################################################################
77 function __construct()
79 $this->db
= BSApp
::$db;
81 BSApp
::debug('authentication system: ' . get_class($this));
83 $this->_setupDatabase();
86 // ###################################################################
90 function Authentication()
95 // ###################################################################
97 * Returns the information array for the Bugdar user. This must be
98 * called after an authentication method.
100 function fetchBugdarUser()
102 return $this->bugdarUser
;
105 // ###################################################################
107 * Sets up the database to authenticate against. You can create a new
108 * database object here. Whatever you choose, you need to reference
109 * Authentication->authDb to the object
111 function _setupDatabase() {}
113 // ###################################################################
115 * Returns the sanitized value of the user ID or unique identifier
116 * found in the cookie of an already-authenticated user.
118 function _fetchCookieUniqueId() {}
120 // ###################################################################
122 * Returns the sanitized value of the authentication key or cookie-safe
123 * password found in the cookies of an already-authenticated user.
125 function _fetchCookiePassword() {}
127 // ###################################################################
129 * Returns an array of user data fetched using the user information
130 * values found in cookies. It should NOT be responsible for verifying
131 * the authentication information, but only fetching it.
133 function _fetchUserUsingCookies() {}
135 // ###################################################################
137 * Returns TRUE if the cookie data values are valid in the data array
138 * returned from _fetchUserUsingCookies(), and FALSE if they are not.
140 function _verifyCookieData() {}
142 // ###################################################################
144 * Authenticates the user using cookie data. You shouldn't need to
145 * customize this method if you implement all the helpers correctly.
146 * Returns TRUE if the cookies are valid and the user is logged in.
148 function authenticateCookies()
150 if (!$this->_fetchCookieUniqueId() OR !$this->_fetchCookiePassword())
155 $this->authUser
= $this->_fetchUserUsingCookies();
156 if (!$this->authUser
)
158 $this->authUser
= null;
162 if ($this->_verifyCookieData())
164 $this->_setCookies(true);
165 $this->bugdarUser
= $this->_fetchBugdarUserFromAuthUser();
166 if ($this->_syncBugdarUser())
168 $this->bugdarUser
= $this->_fetchBugdarUserFromAuthUser();
174 $this->authUser
= null;
175 $this->clearCookies();
180 // ###################################################################
182 * Returns an array with the authentication user information, found
183 * by the unique login identifier passed to the function.
185 function _fetchUserWithIdentifier($string) {}
187 // ###################################################################
189 * Verifies that the authUser's password matches the plain-text password
190 * passed to this function. This is basically the transformation of
191 * the plaintext to the hashed password and the result of the comparison.
193 function _verifyLoginUser($password) {}
195 // ###################################################################
197 * Authenticates a user at login from two keys: an identifier and
198 * a password. In Bugdar, the identifier is an email, but it can be
199 * any unique string found in the authentication database. Returns
200 * TRUE if the authentication is successful, and FALSE if not. Also
201 * determines if the cookies are sticky ("rememember me" login)
203 function authenticateLogin($string, $password, $sticky = false)
205 $this->authUser
= $this->_fetchUserWithIdentifier($string);
207 if (!$this->authUser
)
209 $this->authUser
= null;
213 if ($this->_verifyLoginUser($password))
215 $this->_setCookies($sticky);
216 $this->bugdarUser
= $this->_fetchBugdarUserFromAuthUser();
217 $this->_syncBugdarUser();
222 $this->authUser
= null;
227 // ###################################################################
229 * Returns the BUGDAR user array from the data in the AUTHENTICATION user
230 * array. If the Bugdar user does not exist, call _createBugdarUser()
231 * to add the user into the Bugdar database. This is necessary so Bugdar options
232 * can be saved in the Bugdar database (and not in the auth one), however
233 * authentication details will NOT be stored in the Bugdar database.
235 function _fetchBugdarUserFromAuthUser()
237 $user = $this->db
->queryFirst("SELECT * FROM " . TABLE_PREFIX
. "user WHERE authid = '" . $this->authUser
[ $this->fieldMap
['authid'] ] . "'");
240 return $this->_createBugdarUser();
245 // ###################################################################
247 * Creates a Bugdar user with the authentication details specified in
248 * the auth array and returns it. You need to call this in
249 * _fetchBugdarUserFromAuthUser() and use the UserAPI to create the user.
250 * This will create a new user in Bugdar with the data from the authentication DB
251 * with the fields specified in fieldMap.
253 function _createBugdarUser()
255 $user = new UserAPI($this->registry
);
257 // if the email already exists in the DB, it must be the same person so just hook up the authid
258 if ($check = $this->db
->queryFirst("SELECT * FROM " . TABLE_PREFIX
. "user WHERE email = '" . $this->db
->escape_string($this->authUser
[ $this->fieldMap
['email'] ]) . "'"))
260 $user->set('userid', $check['userid']);
261 $user->set_condition();
262 $user->set('authid', $this->authUser
[ $this->fieldMap
['authid'] ]);
266 return $user->record
;
270 $user = new UserAPI($this->registry
);
271 foreach ($this->fieldMap
AS $bugdar => $authdb)
273 $user->set($bugdar, $this->authUser
["$authdb"]);
275 $user->set('usergroupid', 2);
278 return $user->values;
282 // ###################################################################
284 * Syncs a Bugdar user's fieldMap'ed values to the authentication DB's
285 * values. This allows the users to stay mostly-in-sync for the most
286 * basic of information (like email, timezone, etc.). Passwords are
287 * NOT synced. Returns TRUE if the user data was changed.
289 function _syncBugdarUser()
291 $fields = $this->fieldMap;
292 unset($fields['authid']);
293 unset($fields['password']);
297 $user = new UserAPI($this->registry);
298 $user->set('userid', $this->bugdarUser['userid']);
299 $user->set_condition();
300 foreach ($fields AS $bugdar => $auth)
302 if ($this->bugdarUser["$bugdar"] != $this->authUser
["$auth"])
304 $user->set($bugdar, $this->authUser["$auth"]);
316 // ###################################################################
318 * Responsible for unsetting all authentication cookies because they
321 function clearCookies() {}
323 // ###################################################################
325 * Sets the authentication cookies; this is done both at login and
326 * for renewing the cookies upon successful cookie validation. The
327 * option it takes determines whether the cookies are sticky or not.
329 function _setCookies($permanent = false) {}
332 /*=====================================================================*\
333 || ###################################################################
336 || ###################################################################
337 \*=====================================================================*/