]>
src.bluestatic.org Git - bugdar.git/blob - includes/auth/auth.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2004-2009 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()
114 $this->authDb
= new BSDBMySQLI();
116 include 'includes/auth/config.php';
117 $this->authDb
->connect(
118 $config['auth']['dbServer'],
119 $config['auth']['dbUser'],
120 $config['auth']['dbPassword'],
121 $config['auth']['dbName']
125 // ###################################################################
127 * Returns the sanitized value of the user ID or unique identifier
128 * found in the cookie of an already-authenticated user.
130 function _fetchCookieUniqueId() {}
132 // ###################################################################
134 * Returns the sanitized value of the authentication key or cookie-safe
135 * password found in the cookies of an already-authenticated user.
137 function _fetchCookiePassword() {}
139 // ###################################################################
141 * Returns an array of user data fetched using the user information
142 * values found in cookies. It should NOT be responsible for verifying
143 * the authentication information, but only fetching it.
145 function _fetchUserUsingCookies() {}
147 // ###################################################################
149 * Returns TRUE if the cookie data values are valid in the data array
150 * returned from _fetchUserUsingCookies(), and FALSE if they are not.
152 function _verifyCookieData() {}
154 // ###################################################################
156 * Authenticates the user using cookie data. You shouldn't need to
157 * customize this method if you implement all the helpers correctly.
158 * Returns TRUE if the cookies are valid and the user is logged in.
160 function authenticateCookies()
162 if (!$this->_fetchCookieUniqueId() OR !$this->_fetchCookiePassword())
167 $this->authUser
= $this->_fetchUserUsingCookies();
168 if (!$this->authUser
)
170 $this->authUser
= null;
174 if ($this->_verifyCookieData())
176 $this->_setCookies(true);
177 $this->bugdarUser
= $this->_fetchBugdarUserFromAuthUser();
178 if ($this->_syncBugdarUser())
180 $this->bugdarUser
= $this->_fetchBugdarUserFromAuthUser();
186 $this->authUser
= null;
187 $this->clearCookies();
192 // ###################################################################
194 * Returns an array with the authentication user information, found
195 * by the unique login identifier passed to the function.
197 function _fetchUserWithIdentifier($string) {}
199 // ###################################################################
201 * Verifies that the authUser's password matches the plain-text password
202 * passed to this function. This is basically the transformation of
203 * the plaintext to the hashed password and the result of the comparison.
205 function _verifyLoginUser($password) {}
207 // ###################################################################
209 * Authenticates a user at login from two keys: an identifier and
210 * a password. In Bugdar, the identifier is an email, but it can be
211 * any unique string found in the authentication database. Returns
212 * TRUE if the authentication is successful, and FALSE if not. Also
213 * determines if the cookies are sticky ("rememember me" login)
215 function authenticateLogin($string, $password, $sticky = false)
217 $this->authUser
= $this->_fetchUserWithIdentifier($string);
219 if (!$this->authUser
)
221 $this->authUser
= null;
225 if ($this->_verifyLoginUser($password))
227 $this->_setCookies($sticky);
228 $this->bugdarUser
= $this->_fetchBugdarUserFromAuthUser();
229 $this->_syncBugdarUser();
234 $this->authUser
= null;
239 // ###################################################################
241 * Returns the BUGDAR user array from the data in the AUTHENTICATION user
242 * array. If the Bugdar user does not exist, call _createBugdarUser()
243 * to add the user into the Bugdar database. This is necessary so Bugdar options
244 * can be saved in the Bugdar database (and not in the auth one), however
245 * authentication details will NOT be stored in the Bugdar database.
247 function _fetchBugdarUserFromAuthUser()
249 $user = $this->db
->queryFirst("SELECT * FROM " . TABLE_PREFIX
. "user WHERE authid = '" . $this->authUser
[ $this->fieldMap
['authid'] ] . "'");
252 $this->_createBugdarUser();
253 return $this->_fetchBugdarUserFromAuthUser();
258 // ###################################################################
260 * Creates a Bugdar user with the authentication details specified in
261 * the auth array and returns it. You need to call this in
262 * _fetchBugdarUserFromAuthUser() and use the UserAPI to create the user.
263 * This will create a new user in Bugdar with the data from the authentication DB
264 * with the fields specified in fieldMap.
266 function _createBugdarUser()
268 $user = new UserAPI($this->registry
);
270 // if the email already exists in the DB, it must be the same person so just hook up the authid
271 if ($check = $this->db
->queryFirst("SELECT * FROM " . TABLE_PREFIX
. "user WHERE email = '" . $this->db
->escape_string($this->authUser
[ $this->fieldMap
['email'] ]) . "'"))
273 $user->set('userid', $check['userid']);
274 $user->set_condition();
275 $user->set('authid', $this->authUser
[ $this->fieldMap
['authid'] ]);
279 return $user->record
;
283 $user = new UserAPI($this->registry
);
284 foreach ($this->fieldMap
AS $bugdar => $authdb)
286 $user->set($bugdar, $this->authUser
["$authdb"]);
288 $user->set('usergroupid', 2);
289 $user->set('password', $this->registry->funct->rand());
292 return $user->values;
296 // ###################################################################
298 * Syncs a Bugdar user's fieldMap'ed values to the authentication DB's
299 * values. This allows the users to stay mostly-in-sync for the most
300 * basic of information (like email, timezone, etc.). Passwords are
301 * NOT synced. Returns TRUE if the user data was changed.
303 function _syncBugdarUser()
305 $fields = $this->fieldMap;
306 unset($fields['authid']);
307 unset($fields['password']);
311 $user = new UserAPI($this->registry);
312 $user->set('userid', $this->bugdarUser['userid']);
313 $user->set_condition();
314 foreach ($fields AS $bugdar => $auth)
316 if ($this->bugdarUser["$bugdar"] != $this->authUser
["$auth"])
318 $user->set($bugdar, $this->authUser["$auth"]);
330 // ###################################################################
332 * Responsible for unsetting all authentication cookies because they
335 function clearCookies() {}
337 // ###################################################################
339 * Sets the authentication cookies; this is done both at login and
340 * for renewing the cookies upon successful cookie validation. The
341 * option it takes determines whether the cookies are sticky or not.
343 function _setCookies($permanent = false) {}