
io.github.microcks.web.ResourceController Maven / Gradle / Ivy
/*
* Licensed to Laurent Broudoux (the "Author") under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Author 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 io.github.microcks.web;
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.ResourceRepository;
import io.github.microcks.repository.ServiceRepository;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
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.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.util.List;
import java.util.stream.Stream;
/**
* A controller for distributing or genetation resources associated to services mocked within Microcks.
* @author laurent
*/
@org.springframework.web.bind.annotation.RestController
@RequestMapping("/api")
public class ResourceController {
/** A simple logger for diagnostic messages. */
private static Logger log = LoggerFactory.getLogger(ResourceController.class);
private static final String SWAGGER_20 = "swagger_20";
private static final String OPENAPI_30 = "openapi_30";
private static final String SERVICE_PATTERN = "\\{service\\}";
private static final String VERSION_PATTERN = "\\{version\\}";
private static final String RESOURCE_PATTERN = "\\{resource\\}";
@Autowired
private ResourceRepository resourceRepository;
@Autowired
private ServiceRepository serviceRepository;
@RequestMapping(value = "/resources/{name}", method = RequestMethod.GET)
public ResponseEntity> execute(
@PathVariable("name") String name,
HttpServletRequest request
) {
String extension = request.getRequestURI().substring(request.getRequestURI().lastIndexOf('.'));
log.info("Requesting resource named " + name);
Resource resource = resourceRepository.findByName(name);
if (resource != null){
HttpHeaders headers = new HttpHeaders();
if (".json".equals(extension)) {
headers.set("Content-Type", "application/json");
} else if (".yaml".equals(extension) || ".yml".equals(extension)) {
headers.set("Content-Type", "text/yaml");
} else if (".wsdl".equals(extension) || ".xsd".equals(extension)) {
headers.set("Content-Type", "text/xml");
}
return new ResponseEntity
© 2015 - 2025 Weber Informatics LLC | Privacy Policy