summaryrefslogtreecommitdiffstats
path: root/generator/src
diff options
context:
space:
mode:
Diffstat (limited to 'generator/src')
-rw-r--r--generator/src/methods.rs3
-rw-r--r--generator/src/structs.rs47
2 files changed, 47 insertions, 3 deletions
diff --git a/generator/src/methods.rs b/generator/src/methods.rs
index 064f40a..173ede5 100644
--- a/generator/src/methods.rs
+++ b/generator/src/methods.rs
@@ -103,8 +103,7 @@ fn method_docs(spec: &OpenApiV2, op: &Operation) -> eyre::Result<String> {
for param in params {
let param = param.deref(spec)?;
match &param._in {
- ParameterIn::Path { param: _ }
- | ParameterIn::FormData { param: _ } => {
+ ParameterIn::Path { param: _ } | ParameterIn::FormData { param: _ } => {
write!(&mut out, "/// - `{}`", param.name)?;
if let Some(description) = &param.description {
write!(&mut out, ": {}", description)?;
diff --git a/generator/src/structs.rs b/generator/src/structs.rs
index 45e2f71..1a01e6b 100644
--- a/generator/src/structs.rs
+++ b/generator/src/structs.rs
@@ -39,6 +39,14 @@ pub fn create_struct_for_definition(
return Ok(String::new());
}
+ if schema._type == Some(SchemaType::One(Primitive::String)) {
+ if let Some(_enum) = &schema._enum {
+ return create_enum(name, schema);
+ }
+ }
+
+ let mut subtypes = Vec::new();
+
let docs = create_struct_docs(schema)?;
let mut fields = String::new();
let required = schema.required.as_deref().unwrap_or_default();
@@ -84,6 +92,17 @@ pub fn create_struct_for_definition(
fields.push_str(": ");
fields.push_str(&field_ty);
fields.push_str(",\n");
+
+ if let MaybeRef::Value { value } = &prop_schema {
+ if value._type == Some(SchemaType::One(Primitive::Object))
+ || (value._type == Some(SchemaType::One(Primitive::String))
+ && value._enum.is_some())
+ {
+ let name = format!("{name}{}", prop_name.to_pascal_case());
+ let subtype = create_struct_for_definition(spec, &name, value)?;
+ subtypes.push(subtype);
+ }
+ }
}
}
@@ -95,7 +114,33 @@ pub fn create_struct_for_definition(
fields.push_str(">,\n");
}
- let out = format!("{docs}#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]\npub struct {name} {{\n{fields}}}\n\n");
+ let mut out = format!("{docs}#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]\npub struct {name} {{\n{fields}}}\n\n");
+ for subtype in subtypes {
+ out.push_str(&subtype);
+ }
+ Ok(out)
+}
+
+fn create_enum(name: &str, schema: &Schema) -> eyre::Result<String> {
+ let _enum = schema
+ ._enum
+ .as_deref()
+ .ok_or_else(|| eyre::eyre!("cannot create enum from non-enum schema"))?;
+ let mut variants = String::new();
+
+ let docs = create_struct_docs(schema)?;
+ for variant in _enum {
+ match variant {
+ serde_json::Value::String(s) => {
+ let variant_name = s.to_pascal_case();
+ variants.push_str(&variant_name);
+ variants.push_str(",\n");
+ }
+ x => eyre::bail!("cannot create enum variant. expected string, got {x:?}"),
+ }
+ }
+
+ let out = format!("{docs}#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]\npub enum {name} {{\n{variants}}}\n\n");
Ok(out)
}