forked from loafle/openapi-generator-original
[scala][templates] java 8 dates support (#5291)
* [scala][akka-http-client] java8 dates support * scala-akka readme doc updated * DateSerializers renamed * rename serializers * move date-library option to abstractScala * generators docs updated * enum defined for date libraries * Backport to scala-http-client * fix scala-akka-client date serializers * fix typo in docs * switch scala templates to java8 (jsr-310) date library by default * update scala samples with java8 date library * update scala generators docs with java8 default date library * fix scala-play-server generator cli options as only java8 dateLibrary supported * fix scalaz DateTimeCodecs template to support java8 * scalaz ci test againt java7 removed as it generate scala 2.11.8 client which is java8 based
This commit is contained in:
parent
9ba7c4af3c
commit
5beccd12b6
@ -7,6 +7,7 @@ sidebar_label: scala-akka
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|mainPackage|Top-level package name, which defines 'apiPackage', 'modelPackage', 'invokerPackage'| |org.openapitools.client|
|
|mainPackage|Top-level package name, which defines 'apiPackage', 'modelPackage', 'invokerPackage'| |org.openapitools.client|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
@ -23,7 +24,7 @@ sidebar_label: scala-akka
|
|||||||
|Array|java.util.List|
|
|Array|java.util.List|
|
||||||
|ArrayList|java.util.ArrayList|
|
|ArrayList|java.util.ArrayList|
|
||||||
|Date|java.util.Date|
|
|Date|java.util.Date|
|
||||||
|DateTime|org.joda.time.DateTime|
|
|DateTime|org.joda.time.*|
|
||||||
|File|java.io.File|
|
|File|java.io.File|
|
||||||
|HashMap|java.util.HashMap|
|
|HashMap|java.util.HashMap|
|
||||||
|ListBuffer|scala.collection.mutable.ListBuffer|
|
|ListBuffer|scala.collection.mutable.ListBuffer|
|
||||||
|
@ -7,6 +7,7 @@ sidebar_label: scala-gatling
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
||||||
|
@ -7,6 +7,7 @@ sidebar_label: scala-httpclient-deprecated
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
||||||
|
@ -7,6 +7,7 @@ sidebar_label: scala-lagom-server
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
||||||
|
@ -7,6 +7,7 @@ sidebar_label: scala-sttp
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|mainPackage|Top-level package name, which defines 'apiPackage', 'modelPackage', 'invokerPackage'| |org.openapitools.client|
|
|mainPackage|Top-level package name, which defines 'apiPackage', 'modelPackage', 'invokerPackage'| |org.openapitools.client|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
@ -23,7 +24,7 @@ sidebar_label: scala-sttp
|
|||||||
|Array|java.util.List|
|
|Array|java.util.List|
|
||||||
|ArrayList|java.util.ArrayList|
|
|ArrayList|java.util.ArrayList|
|
||||||
|Date|java.util.Date|
|
|Date|java.util.Date|
|
||||||
|DateTime|org.joda.time.DateTime|
|
|DateTime|org.joda.time.*|
|
||||||
|File|java.io.File|
|
|File|java.io.File|
|
||||||
|HashMap|java.util.HashMap|
|
|HashMap|java.util.HashMap|
|
||||||
|ListBuffer|scala.collection.mutable.ListBuffer|
|
|ListBuffer|scala.collection.mutable.ListBuffer|
|
||||||
|
@ -7,6 +7,7 @@ sidebar_label: scalatra
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
||||||
|
@ -7,6 +7,7 @@ sidebar_label: scalaz
|
|||||||
| ------ | ----------- | ------ | ------- |
|
| ------ | ----------- | ------ | ------- |
|
||||||
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
|allowUnicodeIdentifiers|boolean, toggles whether unicode identifiers are allowed in names or not, default is false| |false|
|
||||||
|apiPackage|package for generated api classes| |null|
|
|apiPackage|package for generated api classes| |null|
|
||||||
|
|dateLibrary|Option. Date library to use|<dl><dt>**joda**</dt><dd>Joda (for legacy app)</dd><dt>**java8**</dt><dd>Java 8 native JSR310 (prefered for JDK 1.8+)</dd></dl>|java8|
|
||||||
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
|ensureUniqueParams|Whether to ensure parameter names are unique in an operation (rename parameters that are not).| |true|
|
||||||
|modelPackage|package for generated models| |null|
|
|modelPackage|package for generated models| |null|
|
||||||
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
|modelPropertyNaming|Naming convention for the property: 'camelCase', 'PascalCase', 'snake_case' and 'original', which keeps the original name| |camelCase|
|
||||||
|
@ -31,6 +31,7 @@ import org.slf4j.LoggerFactory;
|
|||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
import static org.openapitools.codegen.languages.AbstractJavaCodegen.DATE_LIBRARY;
|
||||||
import static org.openapitools.codegen.utils.StringUtils.camelize;
|
import static org.openapitools.codegen.utils.StringUtils.camelize;
|
||||||
import static org.openapitools.codegen.utils.StringUtils.underscore;
|
import static org.openapitools.codegen.utils.StringUtils.underscore;
|
||||||
|
|
||||||
@ -41,6 +42,19 @@ public abstract class AbstractScalaCodegen extends DefaultCodegen {
|
|||||||
protected String invokerPackage = "org.openapitools.client";
|
protected String invokerPackage = "org.openapitools.client";
|
||||||
protected String sourceFolder = "src/main/scala";
|
protected String sourceFolder = "src/main/scala";
|
||||||
protected boolean stripPackageName = true;
|
protected boolean stripPackageName = true;
|
||||||
|
protected String dateLibrary = DateLibraries.java8.name();
|
||||||
|
|
||||||
|
protected enum DateLibraries {
|
||||||
|
java8("Java 8 native JSR310 (prefered for JDK 1.8+)"),
|
||||||
|
joda( "Joda (for legacy app)"),
|
||||||
|
legacy( "Backport to http-client (deprecated)");
|
||||||
|
|
||||||
|
private final String description;
|
||||||
|
|
||||||
|
DateLibraries(String description) {
|
||||||
|
this.description = description;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public AbstractScalaCodegen() {
|
public AbstractScalaCodegen() {
|
||||||
super();
|
super();
|
||||||
@ -131,6 +145,13 @@ public abstract class AbstractScalaCodegen extends DefaultCodegen {
|
|||||||
cliOptions.add(new CliOption(CodegenConstants.SOURCE_FOLDER, CodegenConstants.SOURCE_FOLDER_DESC));
|
cliOptions.add(new CliOption(CodegenConstants.SOURCE_FOLDER, CodegenConstants.SOURCE_FOLDER_DESC));
|
||||||
cliOptions.add(new CliOption(CodegenConstants.MODEL_PROPERTY_NAMING, CodegenConstants.MODEL_PROPERTY_NAMING_DESC).defaultValue(modelPropertyNaming));
|
cliOptions.add(new CliOption(CodegenConstants.MODEL_PROPERTY_NAMING, CodegenConstants.MODEL_PROPERTY_NAMING_DESC).defaultValue(modelPropertyNaming));
|
||||||
|
|
||||||
|
CliOption dateLibrary = new CliOption(DATE_LIBRARY, "Option. Date library to use").defaultValue(this.dateLibrary);
|
||||||
|
Map<String, String> dateOptions = new HashMap<>();
|
||||||
|
dateOptions.put(DateLibraries.java8.name(), DateLibraries.java8.description);
|
||||||
|
dateOptions.put(DateLibraries.joda.name(), DateLibraries.joda.description);
|
||||||
|
dateLibrary.setEnum(dateOptions);
|
||||||
|
cliOptions.add(dateLibrary);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -156,6 +177,43 @@ public abstract class AbstractScalaCodegen extends DefaultCodegen {
|
|||||||
setModelPropertyNaming(
|
setModelPropertyNaming(
|
||||||
(String) additionalProperties.get(CodegenConstants.MODEL_PROPERTY_NAMING));
|
(String) additionalProperties.get(CodegenConstants.MODEL_PROPERTY_NAMING));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (additionalProperties.containsKey(DATE_LIBRARY)) {
|
||||||
|
this.setDateLibrary(additionalProperties.get(DATE_LIBRARY).toString(), false);
|
||||||
|
}
|
||||||
|
if (DateLibraries.java8.name().equals(dateLibrary)) {
|
||||||
|
this.importMapping.put("LocalDate", "java.time.LocalDate");
|
||||||
|
this.importMapping.put("OffsetDateTime", "java.time.OffsetDateTime");
|
||||||
|
this.typeMapping.put("date", "LocalDate");
|
||||||
|
this.typeMapping.put("DateTime", "OffsetDateTime");
|
||||||
|
additionalProperties.put("java8", "true");
|
||||||
|
} else if (DateLibraries.joda.name().equals(dateLibrary)) {
|
||||||
|
this.importMapping.put("LocalDate", "org.joda.time.LocalDate");
|
||||||
|
this.importMapping.put("DateTime", "org.joda.time.DateTime");
|
||||||
|
this.importMapping.put("LocalDateTime", "org.joda.time.LocalDateTime");
|
||||||
|
this.importMapping.put("LocalTime", "org.joda.time.LocalTime");
|
||||||
|
this.typeMapping.put("date", "LocalDate");
|
||||||
|
this.typeMapping.put("DateTime", "DateTime");
|
||||||
|
additionalProperties.put("joda", "true");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDateLibrary(String dateLibrary, boolean withLegacy) {
|
||||||
|
if (withLegacy && dateLibrary.equals(DateLibraries.legacy.name())) {
|
||||||
|
this.dateLibrary = dateLibrary;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for ( DateLibraries dateLib : DateLibraries.values()) {
|
||||||
|
if (dateLib.name().equals(dateLibrary)) {
|
||||||
|
this.dateLibrary = dateLibrary;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException("Invalid dateLibrary. Must be 'java8' or 'joda'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDateLibrary() {
|
||||||
|
return this.dateLibrary;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModelPropertyNaming(String naming) {
|
public void setModelPropertyNaming(String naming) {
|
||||||
|
@ -35,6 +35,7 @@ import java.io.StringWriter;
|
|||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
import static org.openapitools.codegen.languages.AbstractJavaCodegen.DATE_LIBRARY;
|
||||||
import static org.openapitools.codegen.utils.StringUtils.camelize;
|
import static org.openapitools.codegen.utils.StringUtils.camelize;
|
||||||
|
|
||||||
public class ScalaAkkaClientCodegen extends AbstractScalaCodegen implements CodegenConfig {
|
public class ScalaAkkaClientCodegen extends AbstractScalaCodegen implements CodegenConfig {
|
||||||
@ -49,8 +50,6 @@ public class ScalaAkkaClientCodegen extends AbstractScalaCodegen implements Code
|
|||||||
protected boolean registerNonStandardStatusCodes = true;
|
protected boolean registerNonStandardStatusCodes = true;
|
||||||
protected boolean renderJavadoc = true;
|
protected boolean renderJavadoc = true;
|
||||||
protected boolean removeOAuthSecurities = true;
|
protected boolean removeOAuthSecurities = true;
|
||||||
// protected boolean stripPackageName = false;
|
|
||||||
|
|
||||||
|
|
||||||
@SuppressWarnings("hiding")
|
@SuppressWarnings("hiding")
|
||||||
protected Logger LOGGER = LoggerFactory.getLogger(ScalaAkkaClientCodegen.class);
|
protected Logger LOGGER = LoggerFactory.getLogger(ScalaAkkaClientCodegen.class);
|
||||||
@ -121,8 +120,6 @@ public class ScalaAkkaClientCodegen extends AbstractScalaCodegen implements Code
|
|||||||
importMapping.remove("Set");
|
importMapping.remove("Set");
|
||||||
importMapping.remove("Map");
|
importMapping.remove("Map");
|
||||||
|
|
||||||
importMapping.put("DateTime", "org.joda.time.DateTime");
|
|
||||||
|
|
||||||
typeMapping = new HashMap<>();
|
typeMapping = new HashMap<>();
|
||||||
typeMapping.put("array", "Seq");
|
typeMapping.put("array", "Seq");
|
||||||
typeMapping.put("set", "Set");
|
typeMapping.put("set", "Set");
|
||||||
@ -172,6 +169,7 @@ public class ScalaAkkaClientCodegen extends AbstractScalaCodegen implements Code
|
|||||||
supportingFiles.add(new SupportingFile("apiSettings.mustache", invokerFolder, "ApiSettings.scala"));
|
supportingFiles.add(new SupportingFile("apiSettings.mustache", invokerFolder, "ApiSettings.scala"));
|
||||||
final String apiFolder = (sourceFolder + File.separator + apiPackage).replace(".", File.separator);
|
final String apiFolder = (sourceFolder + File.separator + apiPackage).replace(".", File.separator);
|
||||||
supportingFiles.add(new SupportingFile("enumsSerializers.mustache", apiFolder, "EnumsSerializers.scala"));
|
supportingFiles.add(new SupportingFile("enumsSerializers.mustache", apiFolder, "EnumsSerializers.scala"));
|
||||||
|
supportingFiles.add(new SupportingFile("serializers.mustache", invokerFolder, "Serializers.scala"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -131,6 +131,7 @@ public class ScalaHttpClientCodegen extends AbstractScalaCodegen implements Code
|
|||||||
importMapping.remove("Set");
|
importMapping.remove("Set");
|
||||||
importMapping.remove("Map");
|
importMapping.remove("Map");
|
||||||
|
|
||||||
|
setDateLibrary("legacy",true);
|
||||||
importMapping.put("Date", "java.util.Date");
|
importMapping.put("Date", "java.util.Date");
|
||||||
|
|
||||||
typeMapping = new HashMap<String, String>();
|
typeMapping = new HashMap<String, String>();
|
||||||
|
@ -35,6 +35,7 @@ import java.util.regex.Pattern;
|
|||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import static org.apache.commons.lang3.StringUtils.rightPad;
|
import static org.apache.commons.lang3.StringUtils.rightPad;
|
||||||
|
import static org.openapitools.codegen.languages.AbstractJavaCodegen.DATE_LIBRARY;
|
||||||
import static org.openapitools.codegen.utils.OnceLogger.once;
|
import static org.openapitools.codegen.utils.OnceLogger.once;
|
||||||
import static org.openapitools.codegen.utils.StringUtils.camelize;
|
import static org.openapitools.codegen.utils.StringUtils.camelize;
|
||||||
|
|
||||||
@ -102,6 +103,7 @@ public class ScalaPlayFrameworkServerCodegen extends AbstractScalaCodegen implem
|
|||||||
importMapping.remove("BigDecimal");
|
importMapping.remove("BigDecimal");
|
||||||
importMapping.put("TemporaryFile", "play.api.libs.Files.TemporaryFile");
|
importMapping.put("TemporaryFile", "play.api.libs.Files.TemporaryFile");
|
||||||
|
|
||||||
|
cliOptions.removeIf(opt -> DATE_LIBRARY.equals(opt.getOpt()));
|
||||||
cliOptions.add(new CliOption(ROUTES_FILE_NAME, "Name of the routes file to generate.").defaultValue(routesFileName));
|
cliOptions.add(new CliOption(ROUTES_FILE_NAME, "Name of the routes file to generate.").defaultValue(routesFileName));
|
||||||
cliOptions.add(new CliOption(BASE_PACKAGE, "Base package in which supporting classes are generated.").defaultValue(basePackage));
|
cliOptions.add(new CliOption(BASE_PACKAGE, "Base package in which supporting classes are generated.").defaultValue(basePackage));
|
||||||
|
|
||||||
|
@ -53,10 +53,6 @@ public class ScalaSttpClientCodegen extends ScalaAkkaClientCodegen implements Co
|
|||||||
additionalProperties.put("modelPackage", modelPackage);
|
additionalProperties.put("modelPackage", modelPackage);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!additionalProperties.containsKey("java8")) {
|
|
||||||
additionalProperties.put("joda", "true");
|
|
||||||
}
|
|
||||||
|
|
||||||
supportingFiles.clear();
|
supportingFiles.clear();
|
||||||
supportingFiles.add(new SupportingFile("README.mustache", "", "README.md"));
|
supportingFiles.add(new SupportingFile("README.mustache", "", "README.md"));
|
||||||
supportingFiles.add(new SupportingFile("build.sbt.mustache", "", "build.sbt"));
|
supportingFiles.add(new SupportingFile("build.sbt.mustache", "", "build.sbt"));
|
||||||
|
@ -15,9 +15,6 @@ import akka.stream.ActorMaterializer
|
|||||||
import akka.stream.scaladsl.Source
|
import akka.stream.scaladsl.Source
|
||||||
import akka.util.{ ByteString, Timeout }
|
import akka.util.{ ByteString, Timeout }
|
||||||
import de.heikoseeberger.akkahttpjson4s.Json4sSupport
|
import de.heikoseeberger.akkahttpjson4s.Json4sSupport
|
||||||
import org.joda.time.DateTime
|
|
||||||
import org.joda.time.format.ISODateTimeFormat
|
|
||||||
import org.json4s.JsonAST.JString
|
|
||||||
import org.json4s._
|
import org.json4s._
|
||||||
import org.json4s.jackson.JsonMethods._
|
import org.json4s.jackson.JsonMethods._
|
||||||
import org.json4s.jackson.Serialization
|
import org.json4s.jackson.Serialization
|
||||||
@ -29,10 +26,10 @@ import scala.reflect.ClassTag
|
|||||||
object ApiInvoker {
|
object ApiInvoker {
|
||||||
|
|
||||||
def apply()(implicit system: ActorSystem): ApiInvoker =
|
def apply()(implicit system: ActorSystem): ApiInvoker =
|
||||||
apply(DefaultFormats + DateTimeSerializer)
|
apply(DefaultFormats ++ Serializers.all)
|
||||||
|
|
||||||
def apply(serializers: Iterable[Serializer[_]])(implicit system: ActorSystem): ApiInvoker =
|
def apply(serializers: Iterable[Serializer[_]])(implicit system: ActorSystem): ApiInvoker =
|
||||||
apply(DefaultFormats + DateTimeSerializer ++ serializers)
|
apply(DefaultFormats ++ Serializers.all ++ serializers)
|
||||||
|
|
||||||
def apply(formats: Formats)(implicit system: ActorSystem): ApiInvoker = new ApiInvoker(formats)
|
def apply(formats: Formats)(implicit system: ActorSystem): ApiInvoker = new ApiInvoker(formats)
|
||||||
|
|
||||||
@ -67,15 +64,6 @@ object ApiInvoker {
|
|||||||
def toAkkaHttpMethod: HttpMethod = HttpMethods.getForKey(method.value).getOrElse(HttpMethods.GET)
|
def toAkkaHttpMethod: HttpMethod = HttpMethods.getForKey(method.value).getOrElse(HttpMethods.GET)
|
||||||
}
|
}
|
||||||
|
|
||||||
case object DateTimeSerializer extends CustomSerializer[DateTime](_ => ( {
|
|
||||||
case JString(s) =>
|
|
||||||
ISODateTimeFormat.dateOptionalTimeParser().parseDateTime(s)
|
|
||||||
}, {
|
|
||||||
case d: DateTime =>
|
|
||||||
JString(ISODateTimeFormat.dateTime().print(d))
|
|
||||||
})
|
|
||||||
)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
trait UnitJSONSupport {
|
trait UnitJSONSupport {
|
||||||
|
@ -8,7 +8,9 @@ libraryDependencies ++= Seq(
|
|||||||
"com.typesafe.akka" %% "akka-actor" % "2.5.21",
|
"com.typesafe.akka" %% "akka-actor" % "2.5.21",
|
||||||
"com.typesafe.akka" %% "akka-stream" % "2.5.21",
|
"com.typesafe.akka" %% "akka-stream" % "2.5.21",
|
||||||
"com.typesafe.akka" %% "akka-http" % "10.1.7",
|
"com.typesafe.akka" %% "akka-http" % "10.1.7",
|
||||||
|
{{#joda}}
|
||||||
"joda-time" % "joda-time" % "2.10.1",
|
"joda-time" % "joda-time" % "2.10.1",
|
||||||
|
{{/joda}}
|
||||||
"org.json4s" %% "json4s-jackson" % "3.6.5",
|
"org.json4s" %% "json4s-jackson" % "3.6.5",
|
||||||
"org.json4s" %% "json4s-ext" % "3.6.5",
|
"org.json4s" %% "json4s-ext" % "3.6.5",
|
||||||
"de.heikoseeberger" %% "akka-http-json4s" % "1.25.2",
|
"de.heikoseeberger" %% "akka-http-json4s" % "1.25.2",
|
||||||
|
@ -20,7 +20,9 @@
|
|||||||
<json4s.ext.version>3.2.11</json4s.ext.version>
|
<json4s.ext.version>3.2.11</json4s.ext.version>
|
||||||
<akka.version>2.5.21</akka.version>
|
<akka.version>2.5.21</akka.version>
|
||||||
<akka.http.version>10.1.7</akka.http.version>
|
<akka.http.version>10.1.7</akka.http.version>
|
||||||
|
{{#joda}}
|
||||||
<joda.time.version>2.10.1</joda.time.version>
|
<joda.time.version>2.10.1</joda.time.version>
|
||||||
|
{{/joda}}
|
||||||
<typesafeconfig.version>1.3.3</typesafeconfig.version>
|
<typesafeconfig.version>1.3.3</typesafeconfig.version>
|
||||||
<akka.http.json4s.version>1.25.2</akka.http.json4s.version>
|
<akka.http.json4s.version>1.25.2</akka.http.json4s.version>
|
||||||
<junit.version>4.13</junit.version>
|
<junit.version>4.13</junit.version>
|
||||||
@ -36,11 +38,13 @@
|
|||||||
<version>${scala.version}</version>
|
<version>${scala.version}</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
{{#joda}}
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>joda-time</groupId>
|
<groupId>joda-time</groupId>
|
||||||
<artifactId>joda-time</artifactId>
|
<artifactId>joda-time</artifactId>
|
||||||
<version>${joda.time.version}</version>
|
<version>${joda.time.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
{{/joda}}
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.typesafe</groupId>
|
<groupId>com.typesafe</groupId>
|
||||||
<artifactId>config</artifactId>
|
<artifactId>config</artifactId>
|
||||||
|
51
modules/openapi-generator/src/main/resources/scala-akka-client/serializers.mustache
vendored
Normal file
51
modules/openapi-generator/src/main/resources/scala-akka-client/serializers.mustache
vendored
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
package {{invokerPackage}}
|
||||||
|
|
||||||
|
{{#java8}}
|
||||||
|
import java.time.{LocalDate, LocalDateTime, OffsetDateTime, ZoneId}
|
||||||
|
import java.time.format.DateTimeFormatter
|
||||||
|
{{/java8}}
|
||||||
|
{{#joda}}
|
||||||
|
import org.joda.time.format.ISODateTimeFormat
|
||||||
|
import org.joda.time.{LocalDate, DateTime}
|
||||||
|
{{/joda}}
|
||||||
|
import org.json4s.{Serializer, CustomSerializer, JNull}
|
||||||
|
import org.json4s.JsonAST.JString
|
||||||
|
|
||||||
|
import scala.util.Try
|
||||||
|
|
||||||
|
object Serializers {
|
||||||
|
|
||||||
|
{{#java8}}
|
||||||
|
case object DateTimeSerializer extends CustomSerializer[OffsetDateTime]( _ => ( {
|
||||||
|
case JString(s) =>
|
||||||
|
Try(OffsetDateTime.parse(s, DateTimeFormatter.ISO_OFFSET_DATE_TIME)) orElse
|
||||||
|
Try(LocalDateTime.parse(s).atZone(ZoneId.systemDefault()).toOffsetDateTime) getOrElse null
|
||||||
|
}, {
|
||||||
|
case d: OffsetDateTime =>
|
||||||
|
JString(d.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME))
|
||||||
|
}))
|
||||||
|
|
||||||
|
case object LocalDateSerializer extends CustomSerializer[LocalDate]( _ => ( {
|
||||||
|
case JString(s) => LocalDate.parse(s)
|
||||||
|
}, {
|
||||||
|
JString(d.format(DateTimeFormatter.ISO_LOCAL_DATE))
|
||||||
|
}))
|
||||||
|
{{/java8}}
|
||||||
|
{{#joda}}
|
||||||
|
case object DateTimeSerializer extends CustomSerializer[DateTime](_ => ( {
|
||||||
|
case JString(s) =>
|
||||||
|
ISODateTimeFormat.dateOptionalTimeParser().parseDateTime(s)
|
||||||
|
}, {
|
||||||
|
case d: DateTime => JString(ISODateTimeFormat.dateTime().print(d))
|
||||||
|
}))
|
||||||
|
|
||||||
|
case object LocalDateSerializer extends CustomSerializer[LocalDate]( _ => ( {
|
||||||
|
case JString(s) => ISODateTimeFormat.localDateParser().parseLocalDate(s)
|
||||||
|
}, {
|
||||||
|
case d: LocalDate => JString(ISODateTimeFormat.date().print(d))
|
||||||
|
}))
|
||||||
|
{{/joda}}
|
||||||
|
|
||||||
|
def all: Seq[Serializer[_]] = Seq[Serializer[_]]() :+ DateTimeSerializer :+ LocalDateSerializer
|
||||||
|
|
||||||
|
}
|
@ -7,13 +7,26 @@ import argonaut.DecodeJson._
|
|||||||
import org.http4s._
|
import org.http4s._
|
||||||
import org.http4s.{EntityDecoder, EntityEncoder}
|
import org.http4s.{EntityDecoder, EntityEncoder}
|
||||||
import org.http4s.argonaut._
|
import org.http4s.argonaut._
|
||||||
|
{{#joda}}
|
||||||
import org.joda.time.DateTime
|
import org.joda.time.DateTime
|
||||||
|
{{/joda}}
|
||||||
|
{{#java8}}
|
||||||
|
import java.time.OffsetDateTime
|
||||||
|
{{/java8}}
|
||||||
|
|
||||||
object DateTimeCodecs {
|
object DateTimeCodecs {
|
||||||
|
{{#joda}}
|
||||||
implicit def dateTimeEncodeJson: EncodeJson[DateTime] =
|
implicit def dateTimeEncodeJson: EncodeJson[DateTime] =
|
||||||
EncodeJson[DateTime](dt => StringEncodeJson(dt.toString))
|
EncodeJson[DateTime](dt => StringEncodeJson(dt.toString))
|
||||||
|
|
||||||
implicit def dateTimeDecodeJson: DecodeJson[DateTime] =
|
implicit def dateTimeDecodeJson: DecodeJson[DateTime] =
|
||||||
DecodeJson.of[String].map(DateTime.parse(_)) setName "org.joda.time.DateTime"
|
DecodeJson.of[String].map(DateTime.parse(_)) setName "org.joda.time.DateTime"
|
||||||
|
{{/joda}}
|
||||||
|
{{#java8}}
|
||||||
|
implicit def dateTimeEncodeJson: EncodeJson[OffsetDateTime] =
|
||||||
|
EncodeJson[OffsetDateTime](dt => StringEncodeJson(dt.toString))
|
||||||
|
|
||||||
|
implicit def dateTimeDecodeJson: DecodeJson[OffsetDateTime] =
|
||||||
|
DecodeJson.of[String].map(OffsetDateTime.parse(_)) setName "java.time.OffsetDateTime"
|
||||||
|
{{/java8}}
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,7 @@ public class ScalaAkkaClientOptionsProvider implements OptionsProvider {
|
|||||||
public static final String PREPEND_FORM_OR_BODY_PARAMETERS_VALUE = "true";
|
public static final String PREPEND_FORM_OR_BODY_PARAMETERS_VALUE = "true";
|
||||||
public static final String MAIN_PACKAGE_VALUE = "net.test";
|
public static final String MAIN_PACKAGE_VALUE = "net.test";
|
||||||
public static final String MODEL_PROPERTY_NAMING = "camelCase";
|
public static final String MODEL_PROPERTY_NAMING = "camelCase";
|
||||||
|
public static final String DATE_LIBRARY = "joda";
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -53,6 +54,7 @@ public class ScalaAkkaClientOptionsProvider implements OptionsProvider {
|
|||||||
.put(CodegenConstants.PREPEND_FORM_OR_BODY_PARAMETERS, PREPEND_FORM_OR_BODY_PARAMETERS_VALUE)
|
.put(CodegenConstants.PREPEND_FORM_OR_BODY_PARAMETERS, PREPEND_FORM_OR_BODY_PARAMETERS_VALUE)
|
||||||
.put("mainPackage", MAIN_PACKAGE_VALUE)
|
.put("mainPackage", MAIN_PACKAGE_VALUE)
|
||||||
.put(CodegenConstants.MODEL_PROPERTY_NAMING, MODEL_PROPERTY_NAMING)
|
.put(CodegenConstants.MODEL_PROPERTY_NAMING, MODEL_PROPERTY_NAMING)
|
||||||
|
.put("dateLibrary", DATE_LIBRARY)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ public class ScalaHttpClientOptionsProvider implements OptionsProvider {
|
|||||||
public static final String MODEL_PROPERTY_NAMING = "PascalCase";
|
public static final String MODEL_PROPERTY_NAMING = "PascalCase";
|
||||||
public static final String ALLOW_UNICODE_IDENTIFIERS_VALUE = "false";
|
public static final String ALLOW_UNICODE_IDENTIFIERS_VALUE = "false";
|
||||||
public static final String PREPEND_FORM_OR_BODY_PARAMETERS_VALUE = "true";
|
public static final String PREPEND_FORM_OR_BODY_PARAMETERS_VALUE = "true";
|
||||||
|
public static final String DATE_LIBRARY = "joda";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getLanguage() {
|
public String getLanguage() {
|
||||||
@ -51,6 +51,7 @@ public class ScalaHttpClientOptionsProvider implements OptionsProvider {
|
|||||||
.put(CodegenConstants.SOURCE_FOLDER, SOURCE_FOLDER_VALUE)
|
.put(CodegenConstants.SOURCE_FOLDER, SOURCE_FOLDER_VALUE)
|
||||||
.put(CodegenConstants.ALLOW_UNICODE_IDENTIFIERS, ALLOW_UNICODE_IDENTIFIERS_VALUE)
|
.put(CodegenConstants.ALLOW_UNICODE_IDENTIFIERS, ALLOW_UNICODE_IDENTIFIERS_VALUE)
|
||||||
.put(CodegenConstants.PREPEND_FORM_OR_BODY_PARAMETERS, PREPEND_FORM_OR_BODY_PARAMETERS_VALUE)
|
.put(CodegenConstants.PREPEND_FORM_OR_BODY_PARAMETERS, PREPEND_FORM_OR_BODY_PARAMETERS_VALUE)
|
||||||
|
.put("dateLibrary", DATE_LIBRARY)
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -335,10 +335,11 @@ public class ScalaAkkaClientCodegenTest {
|
|||||||
Assert.assertEquals(Sets.intersection(cm.imports, Sets.newHashSet("Map", "Children")).size(), 1);
|
Assert.assertEquals(Sets.intersection(cm.imports, Sets.newHashSet("Map", "Children")).size(), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(description = "validate codegen output")
|
@Test(description = "validate codegen joda output")
|
||||||
public void codeGenerationTest() throws Exception {
|
public void codeGenerationTest() throws Exception {
|
||||||
Map<String, Object> properties = new HashMap<>();
|
Map<String, Object> properties = new HashMap<>();
|
||||||
properties.put("mainPackage", "hello.world");
|
properties.put("mainPackage", "hello.world");
|
||||||
|
properties.put("dateLibrary", "joda");
|
||||||
|
|
||||||
File output = Files.createTempDirectory("test").toFile();
|
File output = Files.createTempDirectory("test").toFile();
|
||||||
output.deleteOnExit();
|
output.deleteOnExit();
|
||||||
@ -356,7 +357,7 @@ public class ScalaAkkaClientCodegenTest {
|
|||||||
generator.opts(clientOptInput).generate();
|
generator.opts(clientOptInput).generate();
|
||||||
|
|
||||||
Map<String, String> generatedFiles = generator.getFiles();
|
Map<String, String> generatedFiles = generator.getFiles();
|
||||||
Assert.assertEquals(generatedFiles.size(), 13);
|
Assert.assertEquals(generatedFiles.size(), 14);
|
||||||
|
|
||||||
final String someObjFilename = new File(output, "src/main/scala/hello/world/model/SomeObj.scala").getAbsolutePath().replace("\\", "/");
|
final String someObjFilename = new File(output, "src/main/scala/hello/world/model/SomeObj.scala").getAbsolutePath().replace("\\", "/");
|
||||||
Assert.assertEquals(
|
Assert.assertEquals(
|
||||||
@ -364,6 +365,37 @@ public class ScalaAkkaClientCodegenTest {
|
|||||||
Resources.toString(Resources.getResource("codegen/scala/SomeObj.scala.txt"), StandardCharsets.UTF_8));
|
Resources.toString(Resources.getResource("codegen/scala/SomeObj.scala.txt"), StandardCharsets.UTF_8));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(description = "validate codegen java8 output")
|
||||||
|
public void codeGenerationJava8Test() throws Exception {
|
||||||
|
Map<String, Object> properties = new HashMap<>();
|
||||||
|
properties.put("mainPackage", "hello.world");
|
||||||
|
properties.put("dateLibrary", "java8");
|
||||||
|
|
||||||
|
File output = Files.createTempDirectory("test").toFile();
|
||||||
|
output.deleteOnExit();
|
||||||
|
|
||||||
|
final DefaultCodegen codegen = new ScalaAkkaClientCodegen();
|
||||||
|
|
||||||
|
final CodegenConfigurator configurator = new CodegenConfigurator()
|
||||||
|
.setGeneratorName(codegen.getName())
|
||||||
|
.setAdditionalProperties(properties)
|
||||||
|
.setInputSpec("src/test/resources/3_0/scala_reserved_words.yaml")
|
||||||
|
.setOutputDir(output.getAbsolutePath().replace("\\", "/"));
|
||||||
|
|
||||||
|
final ClientOptInput clientOptInput = configurator.toClientOptInput();
|
||||||
|
MockDefaultGenerator generator = new MockDefaultGenerator();
|
||||||
|
generator.opts(clientOptInput).generate();
|
||||||
|
|
||||||
|
Map<String, String> generatedFiles = generator.getFiles();
|
||||||
|
Assert.assertEquals(generatedFiles.size(), 14);
|
||||||
|
|
||||||
|
final String someObjFilename = new File(output, "src/main/scala/hello/world/model/SomeObj.scala").getAbsolutePath().replace("\\", "/");
|
||||||
|
Assert.assertEquals(
|
||||||
|
generatedFiles.get(someObjFilename),
|
||||||
|
Resources.toString(Resources.getResource("codegen/scala/JavaTimeObj.scala.txt"), StandardCharsets.UTF_8));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Test(description = "strip model name")
|
@Test(description = "strip model name")
|
||||||
public void stripModelNameTest() throws Exception {
|
public void stripModelNameTest() throws Exception {
|
||||||
final Schema model = new Schema()
|
final Schema model = new Schema()
|
||||||
|
@ -26,6 +26,7 @@ import static org.mockito.Mockito.mock;
|
|||||||
import static org.mockito.Mockito.verify;
|
import static org.mockito.Mockito.verify;
|
||||||
|
|
||||||
public class ScalaHttpClientOptionsTest extends AbstractOptionsTest {
|
public class ScalaHttpClientOptionsTest extends AbstractOptionsTest {
|
||||||
|
|
||||||
private ScalaHttpClientCodegen clientCodegen = mock(ScalaHttpClientCodegen.class, mockSettings);
|
private ScalaHttpClientCodegen clientCodegen = mock(ScalaHttpClientCodegen.class, mockSettings);
|
||||||
|
|
||||||
public ScalaHttpClientOptionsTest() {
|
public ScalaHttpClientOptionsTest() {
|
||||||
@ -46,5 +47,6 @@ public class ScalaHttpClientOptionsTest extends AbstractOptionsTest {
|
|||||||
verify(clientCodegen).setModelPropertyNaming(ScalaHttpClientOptionsProvider.MODEL_PROPERTY_NAMING);
|
verify(clientCodegen).setModelPropertyNaming(ScalaHttpClientOptionsProvider.MODEL_PROPERTY_NAMING);
|
||||||
verify(clientCodegen).setSourceFolder(ScalaHttpClientOptionsProvider.SOURCE_FOLDER_VALUE);
|
verify(clientCodegen).setSourceFolder(ScalaHttpClientOptionsProvider.SOURCE_FOLDER_VALUE);
|
||||||
verify(clientCodegen).setPrependFormOrBodyParameters(Boolean.valueOf(ScalaHttpClientOptionsProvider.PREPEND_FORM_OR_BODY_PARAMETERS_VALUE));
|
verify(clientCodegen).setPrependFormOrBodyParameters(Boolean.valueOf(ScalaHttpClientOptionsProvider.PREPEND_FORM_OR_BODY_PARAMETERS_VALUE));
|
||||||
|
verify(clientCodegen).setDateLibrary(ScalaHttpClientOptionsProvider.DATE_LIBRARY,false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,50 @@
|
|||||||
|
/**
|
||||||
|
* ping some object
|
||||||
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||||
|
*
|
||||||
|
* The version of the OpenAPI document: 1.0
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
|
* https://openapi-generator.tech
|
||||||
|
* Do not edit the class manually.
|
||||||
|
*/
|
||||||
|
package hello.world.model
|
||||||
|
|
||||||
|
import java.time.OffsetDateTime
|
||||||
|
import hello.world.core.ApiModel
|
||||||
|
|
||||||
|
case class SomeObj (
|
||||||
|
`type`: Option[SomeObjEnums.`Type`] = None,
|
||||||
|
id: Long,
|
||||||
|
name: Option[String] = None,
|
||||||
|
`val`: Option[String] = None,
|
||||||
|
`var`: Option[String] = None,
|
||||||
|
`class`: Option[String] = None,
|
||||||
|
`trait`: Option[String] = None,
|
||||||
|
`object`: Option[String] = None,
|
||||||
|
`try`: String,
|
||||||
|
`catch`: String,
|
||||||
|
`finally`: String,
|
||||||
|
`def`: Option[String] = None,
|
||||||
|
`for`: Option[String] = None,
|
||||||
|
`implicit`: Option[String] = None,
|
||||||
|
`match`: Option[String] = None,
|
||||||
|
`case`: Option[String] = None,
|
||||||
|
`import`: Option[String] = None,
|
||||||
|
`lazy`: String,
|
||||||
|
`private`: Option[String] = None,
|
||||||
|
`type`: Option[String] = None,
|
||||||
|
foobar: Boolean,
|
||||||
|
createdAt: OffsetDateTime
|
||||||
|
) extends ApiModel
|
||||||
|
|
||||||
|
object SomeObjEnums {
|
||||||
|
|
||||||
|
type `Type` = `Type`.Value
|
||||||
|
object `Type` extends Enumeration {
|
||||||
|
val SomeObjIdentifier = Value("SomeObjIdentifier")
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
1
pom.xml
1
pom.xml
@ -1388,7 +1388,6 @@
|
|||||||
<module>samples/client/petstore/dart-jaguar/openapi</module>
|
<module>samples/client/petstore/dart-jaguar/openapi</module>
|
||||||
<module>samples/client/petstore/dart-jaguar/flutter_petstore/openapi</module>
|
<module>samples/client/petstore/dart-jaguar/flutter_petstore/openapi</module>
|
||||||
<module>samples/client/petstore/scala-httpclient</module>
|
<module>samples/client/petstore/scala-httpclient</module>
|
||||||
<module>samples/client/petstore/scalaz</module>
|
|
||||||
<module>samples/client/petstore/java/feign</module>
|
<module>samples/client/petstore/java/feign</module>
|
||||||
<module>samples/client/petstore/java/jersey1</module>
|
<module>samples/client/petstore/java/jersey1</module>
|
||||||
<module>samples/client/petstore/java/jersey2</module>
|
<module>samples/client/petstore/java/jersey2</module>
|
||||||
|
@ -8,7 +8,6 @@ libraryDependencies ++= Seq(
|
|||||||
"com.typesafe.akka" %% "akka-actor" % "2.5.21",
|
"com.typesafe.akka" %% "akka-actor" % "2.5.21",
|
||||||
"com.typesafe.akka" %% "akka-stream" % "2.5.21",
|
"com.typesafe.akka" %% "akka-stream" % "2.5.21",
|
||||||
"com.typesafe.akka" %% "akka-http" % "10.1.7",
|
"com.typesafe.akka" %% "akka-http" % "10.1.7",
|
||||||
"joda-time" % "joda-time" % "2.10.1",
|
|
||||||
"org.json4s" %% "json4s-jackson" % "3.6.5",
|
"org.json4s" %% "json4s-jackson" % "3.6.5",
|
||||||
"org.json4s" %% "json4s-ext" % "3.6.5",
|
"org.json4s" %% "json4s-ext" % "3.6.5",
|
||||||
"de.heikoseeberger" %% "akka-http-json4s" % "1.25.2",
|
"de.heikoseeberger" %% "akka-http-json4s" % "1.25.2",
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
<json4s.ext.version>3.2.11</json4s.ext.version>
|
<json4s.ext.version>3.2.11</json4s.ext.version>
|
||||||
<akka.version>2.5.21</akka.version>
|
<akka.version>2.5.21</akka.version>
|
||||||
<akka.http.version>10.1.7</akka.http.version>
|
<akka.http.version>10.1.7</akka.http.version>
|
||||||
<joda.time.version>2.10.1</joda.time.version>
|
|
||||||
<typesafeconfig.version>1.3.3</typesafeconfig.version>
|
<typesafeconfig.version>1.3.3</typesafeconfig.version>
|
||||||
<akka.http.json4s.version>1.25.2</akka.http.json4s.version>
|
<akka.http.json4s.version>1.25.2</akka.http.json4s.version>
|
||||||
<junit.version>4.13</junit.version>
|
<junit.version>4.13</junit.version>
|
||||||
@ -36,11 +35,6 @@
|
|||||||
<version>${scala.version}</version>
|
<version>${scala.version}</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>joda-time</groupId>
|
|
||||||
<artifactId>joda-time</artifactId>
|
|
||||||
<version>${joda.time.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.typesafe</groupId>
|
<groupId>com.typesafe</groupId>
|
||||||
<artifactId>config</artifactId>
|
<artifactId>config</artifactId>
|
||||||
|
@ -131,7 +131,7 @@ class UserApi(baseUrl: String) {
|
|||||||
object LoginUserHeaders {
|
object LoginUserHeaders {
|
||||||
def setCookie(r: ApiReturnWithHeaders) = r.getStringHeader("Set-Cookie")
|
def setCookie(r: ApiReturnWithHeaders) = r.getStringHeader("Set-Cookie")
|
||||||
def xRateLimit(r: ApiReturnWithHeaders) = r.getIntHeader("X-Rate-Limit")
|
def xRateLimit(r: ApiReturnWithHeaders) = r.getIntHeader("X-Rate-Limit")
|
||||||
def xExpiresAfter(r: ApiReturnWithHeaders) = r.getDateTimeHeader("X-Expires-After")
|
def xExpiresAfter(r: ApiReturnWithHeaders) = r.getOffsetDateTimeHeader("X-Expires-After")
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -25,9 +25,6 @@ import akka.stream.ActorMaterializer
|
|||||||
import akka.stream.scaladsl.Source
|
import akka.stream.scaladsl.Source
|
||||||
import akka.util.{ ByteString, Timeout }
|
import akka.util.{ ByteString, Timeout }
|
||||||
import de.heikoseeberger.akkahttpjson4s.Json4sSupport
|
import de.heikoseeberger.akkahttpjson4s.Json4sSupport
|
||||||
import org.joda.time.DateTime
|
|
||||||
import org.joda.time.format.ISODateTimeFormat
|
|
||||||
import org.json4s.JsonAST.JString
|
|
||||||
import org.json4s._
|
import org.json4s._
|
||||||
import org.json4s.jackson.JsonMethods._
|
import org.json4s.jackson.JsonMethods._
|
||||||
import org.json4s.jackson.Serialization
|
import org.json4s.jackson.Serialization
|
||||||
@ -39,10 +36,10 @@ import scala.reflect.ClassTag
|
|||||||
object ApiInvoker {
|
object ApiInvoker {
|
||||||
|
|
||||||
def apply()(implicit system: ActorSystem): ApiInvoker =
|
def apply()(implicit system: ActorSystem): ApiInvoker =
|
||||||
apply(DefaultFormats + DateTimeSerializer)
|
apply(DefaultFormats ++ Serializers.all)
|
||||||
|
|
||||||
def apply(serializers: Iterable[Serializer[_]])(implicit system: ActorSystem): ApiInvoker =
|
def apply(serializers: Iterable[Serializer[_]])(implicit system: ActorSystem): ApiInvoker =
|
||||||
apply(DefaultFormats + DateTimeSerializer ++ serializers)
|
apply(DefaultFormats ++ Serializers.all ++ serializers)
|
||||||
|
|
||||||
def apply(formats: Formats)(implicit system: ActorSystem): ApiInvoker = new ApiInvoker(formats)
|
def apply(formats: Formats)(implicit system: ActorSystem): ApiInvoker = new ApiInvoker(formats)
|
||||||
|
|
||||||
@ -77,15 +74,6 @@ object ApiInvoker {
|
|||||||
def toAkkaHttpMethod: HttpMethod = HttpMethods.getForKey(method.value).getOrElse(HttpMethods.GET)
|
def toAkkaHttpMethod: HttpMethod = HttpMethods.getForKey(method.value).getOrElse(HttpMethods.GET)
|
||||||
}
|
}
|
||||||
|
|
||||||
case object DateTimeSerializer extends CustomSerializer[DateTime](_ => ( {
|
|
||||||
case JString(s) =>
|
|
||||||
ISODateTimeFormat.dateOptionalTimeParser().parseDateTime(s)
|
|
||||||
}, {
|
|
||||||
case d: DateTime =>
|
|
||||||
JString(ISODateTimeFormat.dateTime().print(d))
|
|
||||||
})
|
|
||||||
)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
trait UnitJSONSupport {
|
trait UnitJSONSupport {
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
package org.openapitools.client.core
|
||||||
|
|
||||||
|
import java.time.{LocalDate, LocalDateTime, OffsetDateTime, ZoneId}
|
||||||
|
import java.time.format.DateTimeFormatter
|
||||||
|
import org.json4s.{Serializer, CustomSerializer, JNull}
|
||||||
|
import org.json4s.JsonAST.JString
|
||||||
|
|
||||||
|
import scala.util.Try
|
||||||
|
|
||||||
|
object Serializers {
|
||||||
|
|
||||||
|
case object DateTimeSerializer extends CustomSerializer[OffsetDateTime]( _ => ( {
|
||||||
|
case JString(s) =>
|
||||||
|
Try(OffsetDateTime.parse(s, DateTimeFormatter.ISO_OFFSET_DATE_TIME)) orElse
|
||||||
|
Try(LocalDateTime.parse(s).atZone(ZoneId.systemDefault()).toOffsetDateTime) getOrElse null
|
||||||
|
}, {
|
||||||
|
case d: OffsetDateTime =>
|
||||||
|
JString(d.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME))
|
||||||
|
}))
|
||||||
|
|
||||||
|
case object LocalDateSerializer extends CustomSerializer[LocalDate]( _ => ( {
|
||||||
|
case JString(s) => LocalDate.parse(s)
|
||||||
|
}, {
|
||||||
|
JString(d.format(DateTimeFormatter.ISO_LOCAL_DATE))
|
||||||
|
}))
|
||||||
|
|
||||||
|
def all: Seq[Serializer[_]] = Seq[Serializer[_]]() :+ DateTimeSerializer :+ LocalDateSerializer
|
||||||
|
|
||||||
|
}
|
@ -11,14 +11,14 @@
|
|||||||
*/
|
*/
|
||||||
package org.openapitools.client.model
|
package org.openapitools.client.model
|
||||||
|
|
||||||
import org.joda.time.DateTime
|
import java.time.OffsetDateTime
|
||||||
import org.openapitools.client.core.ApiModel
|
import org.openapitools.client.core.ApiModel
|
||||||
|
|
||||||
case class Order (
|
case class Order (
|
||||||
id: Option[Long] = None,
|
id: Option[Long] = None,
|
||||||
petId: Option[Long] = None,
|
petId: Option[Long] = None,
|
||||||
quantity: Option[Int] = None,
|
quantity: Option[Int] = None,
|
||||||
shipDate: Option[DateTime] = None,
|
shipDate: Option[OffsetDateTime] = None,
|
||||||
/* Order Status */
|
/* Order Status */
|
||||||
status: Option[OrderEnums.Status] = None,
|
status: Option[OrderEnums.Status] = None,
|
||||||
complete: Option[Boolean] = None
|
complete: Option[Boolean] = None
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
|
|
||||||
package org.openapitools.client.model
|
package org.openapitools.client.model
|
||||||
|
|
||||||
import java.util.Date
|
import java.time.OffsetDateTime
|
||||||
|
|
||||||
case class Order (
|
case class Order (
|
||||||
_id: Option[Long],
|
_id: Option[Long],
|
||||||
_petId: Option[Long],
|
_petId: Option[Long],
|
||||||
_quantity: Option[Integer],
|
_quantity: Option[Integer],
|
||||||
_shipDate: Option[Date],
|
_shipDate: Option[OffsetDateTime],
|
||||||
/* Order Status */
|
/* Order Status */
|
||||||
_status: Option[String],
|
_status: Option[String],
|
||||||
_complete: Option[Boolean]
|
_complete: Option[Boolean]
|
||||||
|
@ -4,16 +4,12 @@ import argonaut._
|
|||||||
import argonaut.EncodeJson._
|
import argonaut.EncodeJson._
|
||||||
import argonaut.DecodeJson._
|
import argonaut.DecodeJson._
|
||||||
|
|
||||||
import org.http4s._
|
import java.time.OffsetDateTime
|
||||||
import org.http4s.{EntityDecoder, EntityEncoder}
|
|
||||||
import org.http4s.argonaut._
|
|
||||||
|
|
||||||
import org.joda.time.DateTime
|
|
||||||
|
|
||||||
object DateTimeCodecs {
|
object DateTimeCodecs {
|
||||||
implicit def dateTimeEncodeJson: EncodeJson[DateTime] =
|
implicit def dateTimeEncodeJson: EncodeJson[OffsetDateTime] =
|
||||||
EncodeJson[DateTime](dt => StringEncodeJson(dt.toString))
|
EncodeJson[OffsetDateTime](dt => StringEncodeJson(dt.toString))
|
||||||
|
|
||||||
implicit def dateTimeDecodeJson: DecodeJson[DateTime] =
|
implicit def dateTimeDecodeJson: DecodeJson[OffsetDateTime] =
|
||||||
DecodeJson.of[String].map(DateTime.parse(_)) setName "org.joda.time.DateTime"
|
DecodeJson.of[String].map(OffsetDateTime.parse(_)) setName "java.time.OffsetDateTime"
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ import org.http4s.{EntityDecoder, EntityEncoder}
|
|||||||
import org.http4s.argonaut._
|
import org.http4s.argonaut._
|
||||||
import org.joda.time.DateTime
|
import org.joda.time.DateTime
|
||||||
|
|
||||||
import org.joda.time.DateTime
|
import java.time.OffsetDateTime
|
||||||
|
|
||||||
import Order._
|
import Order._
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ case class Order (
|
|||||||
id: Option[Long],
|
id: Option[Long],
|
||||||
petId: Option[Long],
|
petId: Option[Long],
|
||||||
quantity: Option[Integer],
|
quantity: Option[Integer],
|
||||||
shipDate: Option[DateTime],
|
shipDate: Option[OffsetDateTime],
|
||||||
/* Order Status */
|
/* Order Status */
|
||||||
status: Option[Status],
|
status: Option[Status],
|
||||||
complete: Option[Boolean])
|
complete: Option[Boolean])
|
||||||
|
@ -9,7 +9,6 @@ crossScalaVersions := Seq(scalaVersion.value, "2.12.10", "2.11.12")
|
|||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"com.softwaremill.sttp.client" %% "core" % "2.0.0",
|
"com.softwaremill.sttp.client" %% "core" % "2.0.0",
|
||||||
"com.softwaremill.sttp.client" %% "json4s" % "2.0.0",
|
"com.softwaremill.sttp.client" %% "json4s" % "2.0.0",
|
||||||
"joda-time" % "joda-time" % "2.10.1",
|
|
||||||
"org.json4s" %% "json4s-jackson" % "3.6.7",
|
"org.json4s" %% "json4s-jackson" % "3.6.7",
|
||||||
// test dependencies
|
// test dependencies
|
||||||
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
|
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
|
||||||
|
@ -1,27 +1,29 @@
|
|||||||
package org.openapitools.client.core
|
package org.openapitools.client.core
|
||||||
|
|
||||||
import org.joda.time.DateTime
|
import java.time.{LocalDate, LocalDateTime, OffsetDateTime, ZoneId}
|
||||||
import org.joda.time.format.ISODateTimeFormat
|
import java.time.format.DateTimeFormatter
|
||||||
|
import scala.util.Try
|
||||||
import org.json4s.{Serializer, CustomSerializer, JNull}
|
import org.json4s.{Serializer, CustomSerializer, JNull}
|
||||||
import org.json4s.JsonAST.JString
|
import org.json4s.JsonAST.JString
|
||||||
|
|
||||||
object Serializers {
|
object Serializers {
|
||||||
|
|
||||||
case object DateTimeSerializer extends CustomSerializer[DateTime](_ => ( {
|
case object DateTimeSerializer extends CustomSerializer[OffsetDateTime](_ => ( {
|
||||||
case JString(s) =>
|
case JString(s) =>
|
||||||
ISODateTimeFormat.dateOptionalTimeParser().parseDateTime(s)
|
Try(OffsetDateTime.parse(s, DateTimeFormatter.ISO_OFFSET_DATE_TIME)) orElse
|
||||||
|
Try(LocalDateTime.parse(s).atZone(ZoneId.systemDefault()).toOffsetDateTime) getOrElse (null)
|
||||||
case JNull => null
|
case JNull => null
|
||||||
}, {
|
}, {
|
||||||
case d: org.joda.time.DateTime =>
|
case d: OffsetDateTime =>
|
||||||
JString(ISODateTimeFormat.dateTime().print(d))
|
JString(d.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME))
|
||||||
})
|
}))
|
||||||
)
|
|
||||||
|
|
||||||
case object LocalDateSerializer extends CustomSerializer[org.joda.time.LocalDate](_ => ( {
|
case object LocalDateSerializer extends CustomSerializer[LocalDate]( _ => ( {
|
||||||
case JString(s) => org.joda.time.format.DateTimeFormat.forPattern("yyyy-MM-dd").parseLocalDate(s)
|
case JString(s) => LocalDate.parse(s)
|
||||||
case JNull => null
|
case JNull => null
|
||||||
}, {
|
}, {
|
||||||
case d: org.joda.time.LocalDate => JString(d.toString("yyyy-MM-dd"))
|
case d: LocalDate =>
|
||||||
|
JString(d.format(DateTimeFormatter.ISO_LOCAL_DATE))
|
||||||
}))
|
}))
|
||||||
|
|
||||||
def all: Seq[Serializer[_]] = Seq[Serializer[_]]() :+ LocalDateSerializer :+ DateTimeSerializer
|
def all: Seq[Serializer[_]] = Seq[Serializer[_]]() :+ LocalDateSerializer :+ DateTimeSerializer
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.openapitools.client.model
|
package org.openapitools.client.model
|
||||||
|
|
||||||
import org.joda.time.DateTime
|
import java.time.OffsetDateTime
|
||||||
import org.openapitools.client.core.ApiModel
|
import org.openapitools.client.core.ApiModel
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -22,7 +22,7 @@ case class Order(
|
|||||||
id: Option[Long] = None,
|
id: Option[Long] = None,
|
||||||
petId: Option[Long] = None,
|
petId: Option[Long] = None,
|
||||||
quantity: Option[Int] = None,
|
quantity: Option[Int] = None,
|
||||||
shipDate: Option[DateTime] = None,
|
shipDate: Option[OffsetDateTime] = None,
|
||||||
/* Order Status */
|
/* Order Status */
|
||||||
status: Option[OrderEnums.Status] = None,
|
status: Option[OrderEnums.Status] = None,
|
||||||
complete: Option[Boolean] = None
|
complete: Option[Boolean] = None
|
||||||
|
@ -1 +1 @@
|
|||||||
4.0.0-SNAPSHOT
|
4.3.0-SNAPSHOT
|
@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
package io.swagger.client.model
|
package io.swagger.client.model
|
||||||
import play.api.libs.json._
|
import play.api.libs.json._
|
||||||
import org.joda.time.DateTime
|
import java.time.OffsetDateTime
|
||||||
|
|
||||||
case class Order (
|
case class Order (
|
||||||
id: Option[Long],
|
id: Option[Long],
|
||||||
petId: Option[Long],
|
petId: Option[Long],
|
||||||
quantity: Option[Int],
|
quantity: Option[Int],
|
||||||
shipDate: Option[DateTime],
|
shipDate: Option[OffsetDateTime],
|
||||||
status: Option[OrderStatusEnum.OrderStatusEnum],
|
status: Option[OrderStatusEnum.OrderStatusEnum],
|
||||||
complete: Option[Boolean]
|
complete: Option[Boolean]
|
||||||
)
|
)
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
package org.openapitools.server.model
|
package org.openapitools.server.model
|
||||||
import org.joda.time.DateTime
|
import java.time.OffsetDateTime
|
||||||
|
|
||||||
case class Order(
|
case class Order(
|
||||||
id: Option[Long],
|
id: Option[Long],
|
||||||
@ -19,7 +19,7 @@ case class Order(
|
|||||||
|
|
||||||
quantity: Option[Int],
|
quantity: Option[Int],
|
||||||
|
|
||||||
shipDate: Option[DateTime],
|
shipDate: Option[OffsetDateTime],
|
||||||
|
|
||||||
/* Order Status */
|
/* Order Status */
|
||||||
status: Option[String],
|
status: Option[String],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user