|
|
|
|
@@ -0,0 +1,231 @@
|
|
|
|
|
package io.swagger.codegen.languages;
|
|
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.BooleanUtils;
|
|
|
|
|
|
|
|
|
|
import io.swagger.codegen.CliOption;
|
|
|
|
|
import io.swagger.codegen.CodegenModel;
|
|
|
|
|
import io.swagger.codegen.CodegenOperation;
|
|
|
|
|
import io.swagger.codegen.CodegenProperty;
|
|
|
|
|
import io.swagger.codegen.CodegenResponse;
|
|
|
|
|
import io.swagger.codegen.SupportingFile;
|
|
|
|
|
import io.swagger.codegen.languages.features.BeanValidationFeatures;
|
|
|
|
|
import io.swagger.codegen.languages.features.JbossFeature;
|
|
|
|
|
import io.swagger.codegen.languages.features.SwaggerFeatures;
|
|
|
|
|
import io.swagger.models.Operation;
|
|
|
|
|
|
|
|
|
|
public class JavaResteasyEapServerCodegen extends AbstractJavaJAXRSServerCodegen
|
|
|
|
|
implements JbossFeature, BeanValidationFeatures, SwaggerFeatures {
|
|
|
|
|
|
|
|
|
|
protected boolean useBeanValidation = true;
|
|
|
|
|
protected boolean generateJbossDeploymentDescriptor = true;
|
|
|
|
|
protected boolean useSwaggerFeature = false;
|
|
|
|
|
|
|
|
|
|
public JavaResteasyEapServerCodegen() {
|
|
|
|
|
|
|
|
|
|
super();
|
|
|
|
|
|
|
|
|
|
artifactId = "swagger-jaxrs-resteasy-eap-server";
|
|
|
|
|
|
|
|
|
|
outputFolder = "generated-code/JavaJaxRS-Resteasy-eap";
|
|
|
|
|
apiTemplateFiles.put("apiServiceImpl.mustache", ".java");
|
|
|
|
|
apiTestTemplateFiles.clear(); // TODO: add test template
|
|
|
|
|
|
|
|
|
|
// clear model and api doc template as AbstractJavaJAXRSServerCodegen
|
|
|
|
|
// does not support auto-generated markdown doc at the moment
|
|
|
|
|
//TODO: add doc templates
|
|
|
|
|
modelDocTemplateFiles.remove("model_doc.mustache");
|
|
|
|
|
apiDocTemplateFiles.remove("api_doc.mustache");
|
|
|
|
|
|
|
|
|
|
dateLibrary = "legacy";// TODO: change to joda
|
|
|
|
|
|
|
|
|
|
embeddedTemplateDir = templateDir = "JavaJaxRS" + File.separator + "resteasy" + File.separator + "eap";
|
|
|
|
|
|
|
|
|
|
cliOptions.add(CliOption.newBoolean(USE_BEANVALIDATION, "Use BeanValidation API annotations"));
|
|
|
|
|
cliOptions.add(CliOption.newBoolean(GENERATE_JBOSS_DEPLOYMENT_DESCRIPTOR, "Generate Jboss Deployment Descriptor"));
|
|
|
|
|
cliOptions.add(CliOption.newBoolean(USE_SWAGGER_FEATURE, "Use dynamic Swagger generator"));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getName() {
|
|
|
|
|
return "jaxrs-resteasy-eap";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getHelp() {
|
|
|
|
|
return "Generates a Java JAXRS-Resteasy Server application.";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void processOpts() {
|
|
|
|
|
super.processOpts();
|
|
|
|
|
|
|
|
|
|
if (additionalProperties.containsKey(GENERATE_JBOSS_DEPLOYMENT_DESCRIPTOR)) {
|
|
|
|
|
boolean generateJbossDeploymentDescriptorProp = convertPropertyToBooleanAndWriteBack(GENERATE_JBOSS_DEPLOYMENT_DESCRIPTOR);
|
|
|
|
|
this.setGenerateJbossDeploymentDescriptor(generateJbossDeploymentDescriptorProp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (additionalProperties.containsKey(USE_BEANVALIDATION)) {
|
|
|
|
|
this.setUseBeanValidation(convertPropertyToBoolean(USE_BEANVALIDATION));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (useBeanValidation) {
|
|
|
|
|
writePropertyBack(USE_BEANVALIDATION, useBeanValidation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (additionalProperties.containsKey(USE_SWAGGER_FEATURE)) {
|
|
|
|
|
this.setUseSwaggerFeature(convertPropertyToBoolean(USE_SWAGGER_FEATURE));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (useSwaggerFeature) {
|
|
|
|
|
writePropertyBack(USE_SWAGGER_FEATURE, useSwaggerFeature);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("pom.mustache", "", "pom.xml"));
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("gradle.mustache", "", "build.gradle"));
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("settingsGradle.mustache", "", "settings.gradle"));
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("README.mustache", "", "README.md"));
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("web.mustache", ("src/main/webapp/WEB-INF"), "web.xml"));
|
|
|
|
|
|
|
|
|
|
supportingFiles.add(new SupportingFile("JacksonConfig.mustache", (projectFolder + File.separator + "java" + '/' + invokerPackage).replace(".", "/"), "JacksonConfig.java"));
|
|
|
|
|
|
|
|
|
|
if (generateJbossDeploymentDescriptor) {
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("jboss-web.mustache", ("src/main/webapp/WEB-INF"), "jboss-web.xml"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writeOptional(outputFolder, new SupportingFile("RestApplication.mustache", (projectFolder + File.separator + "java" + '/' + invokerPackage).replace(".", "/"), "RestApplication.java"));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void addOperationToGroup(String tag, String resourcePath, Operation operation, CodegenOperation co, Map<String, List<CodegenOperation>> operations) {
|
|
|
|
|
String basePath = resourcePath;
|
|
|
|
|
if (basePath.startsWith("/")) {
|
|
|
|
|
basePath = basePath.substring(1);
|
|
|
|
|
}
|
|
|
|
|
int pos = basePath.indexOf("/");
|
|
|
|
|
if (pos > 0) {
|
|
|
|
|
basePath = basePath.substring(0, pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (basePath == "") {
|
|
|
|
|
basePath = "default";
|
|
|
|
|
} else {
|
|
|
|
|
if (co.path.startsWith("/" + basePath)) {
|
|
|
|
|
co.path = co.path.substring(("/" + basePath).length());
|
|
|
|
|
}
|
|
|
|
|
co.subresourceOperation = !co.path.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
List<CodegenOperation> opList = operations.get(basePath);
|
|
|
|
|
if (opList == null) {
|
|
|
|
|
opList = new ArrayList<CodegenOperation>();
|
|
|
|
|
operations.put(basePath, opList);
|
|
|
|
|
}
|
|
|
|
|
opList.add(co);
|
|
|
|
|
co.baseName = basePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Object> postProcessOperations(Map<String, Object> objs) {
|
|
|
|
|
|
|
|
|
|
Map<String, Object> operations = (Map<String, Object>) objs.get("operations");
|
|
|
|
|
if (operations != null) {
|
|
|
|
|
List<CodegenOperation> ops = (List<CodegenOperation>) operations.get("operation");
|
|
|
|
|
for (CodegenOperation operation : ops) {
|
|
|
|
|
if (operation.hasConsumes == Boolean.TRUE) {
|
|
|
|
|
Map<String, String> firstType = operation.consumes.get(0);
|
|
|
|
|
if (firstType != null) {
|
|
|
|
|
if ("multipart/form-data".equals(firstType.get("mediaType"))) {
|
|
|
|
|
operation.isMultipart = Boolean.TRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
List<CodegenResponse> responses = operation.responses;
|
|
|
|
|
if (responses != null) {
|
|
|
|
|
for (CodegenResponse resp : responses) {
|
|
|
|
|
if ("0".equals(resp.code)) {
|
|
|
|
|
resp.code = "200";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (operation.returnType == null) {
|
|
|
|
|
operation.returnType = "Void";
|
|
|
|
|
} else if (operation.returnType.startsWith("List")) {
|
|
|
|
|
String rt = operation.returnType;
|
|
|
|
|
int end = rt.lastIndexOf(">");
|
|
|
|
|
if (end > 0) {
|
|
|
|
|
operation.returnType = rt.substring("List<".length(), end).trim();
|
|
|
|
|
operation.returnContainer = "List";
|
|
|
|
|
}
|
|
|
|
|
} else if (operation.returnType.startsWith("Map")) {
|
|
|
|
|
String rt = operation.returnType;
|
|
|
|
|
int end = rt.lastIndexOf(">");
|
|
|
|
|
if (end > 0) {
|
|
|
|
|
operation.returnType = rt.substring("Map<".length(), end).split(",")[1].trim();
|
|
|
|
|
operation.returnContainer = "Map";
|
|
|
|
|
}
|
|
|
|
|
} else if (operation.returnType.startsWith("Set")) {
|
|
|
|
|
String rt = operation.returnType;
|
|
|
|
|
int end = rt.lastIndexOf(">");
|
|
|
|
|
if (end > 0) {
|
|
|
|
|
operation.returnType = rt.substring("Set<".length(), end).trim();
|
|
|
|
|
operation.returnContainer = "Set";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return objs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void postProcessModelProperty(CodegenModel model, CodegenProperty property) {
|
|
|
|
|
// Add imports for Jackson
|
|
|
|
|
if (!BooleanUtils.toBoolean(model.isEnum)) {
|
|
|
|
|
model.imports.add("JsonProperty");
|
|
|
|
|
|
|
|
|
|
if (BooleanUtils.toBoolean(model.hasEnums)) {
|
|
|
|
|
model.imports.add("JsonValue");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Object> postProcessModelsEnum(Map<String, Object> objs) {
|
|
|
|
|
objs = super.postProcessModelsEnum(objs);
|
|
|
|
|
|
|
|
|
|
// Add imports for Jackson
|
|
|
|
|
List<Map<String, String>> imports = (List<Map<String, String>>) objs.get("imports");
|
|
|
|
|
List<Object> models = (List<Object>) objs.get("models");
|
|
|
|
|
for (Object _mo : models) {
|
|
|
|
|
Map<String, Object> mo = (Map<String, Object>) _mo;
|
|
|
|
|
CodegenModel cm = (CodegenModel) mo.get("model");
|
|
|
|
|
// for enum model
|
|
|
|
|
if (Boolean.TRUE.equals(cm.isEnum) && cm.allowableValues != null) {
|
|
|
|
|
cm.imports.add(importMapping.get("JsonValue"));
|
|
|
|
|
Map<String, String> item = new HashMap<String, String>();
|
|
|
|
|
item.put("import", importMapping.get("JsonValue"));
|
|
|
|
|
imports.add(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return objs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUseBeanValidation(boolean useBeanValidation) {
|
|
|
|
|
this.useBeanValidation = useBeanValidation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setGenerateJbossDeploymentDescriptor(boolean generateJbossDeploymentDescriptor) {
|
|
|
|
|
this.generateJbossDeploymentDescriptor = generateJbossDeploymentDescriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUseSwaggerFeature(boolean useSwaggerFeature) {
|
|
|
|
|
this.useSwaggerFeature = useSwaggerFeature;
|
|
|
|
|
}
|
|
|
|
|
}
|