All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.rest.arg.PathArg Maven / Gradle / Ivy

// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you 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.apache.juneau.rest.arg;

import static org.apache.juneau.http.annotation.PathAnnotation.*;
import java.lang.reflect.*;

import org.apache.juneau.*;
import org.apache.juneau.collections.*;
import org.apache.juneau.common.internal.*;
import org.apache.juneau.http.annotation.*;
import org.apache.juneau.httppart.*;
import org.apache.juneau.reflect.*;
import org.apache.juneau.rest.*;
import org.apache.juneau.rest.annotation.*;
import org.apache.juneau.rest.httppart.*;
import org.apache.juneau.rest.util.*;

/**
 * Resolves method parameters and parameter types annotated with {@link Path} on {@link RestOp}-annotated Java methods.
 *
 * 

* The parameter value is resolved using: *

* opSession * .{@link RestOpSession#getRequest() getRequest}() * .{@link RestRequest#getPathParams() getPathParams}() * .{@link RequestPathParams#get(String) get}(name) * .{@link RequestPathParam#as(Class) as}(type); *

* *

* {@link HttpPartSchema schema} is derived from the {@link Path} annotation. * *

See Also:
*/ public class PathArg implements RestOpArg { private final HttpPartParser partParser; private final HttpPartSchema schema; private final String name, def; private final Type type; /** * Static creator. * * @param paramInfo The Java method parameter being resolved. * @param annotations The annotations to apply to any new part parsers. * @param pathMatcher Path matcher for the specified method. * @return A new {@link PathArg}, or null if the parameter is not annotated with {@link Path}. */ public static PathArg create(ParamInfo paramInfo, AnnotationWorkList annotations, UrlPathMatcher pathMatcher) { if (paramInfo.hasAnnotation(Path.class) || paramInfo.getParameterType().hasAnnotation(Path.class)) return new PathArg(paramInfo, annotations, pathMatcher); return null; } /** * Constructor. * * @param paramInfo The Java method parameter being resolved. * @param annotations The annotations to apply to any new part parsers. * @param pathMatcher Path matcher for the specified method. */ protected PathArg(ParamInfo paramInfo, AnnotationWorkList annotations, UrlPathMatcher pathMatcher) { this.name = getName(paramInfo, pathMatcher); this.def = findDef(paramInfo).orElse(null); this.type = paramInfo.getParameterType().innerType(); this.schema = HttpPartSchema.create(Path.class, paramInfo); Class pp = schema.getParser(); this.partParser = pp != null ? HttpPartParser.creator().type(pp).apply(annotations).create() : null; } private String getName(ParamInfo pi, UrlPathMatcher pathMatcher) { String p = findName(pi).orElse(null); if (p != null) return p; if (pathMatcher != null) { int idx = 0; int i = pi.getIndex(); MethodInfo mi = pi.getMethod(); for (int j = 0; j < i; j++) if (mi.getParam(i).getAnnotation(Path.class) != null) idx++; String[] vars = pathMatcher.getVars(); if (vars.length <= idx) throw new ArgException(pi, "Number of attribute parameters exceeds the number of URL pattern variables"); // Check for {#} variables. String idxs = String.valueOf(idx); for (String var : vars) if (StringUtils.isNumeric(var) && var.equals(idxs)) return var; return pathMatcher.getVars()[idx]; } throw new ArgException(pi, "@Path used without name or value"); } @Override /* RestOpArg */ public Object resolve(RestOpSession opSession) throws Exception { RestRequest req = opSession.getRequest(); if (name.equals("*")) { JsonMap m = new JsonMap(); req.getPathParams().stream().forEach(x -> m.put(x.getName(), x.getValue())); return req.getBeanSession().convertToType(m, type); } HttpPartParserSession ps = partParser == null ? req.getPartParserSession() : partParser.getPartSession(); return req.getPathParams().get(name).parser(ps).schema(schema).def(def).as(type).orElse(null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy