
org.apache.cxf.jaxrs.swagger.SwaggerUtils Maven / Gradle / Ivy
/**
* 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.cxf.jaxrs.swagger;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.logging.Logger;
import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
import org.apache.cxf.common.classloader.ClassLoaderUtils;
import org.apache.cxf.common.logging.LogUtils;
import org.apache.cxf.common.util.StringUtils;
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.helpers.IOUtils;
import org.apache.cxf.jaxrs.json.basic.JsonMapObjectReaderWriter;
import org.apache.cxf.jaxrs.model.Parameter;
import org.apache.cxf.jaxrs.model.ParameterType;
import org.apache.cxf.jaxrs.model.UserApplication;
import org.apache.cxf.jaxrs.model.UserOperation;
import org.apache.cxf.jaxrs.model.UserResource;
import org.apache.cxf.jaxrs.utils.ResourceUtils;
public final class SwaggerUtils {
private static final Logger LOG = LogUtils.getL7dLogger(ResourceUtils.class);
private static final Map SWAGGER_TYPE_MAP;
static {
SWAGGER_TYPE_MAP = new HashMap();
SWAGGER_TYPE_MAP.put("string", "String");
SWAGGER_TYPE_MAP.put("integer", "long");
SWAGGER_TYPE_MAP.put("float", "float");
SWAGGER_TYPE_MAP.put("double", "double");
SWAGGER_TYPE_MAP.put("int", "int");
SWAGGER_TYPE_MAP.put("long", "long");
SWAGGER_TYPE_MAP.put("byte", "byte");
SWAGGER_TYPE_MAP.put("boolean", "boolean");
SWAGGER_TYPE_MAP.put("date", "java.util.Date");
SWAGGER_TYPE_MAP.put("dateTime", "java.util.Date");
SWAGGER_TYPE_MAP.put("File", "java.io.InputStream");
SWAGGER_TYPE_MAP.put("file", "java.io.InputStream");
}
private SwaggerUtils() {
}
public static UserApplication getUserApplication(String loc) {
return getUserApplication(loc, BusFactory.getThreadDefaultBus());
}
public static UserApplication getUserApplication(String loc, Bus bus) {
try {
InputStream is = ResourceUtils.getResourceStream(loc, bus);
if (is == null) {
return null;
}
return getUserApplicationFromStream(is);
} catch (Exception ex) {
LOG.warning("Problem with processing a user model at " + loc);
}
return null;
}
public static UserApplication getUserApplicationFromStream(InputStream is) throws IOException {
return getUserApplicationFromJson(IOUtils.readStringFromStream(is));
}
public static UserApplication getUserApplicationFromJson(String json) {
JsonMapObjectReaderWriter reader = new JsonMapObjectReaderWriter();
Map map = reader.fromJson(json);
UserApplication app = new UserApplication();
String relativePath = (String)map.get("basePath");
app.setBasePath(StringUtils.isEmpty(relativePath) ? "/" : relativePath);
Map> userOpsMap = new LinkedHashMap>();
Set tags = new HashSet();
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy