How can I dynamically build a list of mappings - instead of:

class UrlMappings {
static mappings = {
   "/helpdesk/user/$action?/$id?" (controller="helpdeskuser")
   "/helpdesk/group/$action?/$id?" (controller="helpdeskgroup")
   "/helpdesk/company/$action?/$id?" (controller="helpdeskcompany")
   "/helpdesk/account/$action?/$id?" (controller="helpdeskaccount")
   "/admin/company/$action?/$id?" (controller="admincompany")
   "/admin/account/$action?/$id?" (controller="adminaccount")
 }
}

something like this pseudo code:

class UrlMappings {
static mappings = {
   application.controllerClasses.each {
     if(it.name.startsWith('helpdesk'))
        "/helpdesk/${it.name}/$action?/$id?" (controller="${it.name}")
     if(it.name.startsWith('admin'))
        "/admin/${it.name}/$action?/$id?" (controller="${it.name}")
   }
 }
}

(I don't understand what the static mappings are - a hash map? free variables?)

What I am trying to achieve are mappings based on the controller type - e.g. helpdesk, admin or user controllers. Once I have set up the mappings I want to add security based on URLs but I don't want to map each controller individually:

grails.plugins.springsecurity.interceptUrlMap = [
   '/helpdesk/**':   ['ROLE_HELPDESK','ROLE_ADMIN'],
]
link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

I've just done the following in my application:

import org.codehaus.groovy.grails.commons.ApplicationHolder

class UrlMappings {
  static mappings = {        
    for( controllerClass in ApplicationHolder.application.controllerClasses) {
      // Admin Controllers first
      if( controllerClass.name.startsWith("Admin")){
        // note... fixes the case so that AdminUserController maps to /admin/user
        "/admin/${controllerClass.name[5].toLowerCase() + controllerClass.name[6..-1]}/$action?/$id?" {
          controller = "admin${controllerClass.name[5..-1]}".toString()
        }
      }
    }
  }
}

I'd not actually done this before, your question prompted me to fix this is my app. It's been one of those things I've been trying to do for a while.

link|improve this answer
This works, thanks. – DavidC Nov 20 '10 at 16:55
Except that now <g:link controller="${c}"> and I guess controller redirect does not return the correct url. – DavidC Nov 20 '10 at 18:24
mmm..it should <a href="${createLink(controller:'adminDashboard')}">Dashboard</a> in my app renders /admin/dashboard using the same code as above. – Gareth Davis Nov 20 '10 at 19:08
feedback

You can embed the $controller variable, see the documentation.

static mappings = {
   "/helpdesk/$controller/$action?/$id?"()
}

BTW, the mappings to controllers and, optional, their views are enclosed by normal brackets (), not curly ones {}.

Such Groovy Scripts (as UrlMappings.groovy) are parsed by a ConfigSlurper instance, which finally converts them to a ConfigObject that implements Map. Admittedly, I'm either not sure how this parsing is accomplished in detail.

EDIT:

Here's an UrlMappings.groovy that comes somewhat near to what you want. (Search for "/$_ctrl/$_action/$id?".) The code, BTW, gets evaluated at runtime. Nevertheless, I haven't been able to put the grailsApplication to work.

Another idea was to add a javax.servlet.Filter to the web application, i.e., by subclassing Grails' UrlMappingsFilter.

link|improve this answer
Sorry - I should have been clearer - I want to map it depending in the controller name or package etc e.g.:class UrlMappings { static mappings = { application.controllerClasses.each { if (it.name.startsWith("help")) "/helpdesk/${it.name}/$action?/$id?" (controller="${it.name}") else if (it.name.startsWith("admin")){ "/admin/${it.name}/$action?/$id?" (controller="${it.name}") } } } } – DavidC Nov 20 '10 at 14:10
Modified question with better formatting than above comment. – DavidC Nov 20 '10 at 14:17
Thanks for the link - very flexible – DavidC Nov 20 '10 at 16:59
feedback

Your Answer

 
or
required, but never shown

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