Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby client [2.X] Added inheritance/polymorphism (allOf) to ruby client #11969

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

mjschuetze102
Copy link
Contributor

@mjschuetze102 mjschuetze102 commented Nov 14, 2022

PR checklist

  • Read the contribution guidelines.
  • Ran the shell script under ./bin/ to update Petstore sample so that CIs can verify the change. (For instance, only need to run ./bin/{LANG}-petstore.sh and ./bin/security/{LANG}-petstore.sh if updating the {LANG} (e.g. php, ruby, python, etc) code generator or {LANG} client's mustache templates). Windows batch files can be found in .\bin\windows\.
  • Filed the PR against the correct branch: 3.0.0 branch for changes related to OpenAPI spec 3.0. Default: master.
  • Copied the technical committee to review the pull request if your PR is targeting a particular programming language.

Description of the PR

This takes some of the changes made to OpenAPI v3.0 and expands on them to add inheritance/ polymorphism to Swagger 2.0

Comment on lines +615 to +621
@Override
protected void addImport(CodegenModel m, String type) {
if (m.parent != null && m.parent.equals(type)) {
super.addImport(m, type);
}
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only adds the parent class for importing as the ruby client does not need to know the type of the values it works with, but does need to import the parent class

Comment on lines +263 to +267
@Override
public String toModelImport(String name) {
return this.toModelFilename(name);
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes the import statement to use the file name rather than the model name as that is what Ruby uses to import the additional class

Comment on lines +39 to +50
{{#allVars}}
:'{{{name}}}' => :'{{{baseName}}}'{{#hasMore}},{{/hasMore}}
{{/vars}}
{{/allVars}}
}
end

# Attribute type mapping.
def self.swagger_types
{
{{#vars}}
{{#allVars}}
:'{{{name}}}' => :'{{{datatype}}}'{{#hasMore}},{{/hasMore}}
{{/vars}}
{{/allVars}}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Due to the way the deserializer works in the api_client, the parent values must be present in swagger_types and attribute_map

Comment on lines +61 to +65
{{#parent}}

# call parent's initialize
super(attributes)
{{/parent}}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The parent constructor is called with the values passed in to the constructor of the child

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant