-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: serve swagger UI in LocalStack #8
base: master
Are you sure you want to change the base?
Conversation
Thanks to @thrau for the tip
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
This pull request introduces Swagger UI integration for LocalStack, providing an interactive API documentation interface for internal developer endpoints.
- Added new endpoint
http://localhost.localstack.cloud:4566/_localstack/swagger
inlocalstack-core/localstack/plugins.py
to serve Swagger UI - Implemented OpenAPI spec merging functionality in new file
localstack-core/localstack/utils/openapi.py
- Created
SwaggerUIApi
class in new filelocalstack-core/localstack/utils/swagger.py
to handle Swagger UI routing and rendering - Added HTML template for Swagger UI in
localstack-core/localstack/templates/index.html
- Updated
pyproject.toml
to include new static files and templates in package data
6 file(s) reviewed, 3 comment(s)
Edit PR Review Bot Settings
def _merge_openapi_specs(specs: list[dict[str, Any]]) -> dict[str, Any]: | ||
""" | ||
Merge a list of OpenAPI specs into a single specification. | ||
:param specs: a list of OpenAPI specs loaded in a dictionary | ||
:return: the dictionary of a merged spec. | ||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: Consider adding type hints for the return value in the function signature
# In case of an error while merging the spec, we return the first collected one. | ||
return specs[0].spec |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: Returning the first spec on error might lead to unexpected behavior. Consider raising a custom exception instead
def server_swagger_ui(self, _request): | ||
oas_path = os.path.join(os.path.dirname(__file__), "..", "templates") | ||
env = Environment(loader=FileSystemLoader(oas_path)) | ||
template = env.get_template("index.html") | ||
rendered_template = template.render() | ||
return Response(rendered_template, content_type="text/html") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: Consider caching the rendered template to improve performance for subsequent requests
Motivation
We recently introduced OpenAPI specs for different LocalStack packages (localstack and localstack.pro.core at the moment).
These specs document all the internal developer endpoints we serve in LocalStack.
To allow users to navigate those specs, we want to serve the SwaggerUI directly within LocalStack.
Changes