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

net.kaczmarzyk.spring.data.jpa.swagger.springdoc.SpecificationArgResolverSpringdocOperationCustomizer Maven / Gradle / Ivy

Go to download

An alternative API for filtering data with Spring MVC and Spring Data JPA. This library provides a custom HandlerMethodArgumentResolver that transforms HTTP parameters into a Specification object ready to use with Spring Data repositories.

There is a newer version: 3.1.0
Show newest version
/**
 * Copyright 2014-2022 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 net.kaczmarzyk.spring.data.jpa.swagger.springdoc;

import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.models.Operation;
import io.swagger.v3.oas.models.media.Schema;
import io.swagger.v3.oas.models.media.StringSchema;
import io.swagger.v3.oas.models.parameters.HeaderParameter;
import io.swagger.v3.oas.models.parameters.Parameter;
import io.swagger.v3.oas.models.parameters.PathParameter;
import io.swagger.v3.oas.models.parameters.QueryParameter;
import net.kaczmarzyk.spring.data.jpa.web.annotation.*;
import org.springdoc.core.SpringDocUtils;
import org.springdoc.core.customizers.OperationCustomizer;
import org.springframework.core.MethodParameter;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.method.HandlerMethod;

import java.lang.annotation.Annotation;
import java.util.*;
import java.util.function.Function;

import static io.swagger.v3.oas.annotations.enums.ParameterIn.*;
import static java.util.Arrays.asList;
import static java.util.Arrays.stream;
import static java.util.Collections.emptyList;
import static java.util.Collections.singletonList;
import static java.util.Objects.isNull;
import static java.util.Optional.ofNullable;
import static java.util.stream.Collectors.toList;

/**
 * @author Konrad Hajduga (Tratif sp. z o.o.)
 */
public class SpecificationArgResolverSpringdocOperationCustomizer implements OperationCustomizer {

	private static final Schema DEFAULT_PARAMETER_SCHEMA = new StringSchema();

	// Static code block below is necessary to ignore parameters of Specification type in controller method
	static {
		SpringDocUtils.getConfig().addRequestWrapperToIgnore(Specification.class);
	}

	private static final Map, Function>> NESTED_SPEC_ANNOTATION_EXTRACTORS = new HashMap<>();

	static {
		NESTED_SPEC_ANNOTATION_EXTRACTORS.put(Spec.class, annotation -> singletonList((Spec) annotation));
		NESTED_SPEC_ANNOTATION_EXTRACTORS.put(And.class, annotation -> extractSpecsFromAnd((And) annotation));
		NESTED_SPEC_ANNOTATION_EXTRACTORS.put(Or.class, annotation -> extractSpecsFromOr((Or) annotation));
		NESTED_SPEC_ANNOTATION_EXTRACTORS.put(Conjunction.class, annotation -> extractSpecsFromConjunction((Conjunction) annotation));
		NESTED_SPEC_ANNOTATION_EXTRACTORS.put(Disjunction.class, annotation -> extractSpecsFromDisjunction((Disjunction) annotation));
	}

	@Override
	public Operation customize(Operation operation, HandlerMethod handlerMethod) {
		if (isNull(operation) || isNull(handlerMethod)) return operation;

		List requiredParameters = extractRequiredParametersFromHandlerMethod(handlerMethod);

		stream(handlerMethod.getMethodParameters())
			.map(this::extractAnnotationsFromMethodParameter)
			.map(this::extractNestedSpecificationsFromAnnotations)
			.map(specs -> createParametersFromSpecs(specs, requiredParameters))
			.flatMap(Collection::stream)
			.distinct()
			.collect(toList())
			.forEach(operation::addParametersItem);

		return operation;
	}

	private List extractRequiredParametersFromHandlerMethod(HandlerMethod handlerMethod) {
		return ofNullable(handlerMethod.getMethodAnnotation(RequestMapping.class))
			.map(RequestMapping::params)
			.map(Arrays::asList)
			.orElse(emptyList());
	}

	private List extractAnnotationsFromMethodParameter(MethodParameter methodParameter) {

		List annotations = new ArrayList<>(
			asList(methodParameter.getParameterAnnotations()));

		if (methodParameter.getParameterType() != Specification.class) {
			List innerParameterAnnotations = asList(methodParameter.getParameterType().getAnnotations());
			annotations.addAll(innerParameterAnnotations);
		}

		return annotations;
	}

	private List extractNestedSpecificationsFromAnnotations(List annotations) {

		return annotations.stream()
			.filter(annotation -> NESTED_SPEC_ANNOTATION_EXTRACTORS.containsKey(annotation.annotationType()))
			.map(annotation -> NESTED_SPEC_ANNOTATION_EXTRACTORS.get(annotation.annotationType())
				.apply(annotation))
			.flatMap(Collection::stream)
			.collect(toList());
	}

	private static List extractSpecsFromOr(Or or) {
		return asList(or.value());
	}

	private static List extractSpecsFromAnd(And and) {
		return asList(and.value());
	}

	private static List extractSpecsFromConjunction(Conjunction conjunction) {
		List conjunctionSpecs = new ArrayList<>(asList(conjunction.and()));

		stream(conjunction.value())
			.map(Or::value)
			.flatMap(Arrays::stream)
			.forEach(conjunctionSpecs::add);

		return conjunctionSpecs;
	}

	private static List extractSpecsFromDisjunction(Disjunction conjunction) {
		List disjunctionSpecs = new ArrayList<>(asList(conjunction.or()));

		stream(conjunction.value())
			.map(And::value)
			.flatMap(Arrays::stream)
			.forEach(disjunctionSpecs::add);

		return disjunctionSpecs;
	}

	private List createParametersFromSpecs(List specs, List requiredParameters) {

		return specs.stream()
			.map(spec -> {
				List specParameters = new ArrayList<>();
				specParameters.addAll(createParameters(spec.params(), requiredParameters, QUERY));
				specParameters.addAll(createParameters(spec.pathVars(), requiredParameters, PATH));
				specParameters.addAll(createParameters(spec.headers(), requiredParameters, HEADER));

				return specParameters;
			})
			.flatMap(Collection::stream)
			.collect(toList());
	}

	private List createParameters(String[] parameters, List requiredParameters, ParameterIn parameterIn) {
		return stream(parameters)
			.map(parameterName -> {
				Parameter specParam = generateParameterFromParameterIn(parameterIn);
				specParam.setName(parameterName);
				specParam.setRequired(requiredParameters.contains(parameterName));
				specParam.setSchema(DEFAULT_PARAMETER_SCHEMA);

				return specParam;
			})
			.collect(toList());
	}

	private Parameter generateParameterFromParameterIn(ParameterIn parameterIn) {
		if (parameterIn == PATH) {
			return new PathParameter();
		} else if (parameterIn == HEADER) {
			return new HeaderParameter();
		}
		return new QueryParameter();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy