]>
src.bluestatic.org Git - bugdar.git/blob - includes/auth/auth.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] 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 [#]gpl[#] 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 - [#]year[#], Blue Static
39 * The database connection to AUTHENTICATE against; can be to a separate database
45 * The database connection to the BUGDAR database
57 * Array of user data from the AUTHENTICATION database
63 * Array of user data from the BUGDAR database
68 // ###################################################################
72 function __construct ()
76 $this- > registry
=& $bugsys ;
77 $this- > db
=& $bugsys- > db
;
79 $this- > _setupDatabase ();
82 // ###################################################################
84 * Returns the information array for the Bugdar user. This must be
85 * called after an authentication method.
87 function fetchBugdarUser ()
89 return $this- > bugdarUser
;
92 // ###################################################################
94 * Sets up the database to authenticate against. You can create a new
95 * database object here. Whatever you choose, you need to reference
96 * Authentication->authDb to the object
98 function _setupDatabase () {}
100 // ###################################################################
102 * Returns the sanitized value of the user ID or unique identifier
103 * found in the cookie of an already-authenticated user.
105 function _fetchCookieUniqueId () {}
107 // ###################################################################
109 * Returns the sanitized value of the authentication key or cookie-safe
110 * password found in the cookies of an already-authenticated user.
112 function _fetchCookiePassword () {}
114 // ###################################################################
116 * Returns an array of user data fetched using the user information
117 * values found in cookies. It should NOT be responsible for verifying
118 * the authentication information, but only fetching it.
120 function _fetchUserUsingCookies () {}
122 // ###################################################################
124 * Returns TRUE if the cookie data values are valid in the data array
125 * returned from _fetchUserUsingCookies(), and FALSE if they are not.
127 function _verifyCookieData () {}
129 // ###################################################################
131 * Authenticates the user using cookie data. You shouldn't need to
132 * customize this method if you implement all the helpers correctly.
133 * Returns TRUE if the cookies are valid and the user is logged in.
135 function authenticateCookies ()
137 if (! $this- > _fetchCookieUniqueId () OR ! $this- > _fetchCookiePassword ())
139 $this- > _clearCookies ();
143 $this- > authUser
= $this- > _fetchUserUsingCookies ();
145 if (! $this- > authUser
)
147 $this- > authUser
= null ;
148 $this- > _clearCookies ();
152 if ( $this- > _verifyCookieData ())
154 $this- > _setCookies ();
155 $this- > bugdarUser
= $this- > _fetchBugdarUserFromAuthUser ();
160 $this- > authUser
= null ;
161 $this- > _clearCookies ();
166 // ###################################################################
168 * Returns an array with the authentication user information, found
169 * by the unique login identifier passed to the function.
171 function _fetchUserWithIdentifier ( $string ) {}
173 // ###################################################################
175 * Verifies that the authUser's password matches the plain-text password
176 * passed to this function. This is basically the transformation of
177 * the plaintext to the hashed password and the result of the comparison.
179 function _verifyLoginUser ( $password ) {}
181 // ###################################################################
183 * Authenticates a user at login from two keys: an identifier and
184 * a password. In Bugdar, the identifier is an email, but it can be
185 * any unique string found in the authentication database. Returns
186 * TRUE if the authentication is successful, and FALSE if not.
188 function authenticateLogin ( $string , $password )
190 $this- > authUser
= $this- > _fetchUserWithIdentifier ( $string );
192 if (! $this- > authUser
)
194 $this- > authUser
= null ;
198 if ( $this- > _verifyLoginUser ())
200 $this- > _setCookies ();
201 $this- > bugdarUser
= $this- > _fetchBugdarUserFromAuthUser ();
206 $this- > authUser
= null ;
211 // ###################################################################
213 * Returns the BUGDAR user array from the data in the AUTHENTICATION user
214 * array. If the Bugdar user does not exist, call _createBugdarUser()
215 * to add the user into the Bugdar database. This is necessary so Bugdar options
216 * can be saved in the Bugdar database (and not in the auth one), however
217 * authentication details will NOT be stored in the Bugdar database.
219 function _fetchBugdarUserFromAuthUser () {}
221 // ###################################################################
223 * Creates a Bugdar user with the authentication details specified in
224 * the auth array and returns it. You need to call this in
225 * _fetchBugdarUserFromAuthUser() and use the UserAPI to create the user.
226 * Example for this function is this (all of these fields are required):
228 * $user = new UserAPI($this->registry); // do not change this
229 * $user->set('email', $this->authUser['email']);
230 * $user->set('displayname', $this->authUser['name']);
231 * $user->set('password', $this->authUser['password']); // some random value that won't be used for authentication
232 * $user->set('usergroupid', 2); // default "Registered Users" group
233 * $user->set('authid', $this->authUser['userid']); // This must be a COMPLETELY STATIC key that is found in the auth db that will permanently link Bugdar to the auth user
234 * $user->insert(); // saves the user
236 * return $user->values; // returns the newly created user array
238 function _createBugdarUser () {}
240 // ###################################################################
242 * Responsible for unsetting all authentication cookies because they
245 function _clearCookies () {}
247 // ###################################################################
249 * Sets the authentication cookies; this is done both at login and
250 * for renewing the cookies upon successful cookie validation
252 function _setCookies () {}
255 /*=====================================================================*\
256 || ###################################################################
259 || ###################################################################
260 \*=====================================================================*/