<?php
page_open(array("sess" => "Cms_Session", "auth" => "Cms_Auth", "perm" => "Cms_Perm"));
?>
AuthenticationPHP uses an authentication mechanism that is more flexible than basic authentication, as well as being reasonably secure. Here's how it works. At the top of your protected page, you have a page_open call which contains the statement "auth" => "auth_class" where auth_class is the name of your authentication class. The page_open function evaluates this, and initializes the authentication component. Authentication first checks to see if the user is already authenticated. Let's assume that our user just arrived, and is not yet authenticated. PHPLIB will present the user with a login form (no popup windows!!!), which you may design yourself or use the included one. The user enters their username and password, and clicks submit. Simple, eh? What goes on behind the scenes is a bit more complicated... If the user does not have a JavaScript capable browser, then authentication works much like you would suspect. The username and password are sent to the server, and compared against the values stored in the database. If the user does have a JavaScript capable browser, it's a bit different. PHPLIB will put a string in the form called a "challenge". When the user submits the form, their username, password, and the challenge are encrypted using an md5 encryption algorithm. The only thing that is passed back to the server is the username, and this encrypted hash (password is NOT transmitted). The server then takes the same challenge string, the username submitted, and the password associated with that username in the database. These values are also encrypted with md5. The two encrypted strings are then compared. If they match, the user submitted the correct password, and is allowed to proceed. So, the user is authenticated with the password never having been transmitted, so it cannot be sniffed. Very slick. Session ManagementAuthentication ties in very closely with session management. Once the user is authenticated, their session begins. If the user has a browser that supports cookies, a session id is created by making an md5 hash of a php uniquid (a random id based on system time) and an arbitrary string. The cookie is a session cookie, meaning that it is never written to the user's hard disk, and it is removed once the session ends. If they do not support cookies, the same session id is stored as a get parameter in the URL.The md5 hash is done so that the session id is random, and it is not possible to guess one session id based on knowledge of another one. The session id is used to store information about the user in the system. This information can include if the user is authenticated, when their authentication exprires (Yep, you can do expiration!), what permissions they have (coming later), and any other information you want.
|
Aside: PHP and Object Oriented Programming
PHPLIB uses PHP's OOP feature extensively. This may be the first time
you've seen it in use, so it's going to help a lot if you have an idea of
what it all means. The first step is to not really think of it as object
oriented. Rather, it's a way to group together data and functions for
convenient access. It does not follow many OO conventions, and it is not
truly object oriented. With that said, let's look at the database class to
see what it means.
<?php $db = new MyDBClass; ?>
This line creates a new database object. Think of it as initializing all
the functions in MyDBClass so that you can use them.
$db is then a link to
this database object. In a real OO language, creating this object would
simply allocate memory for the data and functions. With PHP, what it does
is essentially set up the object (in this case, basically set up the
database connection, and select the database). To do anything useful
with this object, you evoke methods on it. Methods are simply functions
that manipulate an object's data. For example,
<?php $db->query($query); ?>
means to evoke the function query on the database object $db. The query
method takes the string you pass it, and uses the data in the database
object to execute that query. The -> symbol may confuse you a bit. In C, ->
means to access the data of a pointer to a structure. In PHP, it means
that the method on the right is called on the object on the left. Here,
query is just one of the functions in the database class. All the other
functions in that class can be accessed in the same way.
Now, when you set up your local.inc file, you do so by extending classes.
Extending is an OO word for adding functionality to things. When you
extend a class, all the functions and data in the class you are extending
(called the super class) is available to the extending class (called the
sub class). Your subclass can add functionality to the superclass, and it
can also overwrite data and methods in the superclass. Let's take the
database example. Here is a subclass of a database class:
Here we are creating a class called MyDBClass. This class can do everything
that the database class can do. However, it has replaced some of the data
of the database class with some of it's own. If you look in DB_Sql, you'll
see the variables above are empty. The subclass provides these values, and
it is the subclass you will use to create your database objects. You can
call all the methods of DB_Sql on MyDBClass, because it is merely an
extension. Think of it as MyDBClass IS a DB_Sql object with added
functionality and/or data.
|
<?php $sess->register("variable_name"); ?>
$variable notation, simply a string containing
the name of the variable you want to register. This is because when you
register a variable, you are making that variable (as in the variable name)
persistent, NOT the contents of that variable (it's value). Thus, if you change
the value of a persistent variable on subsequent pages,
the value of the session variable will change as well.That's all! That variable
(be it a string, number, array, even an object) will be available to you
on all further session pages. For example, let's say page1.php3 is passed some
user info from a form. Let's say it get's the variable $firstname. You can
then do:
<?php
$sess->register("first");
if (check($firstname)) {
$first = $firstname;
}
?>
<?php
$sess->unregister("variable_name");
?>
<?php
$perm->check("permission_level");
?>
perm_invalid() is automatically called. You may create your own
perm_invalid function, or use the specified on which simply reports that
the person does not have appropriate permissions, and then exits.
<?php
$perm->have_perm("permission_level");
?>
<?php
if ($perm->have_perm("guest")) {
//do something;
} elseif ($perm->have_perm("admin")) {
//do something else;
} else {
//yet something else;
}
?>
<?php
$db = new DB_MyDBClass;
$query = "select name from sometable";
$db->query($query);
while ($db->next_record()) {
$db->p("name");
}
?>
$db->next_record() advances result set to the next row. The
$db->p("name") prints out the value of the field name. You can also say
$db->f("name") which simply returns the value rather than printing it out.
The above is equivalent to this chunk of mysql specific code, and also
automatically provides error handling and centralized storage of connection
data:
<?php
mysql_connect("localhost","username","password");
mysql_select_db("some_db");
$query = "select name from sometable";
$result = mysql_query($query);
while ($row = mysql_fetch_array($result)) {
$row["name"];
}
?>