01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.cocoon.matching;
18:
19: import org.apache.avalon.framework.configuration.Configurable;
20: import org.apache.avalon.framework.configuration.Configuration;
21: import org.apache.avalon.framework.configuration.ConfigurationException;
22: import org.apache.avalon.framework.parameters.Parameters;
23:
24: import org.apache.cocoon.environment.ObjectModelHelper;
25:
26: import java.util.Map;
27:
28: /**
29: * Matches a request attribute against a wildcard expression.
30: *
31: * <p><b>Global and local configuration</b></p>
32: * <tableborder="1">
33: * <tr><td><code>attribute-name</code></td><td>String identifying the request attribute</td></tr>
34: * </table>
35: *
36: * @author <a href="mailto:haul@apache.org">Christian Haul</a>
37: * @author <a href="mailto:sylvain@apache.org">Sylvain Wallez</a>
38: * @author <a href="mailto:vgritsenko@apache.org">Vadim Gritsenko</a>
39: * @version CVS $Id: WildcardRequestAttributeMatcher.java 433543 2006-08-22 06:22:54Z crossley $
40: */
41: public class WildcardRequestAttributeMatcher extends
42: AbstractWildcardMatcher implements Configurable {
43: private String defaultParam;
44:
45: public void configure(Configuration config)
46: throws ConfigurationException {
47: this .defaultParam = config.getChild("attribute-name").getValue(
48: null);
49: if (getLogger().isDebugEnabled()) {
50: getLogger().debug(
51: "Default attribute-name is = '" + this .defaultParam
52: + "'");
53: }
54: }
55:
56: protected String getMatchString(Map objectModel,
57: Parameters parameters) {
58:
59: String paramName = parameters.getParameter("attribute-name",
60: this .defaultParam);
61: if (paramName == null) {
62: getLogger().warn("No attribute name given. FAILING");
63: return null;
64: }
65:
66: Object result = ObjectModelHelper.getRequest(objectModel)
67: .getAttribute(paramName);
68: if (result == null) {
69: getLogger().debug(
70: "Request attribute '" + paramName + "' not set.");
71: return null;
72: }
73:
74: return result.toString();
75: }
76: }
|