Taffy: A Restful Framework for ColdFusion

Update: Since this was posted in August of 2010, a lot has changed with Taffy. We're now approaching a 1.2 release, and new development should not be done against 1.0. See this page for more information.

Today I'm excited to announce something that I've been working on quietly for a few months. I've created a framework for the purpose of building Restful APIs with semantically correct URIs -- no easy task in vanilla CFML -- simply and elegantly. I call it Taffy.

I've taken some inspiration from FW/1, Powernap, and Swiz. Much like FW/1, Taffy is a set of base classes that your Application.cfc and resource CFCs extend; and similar to Powernap, Taffy uses the notion of "representation" classes. Don't worry about these yet - it's easy and I'll get into them in more detail later. Lastly, using Swiz taught me the power of metadata, so I made it a big part of Taffy.

As much as is possible, Taffy uses convention instead of configuration. There's no messy mapping of this http verb used with this URI calls this function in this cfc. You set a few bits of metadata and use a few pre-determined function names, and everything falls into place.

Enough blabber, let's look at a REST API written with Taffy!

Setting up the framework

Application.cfc

component extends="taffy.core.api" {
this.name = hash(getCurrentTemplatePath());
}

Simple enough for you? In case you missed it, this is a generic application with a unique name... and it uses the component extends attribute to extend Application.cfc from Taffy's core api class.

The only requirement is that you either put Taffy in your web root, or create a CF mapping to it.

Ok, so there are a few configuration options, all of which you set in Application.cfc, as in the next code sample. I'm going to show all of the configuration options, but use their default values.

component extends="taffy.core.api" {

this.name = hash(getCurrentTemplatePath());

//use this instead of onApplicationStart()
void function applicationStartEvent(){}

void function configureTaffy(){
//these are all default values, but if you want to change them this is the place:
setDebugKey("debug");
setReloadKey("reload");
setReloadPassword("true");
setDashboardKey("dashboard");
setDefaultRepresentationClass("taffy.core.genericRepresentation");
registerMimeType("json", "application/json");
setDefaultMime("json");
}
}

Still pretty simple, right? And now you have an application capable of servicing REST requests. You just don't have any resources.

Resources

In general with REST, there are two types of resources: Collections and Members. Think of Collections as a query object that shows the entire contents of the table, and Members as a structure representing a single row of the same query. With Taffy, you implement Collections and Members as separate CFCs.

Let's start with a Collection, using the trusty old Art Gallery datasource:

artistCollection.cfc

<cfcomponent extends="taffy.core.resource" taffy_uri="/artists">

<cffunction name="get" access="public" output="false">
<cfset var q = "" />
<cfquery name="q" datasource="cfartgallery" cachedwithin="#createTimeSpan(0,0,0,1)#">
select * from artists
</cfquery>
<cfreturn representationOf(q).withStatus(200) />
</cffunction>

<cffunction name="post" access="public" output="false">
<cfargument name="firstname" type="string" required="false" default="" />
<cfargument name="lastname" type="string" required="false" default="" />
<cfargument name="address" type="string" required="false" default="" />
<cfargument name="city" type="string" required="false" default="" />
<cfargument name="state" type="string" required="false" default="" />
<cfargument name="postalcode" type="string" required="false" default="" />
<cfargument name="email" type="string" required="false" default="" />
<cfargument name="phone" type="string" required="false" default="" />
<cfargument name="fax" type="string" required="false" default="" />
<cfargument name="thepassword" type="string" required="false" default="" />
<cfset var q = "" />
<cfquery name="q" datasource="cfartgallery">
insert into artists (firstname,lastname,address,city,state,postalcode,email,phone,fax,thepassword)
values (
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.firstname#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.lastname#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.address#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.city#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.state#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.postalcode#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.email#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.phone#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.fax#" />,
<cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.thepassword#" />
)
</cfquery>
<cfquery name="q" datasource="cfartgallery">
select * from artists
where
firstname = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.firstname#" />
and lastname = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.lastname#" />
and address = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.address#" />
and city = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.city#" />
and state = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.state#" />
and postalcode = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.postalcode#" />
and email = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.email#" />
and phone = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.phone#" />
and fax = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.fax#" />
and thepassword = <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.thepassword#" />
</cfquery>
<cfreturn representationOf(q).withStatus(200) />
</cffunction>

</cfcomponent>

There are quite a few lines of code there, but most of them are querying the database. If we ignore those lines, we go down from about 55 lines to about 21. Let's break down the important stuff:

  1. The component extends taffy.core.resource. This is where it inherits functionality like the representationOf and withStatus functions.

  2. The component also has a metadata attribute named taffy_uri that tells Taffy the URI of the collection that we are defining. We'll talk more about URIs and how you can use them in the next section.

  3. Functions defined here are named GET and POST. For the sake of discussion, I refer to these as Responders. Notice that these correspond to HTTP verb names (get, put, post, delete). I bet you can guess the convention. That's right, when the GET verb is used, the GET function will be called.

  4. All responders must return using the function representationOf. This returns a special class containing your data that can be serialized into multiple formats. A JSON serializing representation class comes with the framework, but you can also create and use a custom representation class capable of serializing to any format you want (for example: XML, YAML, WDDX, HTML, etc). I will cover using a custom representation class in a later post, and may decide to create examples that serialize to various formats.

  5. Notice that responders are not present for all 4 HTTP verbs. If a request is made and no responder exists corresponding to the request verb, Taffy will respond with HTTP status 405 Not Allowed.

URIs and making them work for you

You know what a URI is, right? It's a neat (as in tidy) little chunk of URL that tells the web server exactly what bit of data you're interested in. For example, here's a URI for a recent tweet of mine on twitter:

/AdamTuttle/status/21767382574

When sent to Twitter.com, they reply with just that one tweet. In actuality, your browser is making a GET request to Twitter's API, which is responding with some HTML. Likewise, using the URI /AdamTuttle you'll get an HTML response of the entire collection of my tweets (paged).

Taffy makes doing this with ColdFusion simple and powerful. This is where that component metadata comes into play. By setting the taffy_uri of /artists, Taffy knows to connect requests for the /artists collection up to our artistCollection CFC.

That's great for collections, but if you're thinking ahead then you've no doubt wondered how we're going to handle unique bits in the URI. Given the same Twitter-based example, we can't handle every permutation of unique tweet ID's in the metadata individually. For one, it's not possible, and even if it were, it's just not a reasonable approach. That's where tokens come in.

This is a perfectly valid taffy_uri: /artists/{artistId} -- and in fact, that is the taffy_uri of the artistMember CFC.

If we were writing the Twitter API and the tweet member CFC, it might start out like this:

component
extends="taffy.core.resource"
taffy_uri="/{username}/status/{tweetId}" {

When Taffy starts up, it inspects all of your Resource CFCs, grabbing that metadata, and converting the taffy_uri to a regular expression used to match incoming requests. All that you need to know is that if your URI defines a token {foo} then it will be passed by name to your responders -- so you have to have an argument named the same as your token, in this case, "foo".

There is one caveat with tokenized URIs. Stripped of all tokens, they must all be unique. If you define two Resources with the URIs /foo/{bar} and /foo/{fubar} then there is no way for Taffy to tell which is the appropriate CFC to use for the request. To Taffy, they both look like this: /foo/{some_token}, so having two of them is not unique, and Taffy will throw an exception during startup.

Providing Resources to Taffy

There are three methods for getting Resources into Taffy.

Taffy will also work with an external bean factory, like ColdSpring, in two ways.

In both cases, you can set your Taffy API up to be a child-application of a larger application that already uses a bean factory. By doing so, you don't have to duplicate your bean factory configuration, and Taffy will use the same existing factory instance.

Download

I suppose that's enough information to get you started. The download comes with several examples: an API implemented using no external bean factory, one using only ColdSpring, and one using both the internal resource factory and ColdSpring. It also has a consumer application that you can point at any of the three example APIs.

There are a few other things that I decided to leave out here for the sake of brevity (ha!), but everything should be pretty well documented in the wiki: http://github.com/atuttle/Taffy/wiki. If you have any questions, just ask!

The project is listed on RIAForge: http://taffy.riaforge.org, and the source is hosted on Github: http://github.com/atuttle/Taffy.

You can download as:

Download as ZIP Download as TAR

Webmentions

It's like comments, but you do it on Twitter.

Discuss on TwitterEdit on GitHubContributions