I'm using grails to build an application that functions primarily as a service framework. My question is: Can services be secured in the same fashion as controllers?

uri-based example:

class SecurityFilters {
  def filters = {
    all(uri: "/**") {
      before = {
        // Ignore direct views (e.g. the default main index page).
        if (!controllerName) return true
        // Access control by convention. 
        accessControl()
      }
    } 
  } 
}
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I've no idea if the Shiro plugin supports this, but the Acegi plugin does, albeit in an "experimental" fashion (whatever that means).

Update

Having read the question properly, it seems you're asking whether you can use filters to secure services. If this is the case, then Shiro is somewhat irrelevant, because it's the filters that are performing authorisation, not Shiro.

So to answer your question about whether you can use filters to secure services, the answer is no, because you only have access to the controller from within a filter. However, you could use Groovy metaprogramming to do AOP-style method interception on services.

The basic approach is:

  • For each service, add an invokeMethod property to the MetaClass
  • The value of this property should be a Closure. This closure will intercept (i.e. be called instead of) each method called on the service.
  • This closure should
    • Perform the security checks
    • Invoke the original method if authorization is successful and throw an exception (or show an error) if authorization fails

Aside

If at all possible, I would strongly recommend using a proven security plugin (e.g. Shiro, Acegi) to perform the authorization checks rather than rolling your own in the manner described above.

link|improve this answer
Thanks. I'm using shiro, not acegi. I would like to take advantage of filtering to secure the services. Sorry if that wasn't clear. – Brandon Feb 3 '10 at 16:01
Thank you for the fantastic advice. – Brandon Feb 26 '10 at 16:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.