-
Notifications
You must be signed in to change notification settings - Fork 3
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
OpenApi Generator #1
Comments
@teamon I was trying to achieve something similar (it is by no means finished). Maybe you'll find some inspiration? |
this looks like a wonderful feature, I have been using openapi-generator before and encountered the same issues you have raised. watching with interest :) |
Hey ! As a user of the openapi generator I must say that I really like your idea. |
@teamon how are you thinking to deal with |
I want to get this situation done, but I feel that we should strategically use https://github.com/OpenAPITools/openapi-generator from Java, even though it makes me quite unhappy. Primarily because many SaaS companies have already leveraged the tool to provide the SDK for other languages. I keep overthinking this one. |
I've tried to build an OpenAPI generator at least three times now and I've always failed. The main reasons usually being:
I also got used to not having SDK for anything in Elixir so I got used to the default of just building it myself in 10 LOC. And if there is an Elixir SDK there's always something that I don't like about it 😅 Maybe it's just that tesla's high-level API is good for humans to write API clients and when you need to generate one you might as well use some lower-level lib like mint or finch. |
@teamon same here! I am onboard. I am primarily interested in strategically put the Elixir logo or name out there. Aside from this, I am writing a series of Explanations about anti-patterns as well. Maybe I should implement elixir-tesla/tesla#531 since, the intent is to have a replicable copy+paste way to build these functions |
What is this all about?
Generate full tesla-based API client based on Open Api specification file, like this:
Tweet that started it all.
Why?
We already have the great open_api_spex library to generate API spec from Phoenix apps. We should also have an easy way to use this spec from another Elixir app, as an API client.
Why not use existing OpenAPI generators?
Existing generators have quite big dependencies (like docker or java). In case of Elixir, they generate a separate mix package with many files. This is suboptimal, as for every spec change one must regenerate and release a new package.
Here, I propose an alternative, where there are no client API packages at all. The client application can simply depend on tesla and define its own API client module, with customized adapters and middleware. The client is generated on the fly, during regular compilation.
Current To-Do list
"additionalProperties": true
formData
operation parameterswith
statements (get rid of{:ok, x} <- {:ok, data["x"]}
or{:error, _} <- {:ok, ...}
patterns)Try it today
Warnings & Notes
This is a very early few-hours-old idea and PoC. We'll see where it goes, if it makes sense, will it be part of tesla or not, etc.
In any case, if you have any ideas or comments, do not hesitate to post them here.
The text was updated successfully, but these errors were encountered: