CLI Overview
Quick Start Guide
wheels info
wheels reload
wheels deps
wheels destroy
wheels watch
wheels generate app
wheels generate app-wizard
wheels generate controller
wheels generate model
wheels generate view
wheels generate property
wheels generate route
wheels generate resource
wheels generate api-resource
wheels generate frontend
wheels generate test
wheels generate snippets
wheels scaffold
wheels db create
wheels db drop
wheels db setup
wheels db reset
wheels db status
wheels db version
wheels db rollback
wheels db seed
wheels db dump
wheels db restore
wheels db shell
wheels db schema
wheels dbmigrate info
wheels dbmigrate latest
wheels dbmigrate up
wheels dbmigrate down
wheels dbmigrate reset
wheels dbmigrate exec
wheels dbmigrate create blank
wheels dbmigrate create table
wheels dbmigrate create column
wheels dbmigrate remove table
wheels test
wheels test run
wheels test coverage
wheels test debug
wheels config list
wheels config set
wheels config env
wheels env
wheels env setup
wheels env list
wheels env switch
wheels environment
wheels console
wheels runner
wheels server
wheels server start
wheels server stop
wheels server restart
wheels server status
wheels server log
wheels server open
wheels plugins
wheels plugins list
wheels plugins install
wheels plugins remove
wheels analyze
wheels analyze code
wheels analyze performance
wheels analyze security
wheels security
wheels security scan
wheels optimize
wheels optimize performance
wheels docs
wheels docs generate
wheels docs serve
wheels ci init
wheels docker init
wheels docker deploy
wheels deploy
wheels deploy audit
wheels deploy exec
wheels deploy hooks
wheels deploy init
wheels deploy lock
wheels deploy logs
wheels deploy proxy
wheels deploy push
wheels deploy rollback
wheels deploy secrets
wheels deploy setup
wheels deploy status
wheels deploy stop
Configuration Management
Creating Commands
Service Architecture
Migrations Guide
Testing Guide
Object Relational Mapping
Creating Records
Reading Records
Updating Records
Deleting Records
Column Statistics
Dynamic Finders
Getting Paginated Data
Associations
Nested Properties
Object Validation
Object Callbacks
Calculated Properties
Transactions
Dirty Records
Soft Delete
Automatic Time Stamps
Using Multiple Data Sources
description: >- Write code that runs every time a given object is created, updated, or deleted.
Object Callbacks
Callbacks in Wheels allow you to have code executed before and/or after certain operations on an object. This requires some further explanation, so let's go straight to an example of a real-world application: the e-commerce checkout.
A Real-World Example of Using Callbacks
Let's look at a possible scenario for what happens when a visitor to your imaginary e-commerce website submits their credit card details to finalize an order:
- You create a new
order
object using the new() method based on the incoming form parameters. - You call the save() method on the order object, which will cause Wheels to first validate the object and then store it in the database if it passes validation.
- The next day, you call the update( method on the object because the user decided to change the shipping method for the order.
- Another day passes, and you call the delete() method on the object because the visitor called in to cancel the order.
Let's say you want to have the following things executed somewhere in the code:
- Stripping out dashes from the credit card number to make it as easy as possible for the user to make a purchase.
- Calculating shipping cost based on the country the package will be sent to.
It's tempting to put this code right in the controller, isn't it? But if you think ahead a little, you'll realize that you might build an administrative interface for orders and maybe an express checkout as well at some point in the future. You don't want to duplicate all your logic in all these places, do you?
Object callbacks to the rescue! By using object callbacks to implement this sort of logic in your model, you keep it out of your controllers and ensure your code stays DRY (Don't Repeat Yourself).
Part of the Order.cfc
model file:
{% code title="Order.cfc" %}
component extends="Model" {
public function config() {
beforeValidationOnCreate("fixCreditCard");
afterValidation("calculateShippingCost");
}
public function fixCreditCard() {
writeOutput("Code for stripping out dashes in credit card numbers goes here...");
}
public function calculateShippingCost() {
writeOutput("Code for calculating shipping cost goes here...");
}
}
{% endcode %}
The above code registers 2 methods to be run at specific points in the life cycle of all objects in your application.
Use Proper Naming
When naming your callbacks you might be tempted to try and keep things (too) simple by doing something like afterValidation("afterValidation")
.
Do not do this.
If you do, Wheels will fail silently and you might be left wondering why nothing is happening. (What is happening is that you, if there is a corresponding method named afterValidation
, unintentionally overrode an internal Wheels method.)
It's best to name the methods so they describe what task they actually perform, such as calculateShippingCost
or fixCreditCard
as shown in the example above.
Registering and Controlling Callbacks
The following 16 functions can be used to register callbacks.
- afterNew() or afterFind()
- afterInitialization()
- beforeValidation()
- beforeValidationOnCreate() or beforeValidationOnUpdate()
- afterValidation()
- afterValidationOnCreate() or afterValidationOnUpdate()
- beforeSave()
- beforeCreate() or beforeUpdate()
- afterCreate() or afterUpdate()
- afterSave()
- beforeDelete()
- afterDelete()
Callback Life Cycle
As you can see above, there are a few places (5, to be exact) where one callback or the other will be executed, but not both.
The very first possible callback that can take place in an object's life cycle is either afterNew() or afterFind. The afterNew() callback methods are triggered when you create the object yourself for the very first time, for example, when using the new() method. afterFind() is triggered when the object is created as a result of fetching a record from the database, for example, when using findByKey(). (There is some special behavior for this callback type that we'll explain in detail later on in this chapter).
The remaining callbacks get executed depending on whether or not we're running a "create," "update," or "delete" operation.
Breaking a Callback Chain
If you want to completely break the callback chain for an object, you can do so by returning false
from your callback method. (Otherwise, always return true
or nothing at all.) As an example of breaking the callback chain, let's say you have called the save() method on a new object and the method you've registered with the beforeCreate() callback returns false
. As a result, because the method you've registered with the beforeCreate() callback will exit the callback chain early by returning false
, no record will be inserted in the database.
Order of Callbacks
Sometimes you need to run more than one method at a specific point in the object's life cycle. You can do this by passing in a list of method names like this:
beforeSave("checkSomething,checkSomethingElse");
When an object is saved in your application, these two callbacks will be executed in the order that you registered them. The checkSomething
method will be executed first, and unless it returns false
, the checkSomethingElse
method will be executed directly afterward.
Special Case #1: findAll() and the afterFind() Callback
When you read about the afterFind() callback above, you may have thought that it must surely only work for findOne()/ findByKey() calls but not for findAll() because those calls return query result sets by default, not objects.
Believe it or not, but callbacks are even triggered on findAll()! You do need to write your callback code differently though because there will be no this
scope in the query object. Instead of modifying properties in the this
scope like you normally would, the properties are passed to the callback method via the arguments
struct.
{% hint style="info" %}
Column Types
We recommend that you respect the query column types. If you have a date / time value in the query, don't try to change it to a string for example. Some engines will allow it while others won't. {% endhint %}
Does that sound complicated? This example should clear it up a little. Let's show some code to display how you can handle setting a fullName
property on a hypothetical artist
model.
Because all afterFind() callbacks run when fetching records from the database, it's a good idea to check to make sure that the columns used in the method's logic exist before performing any operations. You mostly encounter this issue when using the select
argument on a finder to limit the number of columns returned. But no worries! You can use StructKeyExists()
and perform a simple check to make sure that the columns exists in the arguments
scope.
component extends="Model" output="false" {
public function config() {
afterFind("setFullName");
}
public function setFullName() {
arguments.fullName = "";
if ( StructKeyExists(arguments, "firstName")
&& StructKeyExists(arguments, "lastName") ) {
arguments.fullName = Trim(
arguments.firstName & " " & arguments.lastName
);
}
return arguments;
}
}
In our example model, an artist's name can consist of both a first name and a last name ("John Mayer") or just the band / last name ("Abba."). The setFullName()
method handles the logic to concatenate the names.
Always remember to return the arguments
struct, otherwise Wheels won't be able to tell that you actually wanted to make any changes to the query.
Note that callbacks set on included models are not executed. Look at this example:
fooBars = model("foo").findAll(include="bars");
That will cause callback to be executed on the Foo
model but not the Bar
model.
Special Case # 2: Callbacks and the updateAll() and deleteAll() Methods
Please note that if you use the updateAll() or the deleteAll() methods in Wheels, they will not instantiate objects by default, and thus any callbacks will be skipped. This is good for performance reasons because if you update 1,000 records at once, you probably don't want to run the callbacks on each object. Especially not if they involve database calls.
However, if you want to execute all callbacks in those methods as well, all you have to do is pass in instantiate=true
to the updateAll()/ deleteAll() methods.