io.github.microcks.web.UploadArtifactController 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.Service;
import io.github.microcks.service.ServiceService;
import io.github.microcks.util.HTTPDownloader;
import io.github.microcks.util.MockRepositoryImportException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
import java.util.List;
/**
* This is a controller for managing import of uploaded or downloaded artifact contract files.
* @author laurent
*/
@RestController
@RequestMapping("/api")
public class UploadArtifactController {
/** A simple logger for diagnostic messages. */
private static Logger log = LoggerFactory.getLogger(UploadArtifactController.class);
@Autowired
private ServiceService serviceService;
@RequestMapping(value = "/artifact/download", method = RequestMethod.POST)
public ResponseEntity> importArtifact(@RequestParam(value = "url", required = true) String url) {
if (!url.isEmpty()) {
List services = null;
try {
// Download remote to local file before import.
File localFile = HTTPDownloader.handleHTTPDownloadToFile(url, null, true);
// Now try importing services.
services = serviceService.importServiceDefinition(localFile);
} catch (IOException ioe) {
log.error("Exception while retrieving remote item " + url, ioe);
return new ResponseEntity
© 2015 - 2025 Weber Informatics LLC | Privacy Policy