org.grails.web.mapping.mvc.AbstractGrailsControllerUrlMappings.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grails-web-url-mappings Show documentation
Show all versions of grails-web-url-mappings Show documentation
Grails Web Application Framework
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.grails.web.mapping.mvc
import grails.core.GrailsApplication
import grails.core.GrailsClass
import grails.core.GrailsControllerClass
import grails.util.GrailsNameUtils
import grails.web.UrlConverter
import grails.web.mapping.*
import groovy.transform.Canonical
import groovy.transform.CompileStatic
import org.grails.core.artefact.ControllerArtefactHandler
import org.grails.web.servlet.mvc.GrailsWebRequest
import org.springframework.http.HttpMethod
import java.util.concurrent.ConcurrentHashMap
/**
* A {@link UrlMappingsHolder} implementation that matches URLs directly onto controller instances
*
* @author Graeme Rocher
* @since 3.0
*/
@CompileStatic
abstract class AbstractGrailsControllerUrlMappings implements UrlMappings {
UrlMappings urlMappingsHolderDelegate
UrlConverter urlConverter
ConcurrentHashMap mappingsToGrailsControllerMap = new ConcurrentHashMap<>()
ConcurrentHashMap deferredMappings = new ConcurrentHashMap<>()
AbstractGrailsControllerUrlMappings(GrailsApplication grailsApplication, UrlMappings urlMappingsHolderDelegate, UrlConverter urlConverter = null) {
this.urlMappingsHolderDelegate = urlMappingsHolderDelegate
this.urlConverter = urlConverter
def controllerArtefacts = grailsApplication.getArtefacts(ControllerArtefactHandler.TYPE)
for(GrailsClass gc in controllerArtefacts) {
registerController((GrailsControllerClass)gc)
}
for (Map.Entry entry: deferredMappings.entrySet()) {
mappingsToGrailsControllerMap.putIfAbsent(entry.key, entry.value)
}
}
Collection addMappings(Closure mappings) {
urlMappingsHolderDelegate.addMappings(mappings)
}
Set allowedMethods(String uri) {
urlMappingsHolderDelegate.allowedMethods(uri)
}
@Override
List getExcludePatterns() {
urlMappingsHolderDelegate.getExcludePatterns()
}
@Override
UrlCreator getReverseMapping(String controller, String action, String pluginName, Map params) {
urlMappingsHolderDelegate.getReverseMapping(controller, action, pluginName, params)
}
@Override
UrlCreator getReverseMapping(String controller, String action, String namespace, String pluginName, String httpMethod, Map params) {
urlMappingsHolderDelegate.getReverseMapping(controller, action, namespace, pluginName, httpMethod, params)
}
@Override
UrlCreator getReverseMapping(String controller, String action, String namespace, String pluginName, String httpMethod, String version, Map params) {
urlMappingsHolderDelegate.getReverseMapping(controller, action, namespace, pluginName, httpMethod, version, params)
}
@Override
UrlCreator getReverseMapping(String controller, String action, String namespace, String pluginName, Map params) {
urlMappingsHolderDelegate.getReverseMapping(controller, action, namespace, pluginName, params)
}
@Override
UrlCreator getReverseMapping(String controller, String action, Map params) {
urlMappingsHolderDelegate.getReverseMapping(controller, action, params)
}
@Override
UrlCreator getReverseMappingNoDefault(String controller, String action, Map params) {
urlMappingsHolderDelegate.getReverseMappingNoDefault(controller, action, params)
}
@Override
UrlCreator getReverseMappingNoDefault(String controller, String action, String namespace, String pluginName, String httpMethod, Map params) {
urlMappingsHolderDelegate.getReverseMappingNoDefault(controller, action, namespace, pluginName, httpMethod, params)
}
@Override
UrlCreator getReverseMappingNoDefault(String controller, String action, String namespace, String pluginName, String httpMethod, String version, Map params) {
urlMappingsHolderDelegate.getReverseMappingNoDefault(controller, action, namespace, pluginName, httpMethod, version, params)
}
@Override
UrlMappingInfo match(String uri) {
def info = urlMappingsHolderDelegate.match(uri)
return collectControllerMapping(info)
}
@Override
UrlMappingInfo matchStatusCode(int responseCode) {
return collectControllerMapping( urlMappingsHolderDelegate.matchStatusCode(responseCode) )
}
@Override
UrlMappingInfo matchStatusCode(int responseCode, Throwable e) {
return collectControllerMapping( urlMappingsHolderDelegate.matchStatusCode(responseCode, e) )
}
void registerController(GrailsControllerClass controller) {
boolean hasUrlConverter = urlConverter != null
if(hasUrlConverter) {
controller.registerUrlConverter(urlConverter)
}
def namespace = hasUrlConverter ? urlConverter.toUrlElement( controller.namespace ) : controller.namespace
def plugin = hasUrlConverter ? urlConverter.toUrlElement( controller.pluginName ) : controller.pluginName
final boolean hasNamespace = namespace != null
final boolean hasPlugin = plugin != null
def controllerName = hasUrlConverter ? urlConverter.toUrlElement( controller.logicalPropertyName ) : controller.logicalPropertyName
String pluginNameToRegister = hasPlugin ? GrailsNameUtils.getPropertyNameForLowerCaseHyphenSeparatedName(plugin) : null
def defaultActionKey = new ControllerKey(namespace, controllerName, null, pluginNameToRegister)
mappingsToGrailsControllerMap.put(defaultActionKey, controller)
//Plugins should override others. Application controllers defaults should be deferred to ensure the right controller/action is chosen due to order being non deterministic
Map mapToUse = plugin ? mappingsToGrailsControllerMap : deferredMappings
if (hasNamespace) {
def noNamespaceDefaultActionKey = new ControllerKey(null, controllerName, null, pluginNameToRegister)
mapToUse.put(noNamespaceDefaultActionKey, controller)
if (hasPlugin) {
def noNamespaceNoPluginDefaultActionKey = new ControllerKey(null, controllerName, null, null)
mapToUse.put(noNamespaceNoPluginDefaultActionKey, controller)
}
}
if (hasPlugin) {
def noPluginDefaultActionKey = new ControllerKey(namespace, controllerName, null, null)
mapToUse.put(noPluginDefaultActionKey, controller)
}
for (action in controller.actions) {
action = hasUrlConverter ? urlConverter.toUrlElement(action) : action
def withPluginKey = new ControllerKey(namespace, controllerName, action, pluginNameToRegister)
mappingsToGrailsControllerMap.put(withPluginKey, controller)
if (hasNamespace) {
def withPluginKeyWithoutNamespaceKey = new ControllerKey(null, controllerName, action, pluginNameToRegister)
mapToUse.put(withPluginKeyWithoutNamespaceKey, controller)
if (hasPlugin) {
def withoutPluginKeyWithoutNamespace = new ControllerKey(null, controllerName, action, null)
mapToUse.put(withoutPluginKeyWithoutNamespace, controller)
}
}
if (hasPlugin) {
def withoutPluginKey = new ControllerKey(namespace, controllerName, action, null)
mapToUse.put(withoutPluginKey, controller)
}
}
}
protected UrlMappingInfo[] collectControllerMappings(UrlMappingInfo[] infos) {
def webRequest = GrailsWebRequest.lookup()
infos.collect({ UrlMappingInfo info ->
if (info.redirectInfo) {
return info
}
if (webRequest != null) {
webRequest.resetParams()
info.configure(webRequest)
}
ControllerKey controllerKey = new ControllerKey(info.namespace, info.controllerName, info.actionName, info.pluginName)
GrailsControllerClass controllerClass = info ? mappingsToGrailsControllerMap.get(controllerKey) : null
if (controllerClass) {
return new GrailsControllerUrlMappingInfo(controllerClass, info)
} else {
return info
}
}) as UrlMappingInfo[]
}
protected UrlMappingInfo collectControllerMapping(UrlMappingInfo info) {
GrailsControllerClass controllerClass = info ? mappingsToGrailsControllerMap.get(new ControllerKey(info.namespace, info.controllerName, info.actionName, info.pluginName)) : null
if (controllerClass && info) {
return new GrailsControllerUrlMappingInfo(controllerClass, info)
} else {
return info
}
}
@Canonical
static class ControllerKey {
String namespace
String controller
String action
String plugin
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy