|
| 1 | +/* |
| 2 | + * Copyright 2015-2021 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.springframework.data.web.querydsl; |
| 17 | + |
| 18 | +import java.lang.reflect.Method; |
| 19 | +import java.util.Optional; |
| 20 | + |
| 21 | +import org.springframework.core.MethodParameter; |
| 22 | +import org.springframework.core.ResolvableType; |
| 23 | +import org.springframework.core.convert.ConversionService; |
| 24 | +import org.springframework.core.convert.support.DefaultConversionService; |
| 25 | +import org.springframework.data.querydsl.binding.QuerydslBindingsFactory; |
| 26 | +import org.springframework.data.querydsl.binding.QuerydslPredicate; |
| 27 | +import org.springframework.data.querydsl.binding.QuerydslPredicateBuilder; |
| 28 | +import org.springframework.data.util.ClassTypeInformation; |
| 29 | +import org.springframework.data.util.TypeInformation; |
| 30 | +import org.springframework.web.method.support.HandlerMethodArgumentResolver; |
| 31 | + |
| 32 | +import com.querydsl.core.types.Predicate; |
| 33 | + |
| 34 | +/** |
| 35 | + * {@link HandlerMethodArgumentResolver} to allow injection of {@link com.querydsl.core.types.Predicate} into Spring MVC |
| 36 | + * controller methods. |
| 37 | + * |
| 38 | + * @author Christoph Strobl |
| 39 | + * @author Oliver Gierke |
| 40 | + * @author Matías Hermosilla |
| 41 | + * @since 1.11 |
| 42 | + */ |
| 43 | +public abstract class QuerydslPredicateArgumentResolverSupport { |
| 44 | + |
| 45 | + private static final ResolvableType PREDICATE = ResolvableType.forClass(Predicate.class); |
| 46 | + protected static final ResolvableType OPTIONAL_OF_PREDICATE = ResolvableType.forClassWithGenerics(Optional.class, |
| 47 | + PREDICATE); |
| 48 | + |
| 49 | + protected final QuerydslBindingsFactory bindingsFactory; |
| 50 | + protected final QuerydslPredicateBuilder predicateBuilder; |
| 51 | + |
| 52 | + /** |
| 53 | + * Creates a new {@link QuerydslPredicateArgumentResolver} using the given {@link ConversionService}. |
| 54 | + * |
| 55 | + * @param factory |
| 56 | + * @param conversionService defaults to {@link DefaultConversionService} if {@literal null}. |
| 57 | + */ |
| 58 | + public QuerydslPredicateArgumentResolverSupport(QuerydslBindingsFactory factory, |
| 59 | + Optional<ConversionService> conversionService) { |
| 60 | + |
| 61 | + this.bindingsFactory = factory; |
| 62 | + this.predicateBuilder = new QuerydslPredicateBuilder(conversionService.orElseGet(DefaultConversionService::new), |
| 63 | + factory.getEntityPathResolver()); |
| 64 | + } |
| 65 | + |
| 66 | + /* |
| 67 | + * (non-Javadoc) |
| 68 | + * @see org.springframework.web.method.support.HandlerMethodArgumentResolver#supportsParameter(org.springframework.core.MethodParameter) |
| 69 | + */ |
| 70 | + public boolean supportsParameter(MethodParameter parameter) { |
| 71 | + |
| 72 | + ResolvableType type = ResolvableType.forMethodParameter(parameter); |
| 73 | + |
| 74 | + if (PREDICATE.isAssignableFrom(type) || OPTIONAL_OF_PREDICATE.isAssignableFrom(type)) { |
| 75 | + return true; |
| 76 | + } |
| 77 | + |
| 78 | + if (parameter.hasParameterAnnotation(QuerydslPredicate.class)) { |
| 79 | + throw new IllegalArgumentException( |
| 80 | + String.format("Parameter at position %s must be of type Predicate but was %s.", |
| 81 | + parameter.getParameterIndex(), parameter.getParameterType())); |
| 82 | + } |
| 83 | + |
| 84 | + return false; |
| 85 | + } |
| 86 | + |
| 87 | + /** |
| 88 | + * Obtains the domain type information from the given method parameter. Will favor an explicitly registered on |
| 89 | + * through {@link QuerydslPredicate#root()} but use the actual type of the method's return type as fallback. |
| 90 | + * |
| 91 | + * @param parameter must not be {@literal null}. |
| 92 | + * @return |
| 93 | + */ |
| 94 | + protected static TypeInformation<?> extractTypeInfo(MethodParameter parameter) { |
| 95 | + |
| 96 | + Optional<QuerydslPredicate> annotation = Optional |
| 97 | + .ofNullable(parameter.getParameterAnnotation(QuerydslPredicate.class)); |
| 98 | + |
| 99 | + return annotation.filter(it -> !Object.class.equals(it.root()))// |
| 100 | + .<TypeInformation<?>> map(it -> ClassTypeInformation.from(it.root()))// |
| 101 | + .orElseGet(() -> detectDomainType(parameter)); |
| 102 | + } |
| 103 | + |
| 104 | + private static TypeInformation<?> detectDomainType(MethodParameter parameter) { |
| 105 | + |
| 106 | + Method method = parameter.getMethod(); |
| 107 | + |
| 108 | + if (method == null) { |
| 109 | + throw new IllegalArgumentException("Method parameter is not backed by a method!"); |
| 110 | + } |
| 111 | + |
| 112 | + return detectDomainType(ClassTypeInformation.fromReturnTypeOf(method)); |
| 113 | + } |
| 114 | + |
| 115 | + private static TypeInformation<?> detectDomainType(TypeInformation<?> source) { |
| 116 | + |
| 117 | + if (source.getTypeArguments().isEmpty()) { |
| 118 | + return source; |
| 119 | + } |
| 120 | + |
| 121 | + TypeInformation<?> actualType = source.getActualType(); |
| 122 | + |
| 123 | + if (actualType == null) { |
| 124 | + throw new IllegalArgumentException(String.format("Could not determine domain type from %s!", source)); |
| 125 | + } |
| 126 | + |
| 127 | + if (source != actualType) { |
| 128 | + return detectDomainType(actualType); |
| 129 | + } |
| 130 | + |
| 131 | + if (source instanceof Iterable) { |
| 132 | + return source; |
| 133 | + } |
| 134 | + |
| 135 | + return detectDomainType(source.getRequiredComponentType()); |
| 136 | + } |
| 137 | + |
| 138 | +} |
0 commit comments