Creating a community in five minutes with CakePHP

CakePHP’s automatic hashing makes things a lot harder than they need to be, and simple tasks (e.g. a registration page) become annoyingly difficult.
Here, we build a complete community based website in five minutes using Cake best practices, with the following features: account registration, login and logout, account management page, and password retrieval.
We will take the following steps:

  1. Bake a new Cake website
  2. Build an account registration page
  3. Create a login page, and optionally add a lastlogin field
  4. Add change password functionality to our account page
  5. Finish with the password retrieval feature

At any time you can download the source code used in this tutorial. Let’s get started!
Step 1. Bake a new Cake website
I’m going to assume that you have a working cake shell installation, so change to your DocumentRoot and execute:
$ cake bake community
This will create a community folder with all the necessary files for your new website. If you visit http://example.com/community, you should see the “all green” indicating you have a working cake installation.
Next, we’ll create the users table by executing the following SQL:

CREATE TABLE `users` (
`id` int(11) NOT NULL auto_increment,
`created` datetime,
`modified` datetime,
`lastlogin` datetime,
`name` varchar(100),
`email` varchar(200),
`username` varchar(50),
`password` varchar(42),
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
)

That’s it for the setting up … Let’s move on.
Step 2. Build an account registration page
We’ll get straight into it by creating the users controller, model and the register view.
Because of CakePHP’s automatic hashing, we have to do all our validation work on the password_confirm field, as the password field contains only the hash of the users password.

models/user.php:
class User extends AppModel
{
/**
* Standard validation behaviour
*/
var $validate = array(
'name' => array(
'length' => array(
'rule' => array('minLength', 5),
'message' => 'Please enter your full name (more than 5 chars)',
'required' => true,
),
),
'username' => array(
'length' => array(
'rule' => array('minLength', 5),
'message' => 'Must be more than 5 characters',
'required' => true,
),
'alphanum' => array(
'rule' => 'alphanumeric',
'message' => 'May only contain letters and numbers',
),
'unique' => array(
'rule' => 'isUnique',
'message' => 'Already taken',
),
),
'email' => array(
'email' => array(
'rule' => 'email',
'message' => 'Must be a valid email address',
),
'unique' => array(
'rule' => 'isUnique',
'message' => 'Already taken',
),
),
'password' => array(
'empty' => array(
'rule' => 'notEmpty',
'message' => 'Must not be blank',
'required' => true,
),
),
'password_confirm' => array(
'compare' => array(
'rule' => array('password_match', 'password', true),
'message' => 'The password you entered does not match',
'required' => true,
),
'length' => array(
'rule' => array('between', 6, 20),
'message' => 'Use between 6 and 20 characters',
),
'empty' => array(
'rule' => 'notEmpty',
'message' => 'Must not be blank',
),
),
);

/**
* Ensure two password fields match
*
* @param array data provided by the controller
* @param string the original (already hashed) password fieldname
* @param bool whether the password field has been hashed,
* only hashed when a username input is present
*/
function password_match($data, $password_field, $hashed = true)
{
$password = $this->data[$this->alias][$password_field];
$keys = array_keys($data);
$password_confirm = $hashed ?
Security::hash($data[$keys[0]], null, true) :
$data[$keys[0]];
return $password === $password_confirm;
}
}

Next we create our view at views/users/register.ctp. Because we’ve done all our validation on the password_confirm field, the error messages (password too short, etc.) will appear under password_confirm. This isn’t ideal from the user interface perspective; luckily we can just swap the input labels and noone is the wiser.

views/users/register.ctp:
<?php
echo $form->create(array('action' => 'register'));
echo $form->input('name');
echo $form->input('email');
echo $form->input('username');
echo $form->input('password_confirm', array('label' => 'Password', 'type' => 'password'));
echo $form->input('password', array('label' => 'Password Confirm'));
echo $form->end('Register');
?>

Finally we create our users controller at controllers/users_controller.php. We define a beforeFilter method to make our registration page publicly accessible, our register action, and a blank login action.

controllers/users_controller.php:
class UsersController extends AppController
{
var $components = array('Auth');

/**
* Runs automatically before the controller action is called
*/
function beforeFilter()
{
$this->Auth->allow('register');
parent::beforeFilter();
}

/**
* Registration page for new users
*/
function register()
{
if (!empty($this->data)) {
$this->User->create();
if ($this->User->save($this->data)) {
$this->Session->setFlash(__('Your account has been created', true));
$this->redirect('/');
} else {
$this->Session->setFlash(__('Your account could not be created. Please, try again.', true));
}
}
}

/**
* Account login page
*/
function login()
{

}

/**
* Log a user out
*/
function logout()
{
return $this->redirect($this->Auth->logout());
}
}

The next issue with Auth arises when the user has entered a valid password, but has failed to validate the entire form – for example, if they picked a username that is in use and must be re-entered. As the password has already been replaced by the hashed password, the form will be redisplayed with the hashed password in the password input. If the user attempts to resubmit the form without retyping their password, form validation will fail on the password_confirm field. Even worse, if you’re not using a password_confirm field, the user will simply be unable to log in to their newly created account.
Thus, we need some hackery to make sure encrypted passwords are not sent back to the user. We can do this in AppController, by writing a beforeRender method.

app_controller.php:
class AppController extends Controller
{
/**
* Before Render
*/
function beforeRender()
{
unset($this->data['User']['password']);
unset($this->data['User']['password_confirm']);
}
}

And that’s it, we have a complete working registration page. We can view this completed page by visiting /users/register and create our first account.
Step 3. Create a login page
Next up is our login page. We need to modify the default layout which lives at views/layouts/default.ctp. We replace the content div which allows Auth to display messages to the user.

views/layouts/default.ctp:

<?php $session->flash(); ?>
<?php $session->flash('auth'); ?>
<?php echo $content_for_layout; ?>

Next we create a very simple login page:

views/users/login.ctp:
<?php
echo $form->create(array('action' => 'login'));
echo $form->input('username');
echo $form->input('password');
echo $form->end('Login');
?>

And that’s it – it doesn’t get much simpler. We can view our new login page at /users/login.
If we wanted to track the time the user logged in last, we can do some extra work:
Adding to the AppController, we set Auth->autoRedirect:

app_controller.php:
class AppController extends Controller
{
...

/**
* Before Filter
*/
function beforeFilter()
{
$this->Auth->autoRedirect = false;
}
}

Then we modify our login controller to do the necessary work:

controllers/users_controller.php:
class UsersController extends AppController
{
...

/**
* Ran directly after the Auth component has executed
*/
function login()
{
// Check for a successful login
if (!empty($this->data) && $id = $this->Auth->user('id')) {
// Set the lastlogin time
$this->User->id = $id;
$this->User->saveField('lastlogin', date('Y-m-d H:i:s'));

// Redirect the user
$url = array('controller' => 'users', 'action' => 'account');
if ($this->Session->check('Auth.redirect')) {
$url = $this->Session->read('Auth.redirect');
}
$this->redirect($url);
}
}
}

Not a lot of additional work, and it will come in handy if you need to prune inactive accounts. Note we can’t this part of the step yet, as it’s expecting an /users/account page to exist (which we create next).
Step 4. Add change password functionality
Cake’s form validation functionality is somewhat limited, in that it only allows you to define validation rules at the model level. Often, you will want to validate data at a per-form level instead. To achieve this, we can dynamically modify the validation rules before form validation takes place. We dive into the user model again:
Note: If we simply added the password_old rule to our validation behaviour, other forms that didn’t include password_old would not validate (because we have set required = true). If we removed required = true, a POST request can easily be forged bypassing this security check.

models/user.php:
class User extends AppModel
{
/**
* Extra form dependent validation rules
*/
var $validateChangePassword = array(
'_import' => array('password', 'password_confirm'),
'password_old' => array(
'correct' => array(
'rule' => 'password_old',
'message' => 'Does not match',
'required' => true,
),
'empty' => array(
'rule' => 'notEmpty',
'message' => 'Must not be blank',
),
),
);

/**
* Dynamically adjust our validation behaviour
*
* Look for an _import key in new ruleset, and import
* those rules from the base validation ruleset
*
* @param string array key of the validation ruleset to use
*/
function useValidationRules($key)
{
$variable = 'validate' . $key;
$rules = $this->$variable;

if (isset($rules['_import'])) {
foreach ($rules['_import'] as $key) {
$rules[$key] = $this->validate[$key];
}
unset($rules['_import']);
}

$this->validate = $rules;
}

/**
* Ensure password matches the user session
*
* @param array data provided by the controller
*/
function password_old($data)
{
$password = $this->field('password',
array('User.id' => $this->id));
return $password ===
Security::hash($data['password_old'], null, true);
}

...
}

Our change password logic now becomes very simple. We validate, then update the password and redirect the user.
Note: In this case Cake decides not to automatically hash the users password field, so we must perform the hashing manually. This happens because Cake will only hash the password if both the username and password key are set.

controllers/users_controller.php:
class UsersController extends AppController
{
/**
* Account details page (change password)
*/
function account()
{
// Set User's ID in model which is needed for validation
$this->User->id = $this->Auth->user('id');

// Load the user (avoid populating $this->data)
$current_user = $this->User->findById($this->User->id);
$this->set('current_user', $current_user);

$this->User->useValidationRules('ChangePassword');
$this->User->validate['password_confirm']['compare']['rule'] =
array('password_match', 'password', false);

$this->User->set($this->data);
if (!empty($this->data) && $this->User->validates()) {
$password = $this->Auth->password($this->data['User']['password']);
$this->User->saveField('password', $password);

$this->Session->setFlash('Your password has been updated');
$this->redirect(array('action' => 'account'));
}
}

...
}

We create a template for the account page as follows:

views/users/account.ctp:
Account Page
Change your password
You are <?php echo $current_user['User']['name']; ?> who last logged in <?php echo $current_user['User']['lastlogin']; ?>.

<?php
echo $form->create(array('action' => 'account'));
echo $form->input('password_old', array('label' => 'Old password', 'type' => 'password', 'autocomplete' => 'off'));
echo $form->input('password_confirm', array('label' => 'New password', 'type' => 'password', 'autocomplete' => 'off'));
echo $form->input('password', array('label' => 'Re-enter new password', 'type' => 'password', 'autocomplete' => 'off'));
echo $form->end('Update Password');
?>

The user is now able to change their password. We can test this by logging in at /users/login which will take us to our new account page.
Step 5. Create a password retrieval page
In our final step, we allow the user to retrieve a forgotten password. We do this by emailing the user a token. The user clicks back to our website with the token, and gets emailed a replacement password.
We create a models/token.php to handle the token generation, information storage and retrieval.

models/token.php:
<?php
class Token extends AppModel
{
/**
* Create a new ticket by providing the data to be stored in the ticket.
*/
function generate($data = null)
{
$data = array(
'token' => substr(md5(uniqid(rand(), 1)), 0, 10),
'data' => serialize($data),
);

if ($this->save($data)) {
return $data['token'];
}

return false;
}

/**
* Return the value stored or false if the ticket can not be found.
*/
function get($token)
{
$this->garbage();
$token = $this->findByToken($token);
if ($token) {
$this->del($token['Token']['id']);
return unserialize($token['Token']['data']);
}

return false;
}

/**
* Remove old tickets
*/
function garbage()
{
return $this->deleteAll(array('created < INTERVAL -1 DAY + NOW()'));
}
}

We’ll also create the necessary database table.

CREATE TABLE `tokens` (
`id` int(11) unsigned NOT NULL auto_increment,
`created` datetime default NULL,
`modified` datetime default NULL,
`token` varchar(32) default NULL,
`data` text,
PRIMARY KEY (`id`),
UNIQUE KEY `token` (`token`)
)

We next update the users controller to make the recover and verify actions public, then we define our recover and verify actions:

controllers/users_controller.php:
<?php
class UsersController extends AppController
{
var $components = array('Auth', 'Email');

...

/**
* Runs automatically before the controller action is called
*/
function beforeFilter()
{
$this->Auth->allow('register', 'recover', 'verify');
parent::beforeFilter();
}

/**
* Allows the user to email themselves a password redemption token
*/
function recover()
{
if ($this->Auth->user()) {
$this->redirect(array('controller' => 'users', 'action' => 'account'));
}

if (!empty($this->data['User']['email'])) {
$Token = ClassRegistry::init('Token');
$user = $this->User->findByEmail($this->data['User']['email']);

if ($user === false) {
$this->Session->setFlash('No matching user found');
return false;
}

$token = $Token->generate(array('User' => $user['User']));
$this->Session->setFlash('An email has been sent to your account, please follow the instructions in this email.');
$this->Email->to = $user['User']['email'];
$this->Email->subject = 'Password Recovery';
$this->Email->from = 'Support ';
$this->Email->template = 'recover';
$this->set('user', $user);
$this->set('token', $token);
$this->Email->send();
}
}

/**
* Accepts a valid token and resets the users password
*/
function verify($token = null)
{
if ($this->Auth->user()) {
$this->redirect(array('controller' => 'users', 'action' => 'account'));
}

$Token = ClassRegistry::init('Token');
if ($data = $Token->get($token)) {
// Update the users password
$password = $this->User->generatePassword();
$this->User->id = $data['User']['id'];
$this->User->saveField('password', $this->Auth->password($password));
$this->set('success', true);

// Send email with new password
$this->Email->to = $data['User']['email'];
$this->Email->subject = 'Password Changed';
$this->Email->from = 'Support ';
$this->Email->template = 'verify';
$this->set('user', $data);
$this->set('password', $password);
$this->Email->send();
}
}
}

Because we are generating new passwords for users, we need a function to do this. Alternative approaches, like PEAR’s Text/Password can be substituted if you like.

models/user.php:
class User extends AppModel
{
....

/**
* Generate a random pronounceable password
*/
function generatePassword($length = 10) {
// Seed
srand((double) microtime()*1000000);

$vowels = array('a', 'e', 'i', 'o', 'u');
$cons = array('b', 'c', 'd', 'g', 'h', 'j', 'k', 'l', 'm', 'n',
'p', 'r', 's', 't', 'u', 'v', 'w', 'tr',
'cr', 'br', 'fr', 'th', 'dr', 'ch', 'ph',
'wr', 'st', 'sp', 'sw', 'pr', 'sl', 'cl');

$num_vowels = count($vowels);
$num_cons = count($cons);

$password = '';
for ($i = 0; $i < $length; $i++){
$password .= $cons[rand(0, $num_cons - 1)] . $vowels[rand(0, $num_vowels - 1)];
}

return substr($password, 0, $length);
}

We define two email templates for recovery and verification respectively:

views/elements/email/text/recover.ctp:
Dear <?php echo $user['User']['name']; ?>,

Someone is attempting to reset your password.

Your username for this account is: <?php echo $user['User']['username']; ?>

If you wish to continue, you may reset your password by
following this link:

<?php echo Router::url(array('controller' => 'users', 'action' => 'verify', $token), true); ?>

If you did not initiate this action, please contact
support. You can log in to change your password
at this address:

<?php echo Router::url(array('controller' => 'users', 'action' => 'login'), true); ?>

Thanks,
Support

views/elements/email/text/verify.ctp:
Dear <?php echo $user['User']['name']; ?>,

Your password has been reset, please use the following
details to log into our site.

Username: <?php echo $user['User']['username']; ?>

Password: <?php echo $password; ?>

Please change your password to something more memorable.
You can log in to change your password at this address:

<?php echo Router::url(array('controller' => 'users', 'action' => 'login'), true); ?>

Thanks,
Support

And finally we define our two templates for the recovery and verification views:

views/users/recover.ctp:
Recover Password

<?php
echo $form->create('User', array('action' => 'recover'));
echo $form->input('email');
echo $form->end('Recover');
?>

views/users/verify.ctp:
Recover Password

<?php if (isset($success)): ?>
Access verified. Your new password has been emailed to you.
A new password has been generated for your account and mailed to you. After you've logged in, you should change your password to something memorable via the account information page.
<?php else: ?>
Invalid token. This page has expired, or the link was not copied from your email client correctly.
Make sure you have copied the entire link correctly, pasting it together if the link was split over two lines. If you're copying the link correctly and still can't get access, please contact us.
<?php endif; ?>

And that’s it … we’ve developed a complete community orientated website for CakePHP in less time it takes than to make a cup of tea (if you’re very slow at making tea).
On a side note: you may have noticed that CakePHP’s automatic hashing makes things a lot harder than they should be. In my opinion, automatic hashing directly goes against Cake’s mantra of “If it’s easy to do in Cake, then it doesn’t belong in core”, and I hope the core development team rethink in the idea in Cake 1.3.x.x. Although forcing developers to automatically hash their users password is a nice idea, the current implementation a major stumbling block for new bakers. We shouldn’t need a section in the manual about common problems the user will encounter trying to do simple tasks. Instead, we should fix the cause of the common problems. It is, however, a testament to Cake’s flexibility that we are able to work around most of these issues quite elegantly. It’s also worth noting that there are several ways to override this behavior.
I hope you’ve enjoyed this tutorial, please feel free to leave comments, suggestions or improvements.