org.apache.camel.swagger.RestSwaggerProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-swagger-java Show documentation
Show all versions of camel-swagger-java Show documentation
Rest-dsl support for using swagger api-doc
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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 org.apache.camel.swagger;
import java.util.Collections;
import java.util.Locale;
import java.util.Map;
import io.swagger.jaxrs.config.BeanConfig;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.spi.RestConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Deprecated
public class RestSwaggerProcessor implements Processor {
private static final Logger LOG = LoggerFactory.getLogger(RestSwaggerProcessor.class);
private final BeanConfig swaggerConfig;
private final RestSwaggerSupport support;
private final RestConfiguration configuration;
public RestSwaggerProcessor(Map parameters,
RestConfiguration configuration) {
this.configuration = configuration;
this.support = new RestSwaggerSupport();
this.swaggerConfig = new BeanConfig();
if (parameters == null) {
parameters = Collections.emptyMap();
}
support.initSwagger(swaggerConfig, parameters);
}
@Override
public void process(Exchange exchange) throws Exception {
String route = exchange.getIn().getHeader(Exchange.HTTP_PATH, String.class);
String accept = exchange.getIn().getHeader("Accept", String.class);
RestApiResponseAdapter adapter = new ExchangeRestApiResponseAdapter(exchange);
// whether to use json or yaml
boolean json = false;
boolean yaml = false;
if (route != null && route.endsWith("/swagger.json")) {
json = true;
route = route.substring(0, route.length() - 13);
} else if (route != null && route.endsWith("/swagger.yaml")) {
yaml = true;
route = route.substring(0, route.length() - 13);
}
if (accept != null && !json && !yaml) {
json = accept.toLowerCase(Locale.US).contains("json");
yaml = accept.toLowerCase(Locale.US).contains("yaml");
}
if (!json && !yaml) {
// json is default
json = true;
}
try {
support.renderResourceListing(exchange.getContext(), adapter, swaggerConfig, json, yaml,
exchange.getIn().getHeaders(), exchange.getContext().getClassResolver(), configuration);
} catch (Exception e) {
LOG.warn("Error rendering Swagger API due {}", e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy