Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright The Microcks 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 io.github.microcks.web;
import io.github.microcks.domain.GenericResource;
import io.github.microcks.domain.Operation;
import io.github.microcks.domain.Resource;
import io.github.microcks.domain.Service;
import io.github.microcks.domain.ServiceType;
import io.github.microcks.repository.GenericResourceRepository;
import io.github.microcks.repository.ResourceRepository;
import io.github.microcks.repository.ServiceRepository;
import io.github.microcks.util.ResourceUtil;
import io.github.microcks.util.SafeLogger;
import io.github.microcks.util.openapi.OpenAPISchemaBuilder;
import com.fasterxml.jackson.databind.JsonNode;
import org.bson.Document;
import org.springframework.http.ContentDisposition;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.InputStream;
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
import java.util.List;
import java.util.Optional;
import static io.github.microcks.web.DynamicMockRestController.ID_FIELD;
/**
* A controller for distributing or generating resources associated to services mocked within Microcks.
* @author laurent
*/
@org.springframework.web.bind.annotation.RestController
@RequestMapping("/api")
public class ResourceController {
/** A safe logger for filtering user-controlled data in diagnostic messages. */
private static final SafeLogger log = SafeLogger.getLogger(ResourceController.class);
private static final String SWAGGER_20 = "swagger_20";
private static final String OPENAPI_30 = "openapi_30";
private final ResourceRepository resourceRepository;
private final ServiceRepository serviceRepository;
private final GenericResourceRepository genericResourceRepository;
/**
* Create a new ResourceController with mandatory components.
* @param resourceRepository The repository to access resource definitions.
* @param serviceRepository The repository to access service definitions.
* @param genericResourceRepository The repository to access generic resource definitions.
*/
public ResourceController(ResourceRepository resourceRepository, ServiceRepository serviceRepository,
GenericResourceRepository genericResourceRepository) {
this.resourceRepository = resourceRepository;
this.serviceRepository = serviceRepository;
this.genericResourceRepository = genericResourceRepository;
}
@GetMapping(value = "/resources/{name}")
public ResponseEntity