forked from loafle/openapi-generator-original
added map support for #360
This commit is contained in:
parent
93eca2a6b6
commit
21396d0797
@ -44,6 +44,7 @@ public class PhpClientCodegen extends DefaultCodegen implements CodegenConfig {
|
|||||||
|
|
||||||
languageSpecificPrimitives.add("int");
|
languageSpecificPrimitives.add("int");
|
||||||
languageSpecificPrimitives.add("array");
|
languageSpecificPrimitives.add("array");
|
||||||
|
languageSpecificPrimitives.add("map");
|
||||||
languageSpecificPrimitives.add("string");
|
languageSpecificPrimitives.add("string");
|
||||||
languageSpecificPrimitives.add("DateTime");
|
languageSpecificPrimitives.add("DateTime");
|
||||||
|
|
||||||
@ -52,7 +53,7 @@ public class PhpClientCodegen extends DefaultCodegen implements CodegenConfig {
|
|||||||
typeMapping.put("Array", "array");
|
typeMapping.put("Array", "array");
|
||||||
typeMapping.put("String", "string");
|
typeMapping.put("String", "string");
|
||||||
typeMapping.put("List", "array");
|
typeMapping.put("List", "array");
|
||||||
typeMapping.put("map", "array");
|
typeMapping.put("map", "map");
|
||||||
|
|
||||||
supportingFiles.add(new SupportingFile("Swagger.mustache", "", "Swagger.php"));
|
supportingFiles.add(new SupportingFile("Swagger.mustache", "", "Swagger.php"));
|
||||||
}
|
}
|
||||||
@ -81,7 +82,7 @@ public class PhpClientCodegen extends DefaultCodegen implements CodegenConfig {
|
|||||||
else if (p instanceof MapProperty) {
|
else if (p instanceof MapProperty) {
|
||||||
MapProperty mp = (MapProperty) p;
|
MapProperty mp = (MapProperty) p;
|
||||||
Property inner = mp.getAdditionalProperties();
|
Property inner = mp.getAdditionalProperties();
|
||||||
return getSwaggerType(p) + "[string]";
|
return getSwaggerType(p) + "[string," + getTypeDeclaration(inner) + "]";
|
||||||
}
|
}
|
||||||
return super.getTypeDeclaration(p);
|
return super.getTypeDeclaration(p);
|
||||||
}
|
}
|
||||||
|
@ -115,7 +115,6 @@ class APIClient {
|
|||||||
" response code: " .
|
" response code: " .
|
||||||
$response_info['http_code']);
|
$response_info['http_code']);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,10 +193,19 @@ class APIClient {
|
|||||||
{
|
{
|
||||||
if (null === $data) {
|
if (null === $data) {
|
||||||
$deserialized = null;
|
$deserialized = null;
|
||||||
|
} elseif (substr($class, 0, 4) == 'map[') {
|
||||||
|
$inner = substr($class, 4, -1);
|
||||||
|
$values = array();
|
||||||
|
if(strrpos($inner, ",") !== false) {
|
||||||
|
$subClass = explode(',', $inner, 2)[1];
|
||||||
|
foreach ($data as $key => $value) {
|
||||||
|
$values[] = array($key => self::deserialize($value, $subClass));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$deserialized = $values;
|
||||||
} elseif (substr($class, 0, 6) == 'array[') {
|
} elseif (substr($class, 0, 6) == 'array[') {
|
||||||
$subClass = substr($class, 6, -1);
|
$subClass = substr($class, 6, -1);
|
||||||
$values = array();
|
foreach ($data as $key => $value) {
|
||||||
foreach ($data as $value) {
|
|
||||||
$values[] = self::deserialize($value, $subClass);
|
$values[] = self::deserialize($value, $subClass);
|
||||||
}
|
}
|
||||||
$deserialized = $values;
|
$deserialized = $values;
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
package php
|
package php
|
||||||
|
|
||||||
import com.wordnik.swagger.codegen.languages.PhpClientCodegen
|
import com.wordnik.swagger.codegen.languages.PhpClientCodegen
|
||||||
import com.wordnik.swagger.util.{ Json, SwaggerLoader }
|
import com.wordnik.swagger.util.Json
|
||||||
import com.wordnik.swagger.models._
|
import com.wordnik.swagger.models._
|
||||||
import com.wordnik.swagger.models.properties._
|
import com.wordnik.swagger.models.properties._
|
||||||
|
|
||||||
|
import io.swagger.parser.SwaggerParser
|
||||||
|
|
||||||
import org.junit.runner.RunWith
|
import org.junit.runner.RunWith
|
||||||
import org.scalatest.junit.JUnitRunner
|
import org.scalatest.junit.JUnitRunner
|
||||||
import org.scalatest.FlatSpec
|
import org.scalatest.FlatSpec
|
||||||
@ -121,9 +123,9 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
|
|
||||||
val vars = cm.vars
|
val vars = cm.vars
|
||||||
vars.get(0).baseName should be ("translations")
|
vars.get(0).baseName should be ("translations")
|
||||||
vars.get(0).datatype should be ("array[string]")
|
vars.get(0).datatype should be ("map[string,string]")
|
||||||
vars.get(0).name should be ("translations")
|
vars.get(0).name should be ("translations")
|
||||||
vars.get(0).baseType should be ("array")
|
vars.get(0).baseType should be ("map")
|
||||||
vars.get(0).containerType should be ("map")
|
vars.get(0).containerType should be ("map")
|
||||||
vars.get(0).required should equal (false)
|
vars.get(0).required should equal (false)
|
||||||
vars.get(0).isContainer should equal (true)
|
vars.get(0).isContainer should equal (true)
|
||||||
@ -151,7 +153,7 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
vars.get(0).required should equal (false)
|
vars.get(0).required should equal (false)
|
||||||
vars.get(0).isNotContainer should equal (true)
|
vars.get(0).isNotContainer should equal (true)
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
it should "convert a model with complex list property" in {
|
it should "convert a model with complex list property" in {
|
||||||
val model = new ModelImpl()
|
val model = new ModelImpl()
|
||||||
.description("a sample model")
|
.description("a sample model")
|
||||||
@ -168,10 +170,10 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
|
|
||||||
val vars = cm.vars
|
val vars = cm.vars
|
||||||
vars.get(0).baseName should be ("children")
|
vars.get(0).baseName should be ("children")
|
||||||
vars.get(0).complexType should be ("SWGChildren")
|
vars.get(0).complexType should be ("Children")
|
||||||
vars.get(0).datatype should be ("NSArray*")
|
vars.get(0).datatype should be ("array[Children]")
|
||||||
vars.get(0).name should be ("children")
|
vars.get(0).name should be ("children")
|
||||||
vars.get(0).baseType should be ("NSArray")
|
vars.get(0).baseType should be ("array")
|
||||||
vars.get(0).containerType should be ("array")
|
vars.get(0).containerType should be ("array")
|
||||||
vars.get(0).required should equal (false)
|
vars.get(0).required should equal (false)
|
||||||
vars.get(0).isContainer should equal (true)
|
vars.get(0).isContainer should equal (true)
|
||||||
@ -190,14 +192,14 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
cm.classname should be ("Sample")
|
cm.classname should be ("Sample")
|
||||||
cm.description should be ("a sample model")
|
cm.description should be ("a sample model")
|
||||||
cm.vars.size should be (1)
|
cm.vars.size should be (1)
|
||||||
(cm.imports.asScala.toSet & Set("SWGChildren")).size should be (1)
|
(cm.imports.asScala.toSet & Set("Children")).size should be (1)
|
||||||
|
|
||||||
val vars = cm.vars
|
val vars = cm.vars
|
||||||
vars.get(0).baseName should be ("children")
|
vars.get(0).baseName should be ("children")
|
||||||
vars.get(0).complexType should be ("SWGChildren")
|
vars.get(0).complexType should be ("Children")
|
||||||
vars.get(0).datatype should be ("NSDictionary*")
|
vars.get(0).datatype should be ("map[string,Children]")
|
||||||
vars.get(0).name should be ("children")
|
vars.get(0).name should be ("children")
|
||||||
vars.get(0).baseType should be ("NSDictionary")
|
vars.get(0).baseType should be ("map")
|
||||||
vars.get(0).containerType should be ("map")
|
vars.get(0).containerType should be ("map")
|
||||||
vars.get(0).required should equal (false)
|
vars.get(0).required should equal (false)
|
||||||
vars.get(0).isContainer should equal (true)
|
vars.get(0).isContainer should equal (true)
|
||||||
@ -215,9 +217,8 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
cm.classname should be ("Sample")
|
cm.classname should be ("Sample")
|
||||||
cm.description should be ("an array model")
|
cm.description should be ("an array model")
|
||||||
cm.vars.size should be (0)
|
cm.vars.size should be (0)
|
||||||
cm.parent should be ("NSMutableArray")
|
cm.imports.size should be (1)
|
||||||
cm.imports.size should be (3)
|
(cm.imports.asScala.toSet & Set("Children")).size should be (1)
|
||||||
(cm.imports.asScala.toSet & Set("SWGChildren", "NSArray", "NSMutableArray")).size should be (3)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
it should "convert an map model" in {
|
it should "convert an map model" in {
|
||||||
@ -232,13 +233,13 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
cm.classname should be ("Sample")
|
cm.classname should be ("Sample")
|
||||||
cm.description should be ("an map model")
|
cm.description should be ("an map model")
|
||||||
cm.vars.size should be (0)
|
cm.vars.size should be (0)
|
||||||
cm.parent should be ("NSMutableDictionary")
|
cm.imports.size should be (2)
|
||||||
cm.imports.size should be (3)
|
(cm.imports.asScala.toSet & Set("Children")).size should be (1)
|
||||||
(cm.imports.asScala.toSet & Set("SWGChildren", "NSDictionary", "NSMutableDictionary")).size should be (3)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
it should "create proper imports per #316" in {
|
it should "create proper imports per #316" in {
|
||||||
val model = new SwaggerLoader().read("src/test/resources/postBodyTest.json")
|
val model = new SwaggerParser()
|
||||||
|
.read("src/test/resources/postBodyTest.json")
|
||||||
val codegen = new PhpClientCodegen()
|
val codegen = new PhpClientCodegen()
|
||||||
|
|
||||||
val animalPaths = model.getPaths()
|
val animalPaths = model.getPaths()
|
||||||
@ -246,14 +247,13 @@ class PhpModelTest extends FlatSpec with Matchers {
|
|||||||
animalOps.getPost() should not be (null)
|
animalOps.getPost() should not be (null)
|
||||||
val animalCo = codegen.fromOperation("/animals", "POST", animalOps.getPost())
|
val animalCo = codegen.fromOperation("/animals", "POST", animalOps.getPost())
|
||||||
animalCo.imports.size should be (1)
|
animalCo.imports.size should be (1)
|
||||||
animalCo.imports.contains("SWGAnimal") should equal (true)
|
animalCo.imports.contains("Animal") should equal (true)
|
||||||
|
|
||||||
val insectPaths = model.getPaths()
|
val insectPaths = model.getPaths()
|
||||||
val insectOps = insectPaths.get("/insects")
|
val insectOps = insectPaths.get("/insects")
|
||||||
insectOps.getPost() should not be (null)
|
insectOps.getPost() should not be (null)
|
||||||
val insectCo = codegen.fromOperation("/insects", "POST", insectOps.getPost())
|
val insectCo = codegen.fromOperation("/insects", "POST", insectOps.getPost())
|
||||||
insectCo.imports.size should be (1)
|
insectCo.imports.size should be (1)
|
||||||
insectCo.imports.contains("SWGInsect") should equal (true)
|
insectCo.imports.contains("Insect") should equal (true)
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user