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

feat: serve swagger UI in LocalStack #8

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

Conversation

lizard-boy
Copy link

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

Copy link

@greptile-apps greptile-apps bot left a 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 in localstack-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 file localstack-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

Comment on lines +38 to +43
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.
"""
Copy link

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

Comment on lines +82 to +83
# In case of an error while merging the spec, we return the first collected one.
return specs[0].spec
Copy link

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

Comment on lines +17 to +22
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")
Copy link

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

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.

2 participants