17
ColdBox Interceptors Brad Wood www.codersrevolution.c om [email protected]

ColdBox Interceptors

  • Upload
    vine

  • View
    70

  • Download
    0

Embed Size (px)

DESCRIPTION

ColdBox Interceptors. Brad Wood www.codersrevolution.com [email protected]. What is an interceptor?. An encapsulated piece of logic that “listens” to events that happen during the life-cycle of your application. - PowerPoint PPT Presentation

Citation preview

Page 2: ColdBox Interceptors

What is an interceptor?

 An encapsulated piece of logic that “listens” to events that happen during the life-cycle of your application.

It allows for loose coupling, cross cutting concerns, and implicit chain-able execution points.

Interception points can be tapped into without modifying the core code of your application.

Page 3: ColdBox Interceptors

What is an interceptor?

Interceptors follow the model of event-driven programming.

Also known as The Hollywood principle-  “Don’t call us, we’ll call you.” 

Page 4: ColdBox Interceptors

What is an interceptor?

There are a number of baked-in interception points that the ColdBox framework broadcasts that can give you AOP-style “before” or “after” filters.

Your application can declare and announce custom interception points which model the observer/observable pattern.

Multiple listeners for the same event (or interception point) will be chained together in the order of declaration. 

Page 5: ColdBox Interceptors

Core Interception Points

A sample of Interception points that ColdBox announces out-of-the-box:

• afterConfigurationLoad• preProcess• postProcess• preEvent• postEvent• preRender• afterCacheElementInsert• onException

Page 6: ColdBox Interceptors

What are they good for?

   • Security• Method Tracing• AOP Interceptions like Cache advices on

insert and remove• Publisher/Consumer operations• Content Appending or Pre-Pending• View Manipulations• Custom SES support

Page 7: ColdBox Interceptors

Creating an Interceptor

  myInterceptor.cfc

 <cfcomponent displayname="myInterceptor" extends="coldbox.system.interceptor"         output="false">    <cffunction name="preProcess" output="true">       <cfargument name="event" required="true">       <cfargument name="interceptData" required="true">         <!--- Do some really awesome stuff here --->   </cffunction> </cfcomponent>

Page 8: ColdBox Interceptors

Creating an Interceptor

coldbox.cfc    interceptors =      [            {                  class="path.to.myInterceptor"            }      ];

Page 9: ColdBox Interceptors

Create a custom interception point

 coldbox.cfc interceptorSettings =      {            throwOnInvalidStates = false,            customInterceptionPoints = "refreshContentHierarchy"      };           ...   interceptors =      [            {                  class="interceptors.contentHierarchySynch",                  properties={}            }   ]; 

Page 10: ColdBox Interceptors

Create a custom interception point

 contentHierarchySynch.cfc  <cfcomponent displayname="contentHierarchySynch"       extends="coldbox.system.interceptor" output="false" singleton="true">   <cfproperty name="contentService" inject="model:contentService">      <cffunction name="refreshContentHierarchy" access="public" output="false">       <cfargument name="event">       <cfargument name="interceptData">                   <cfif not interceptData.justKidding>                  <cfset contentService.contentXrefNodeBackfill()>            </cfif>   </cffunction> </cfcomponent>  

Page 11: ColdBox Interceptors

Create a custom interception point

  Somewhere in my handlers ...   var interceptData = {};interceptData.justKidding = false;announceInterception('refreshContentHierarchy', interceptData);  Somewhere in my model...

var interceptData = {};interceptData.justKidding = true;interceptorService.processState("refreshContentHierarchy",interceptData);

Page 12: ColdBox Interceptors

Interceptor Properties

You can include properties in the config when you declare an interceptor.  These properties are available during execution to control how the interceptor behaves. {      class="coldbox.system.interceptors.Autowire",      properties =                        {                              debugMode="false",                              enableSetterInjection="false"                        }}

Page 13: ColdBox Interceptors

Interceptor Properties

 Interceptors can use these properties with built-in functions including: • propertyExists()• getProperty(name)• setProperty(name, value)

if(!properyExists("configFile"))    {            setProperty("configFile","defaultConfig.cfc")    } loadConfig(getProperty("configFile"));

Page 14: ColdBox Interceptors

Interceptor chaining

If multiple interceptors are listening to the same interception point they will be chained together and executed in the order they are declared in the config.  

Any interceptor can break the chain by returning a value of true. preProcess 1 (Returns false or void)preProcess 2 (Returns false or void)preProcess 3 (Returns true)preProcess 4 (Doesn't get executed)

Page 15: ColdBox Interceptors

Interceptor chaining

ColdBox also supplies each execution chain with a buffer object that can be appended to.  Any content in the buffer at the end of the execution chain will be flushed out to the page. <cffunction name="preRender" access="public" returntype="boolean" output="false" >      <cfargument name="event" required="true">      <cfargument name="interceptData" required="true">            <cfscript>            //clear all of it first            clearBuffer();            //Append to buffer            appendToBuffer('I want this text at the bottom of every page.');          </cfscript>    </cffunction>

Page 16: ColdBox Interceptors

Code Examples

  •Form Parser

•JavaScript Defer

•Browser Snob

•SES

Page 17: ColdBox Interceptors

Questions?• Brad Wood• www.codersrevolution.com• [email protected]

• Mailing List: groups.google.com/group/coldbox

• Docs: http://wiki.coldbox.org/wiki/Interceptors.cfm

• Website:http://www.coldbox.org/