#Ardent
Self-validating smart models for Laravel Framework 4's Eloquent O/RM.
Based on the Aware bundle for Laravel 3 by Colby Rabideau.
Copyright (C) 2013 Max Ehsan <http://laravelbook.com/>
##Installation
Add laravelbook/ardent
as a requirement to composer.json
:
{
"require": {
"laravelbook/ardent": "dev-master"
}
}
Update your packages with composer update
or install with composer install
.
- Introduction
- Getting Started
- Effortless Validation with Ardent
- Retrieving Validation Errors
- Overriding Validation
beforeSave
andafterSave
Hooks- Custom Validation Error Messages
- Custom Validation Rules
- Automatically Hydrate Ardent Entities
- Automatically Purge Redundant Form Data
- Automatically Transform Secure-Text Attributes
How often do you find yourself re-creating the same boilerplate code in the applications you build? Does this typical form processing code look all too familiar to you?
Route::post( 'register', function () {
$rules = array(
'name' => 'required|min:3|max:80|alpha_dash',
'email' => 'required|between:3,64|email|unique:users',
'password' =>'required|alpha_num|between:4,8|confirmed',
'password_confirmation'=>'required|alpha_num|between:4,8'
);
$validator = Validator::make( Input::all(), $rules );
if ( $validator->passes() ) {
User::create( array(
'name' => Input::get( 'real_name' ),
'email' => Input::get( 'email' ),
'password' => Hash::make( Input::get( 'password' ) )
) );
return Redirect::to( '/' )->with( 'message', 'Thanks for registering!' );
} else {
return Redirect::to( '/' )->withErrors( $v->getMessages() );
}
}
);
Implementing this yourself often results in a lot of repeated boilerplate code. As an added bonus, you controllers (or route handlers) get prematurely fat, and your code becomes messy, ugly and difficult to understand.
What if someone else did all the heavy-lifting for you? What if, instead of regurgitating the above mess, all you needed to type was these few lines?...
Route::post( 'register', function () {
$user = new User;
if ( $user->save() ) {
return Redirect::to( '/' )->with( 'message', 'Thanks for registering!' );
} else {
return Redirect::to( '/' )->withErrors( $user->errors() );
}
}
);
Enter Ardent!
Ardent - the magic-dust-powered, wrist-friendly, one-stop solution to all your dreary input sanitization boilerplates!
Puns aside, input validation functionality can quickly become tedious to write and maintain. Ardent deals away with these complexities by providing helpers for automating many repetitive tasks.
Ardent is not just great for input validation, though - it will help you significantly reduce your Eloquent data model code. Ardent is particularly useful if you find yourself wearily writing very similar code time and again in multiple individual applications.
For example, user registration or blog post submission is a common coding requirement that you might want to implement in one application and reuse again in other applications. With Ardent, you can write your self-aware, smart models just once, then re-use them (with no or very little modification) in other projects. Once you get used to this way of doing things, you'll honestly wonder how you ever coped without Ardent.
No more repetitive brain strain injury for you!
Ardent
aims to extend the Eloquent
base class without changing its core functionality. Since Ardent
itself is a descendant of Illuminate\Database\Eloquent\Model
, all your Ardent
models are fully compatible with Eloquent
and can harness the full power of Laravels awesome OR/M.
To create a new Ardent model, simply make your model class derive from the Ardent
base class:
use LaravelBook\Ardent\Ardent;
class User extends Ardent {}
Note: You can freely co-mingle your plain-vanilla Eloquent models with Ardent descendants. If a model object doesn't rely upon user submitted content and therefore doesn't require validation - you may leave the Eloquent model class as it is.
Ardent models use Laravel's built-in Validator class. Defining validation rules for a model is simple and is typically done in your model class as a static variable:
use LaravelBook\Ardent\Ardent;
class User extends Ardent {
/**
* Ardent validation rules
*/
public static $rules = array(
'name' => 'required|between:4,16',
'email' => 'required|email',
'password' => 'required|alpha_num|between:4,8|confirmed',
'password_confirmation' => 'required|alpha_num|between:4,8',
);
...
}
Ardent models validate themselves automatically when Ardent->save()
is called.
$user = new User;
$user->name = 'John doe';
$user->email = '[email protected]';
$user->password = 'test';
$success = $user->save(); // returns false if model is invalid
Note: You can also validate a model at any time using the
Ardent->validate()
method.
When an Ardent model fails to validate, a Illuminate\Support\MessageBag
object is attached to the Ardent object which contains validation failure messages.
Retrieve the validation errors message collection instance with Ardent->errors()
method or Ardent->validationErrors
property.
Retrieve all validation errors with Ardent->errors()->all()
. Retrieve errors for a specific attribute using Ardent->validationErrors->get('attribute')
.
Note: Ardent leverages Laravel's MessagesBag object which has a simple and elegant method of formatting errors.
There are two ways to override Ardent's validation:
forceSave()
validates the model but saves regardless of whether or not there are validation errors.
both Ardent->save($rules, $customMessages)
and Ardent->validate($rules, $customMessages)
take two parameters:
$rules
is an array of Validator rules of the same form asArdent::rules
.- The same is true of the
$customMessages
parameter (same asArdent::customMessages
)
An array that is not empty will override the rules or custom error messages specified by the class for that instance of the method only.
Note: the default value for
$rules
and$customMessages
is emptyarray()
, if you pass anarray()
nothing will be overriden.
Ardent provides a convenient method for performing actions when $model->save()
is called. For example, you may use beforeSave
to hash a users password:
use LaravelBook\Ardent\Ardent;
class User extends Ardent {
public function beforeSave( $forced )
{
// if there's a new password, hash it
if($this->changed('password'))
{
$this->password = Hash::make($this->password);
}
return true;
}
}
Notice that beforeSave
returns a boolean. If you'd like to halt the save()
operation, simply return false
.
Just like, $rules
and $customMessages
, beforeSave
and afterSave
can be overridden at run-time. Simply pass the closures to the save()
(or forceSave()
) function.
$user->save(array(), array(),
function ($model) { // closure for beforeSave
echo "saving the model object...";
return true;
},
function ($model) { // closure for afterSave
echo "done!";
}
);
Note: the closures should have one parameter as it will be passed a reference to the model being saved.
Just like the Laravel Validator, Ardent lets you set custom error messages using the same sytax.
use LaravelBook\Ardent\Ardent;
class User extends Ardent {
/**
* Ardent Messages
*/
public static $customMessages = array(
'required' => 'The :attribute field is required.'
);
...
}
You can create custom validation rules the same way you would for the Laravel Validator.
Ardent is capable of hydrating your entity model class from the form input submission automatically!
Let's see it action. Consider this snippet of code:
$user = new User;
$user->name = Input::get('name');
$user->email = Input::get('email');
$user->password = Hash::make(Input::get('password'));
$user->save();
Let's invoke the magick of Ardent and rewrite the previous snippet:
$user = new User;
$user->save();
That's it! All we've done is remove the boring stuff.
Believe it or not, the code above performs essentially the same task as its older, albeit rather verbose sibling. Ardent populates the model object with attributes from user submitted form data (it uses the Laravel Input::all()
method internally). No more hair-pulling trying to find out which Eloquent property you've forgotten to populate. Let Ardent take care of the boring stuff, while you get on with the fun stuffs!
To enable the auto-hydration feature, simply set the $autoHydrateEntityFromInput
instance variable to true
in your model class:
use LaravelBook\Ardent\Ardent;
class User extends Ardent {
public $autoHydrateEntityFromInput = true;
}
Ardent models can auto-magically purge redundant input data (such as password confirmation fields) - so that the extra data is never saved to database. Ardent will use the confirmation fields to validate form input, then prudently discard these attributes before saving the model instance to database!
To enable this feature, simply set the $autoPurgeRedundantAttributes
instance variable to true
in your model class:
use LaravelBook\Ardent\Ardent;
class User extends Ardent {
public $autoPurgeRedundantAttributes = true;
}
Suppose you have an attribute named password
in your model class, but don't want to store the plain-text version in the database. The pragmatic thing to do would be to store the hash of the original content. Worry not, Ardent is fully capable of transmogrifying any number of secure fields automatically for you!
To do that, add the attribute name to the Ardent::$passwordAttributes
static array variable in your model class, and set the $autoHashPasswordAttributes
instance variable to true
:
use LaravelBook\Ardent\Ardent;
class User extends Ardent {
public static $passwordAttributes = array('password');
public $autoHashPasswordAttributes = true;
}
Ardent will automatically replace the plain-text password attribute with secure hash checksum and save it to database. It uses the Laravel Hash::make()
method internally to generate hash.