1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2025-05-08 22:26:04 +02:00

Allow configuration of Swagger and OpenAPI JSON URL
All checks were successful
continuous-integration/drone/push Build is passing

When running in production your statistics API might be deployed to
a path like /rest/statistics instead of at the root.
This commit is contained in:
2020-12-22 12:50:03 +02:00
parent 893039bc6a
commit 70b2ba83ba
2 changed files with 11 additions and 4 deletions

View File

@ -6,6 +6,8 @@ from .database import DatabaseManager
from .stats import get_downloads, get_views
from .util import set_statistics_scope, validate_post_parameters
from .config import VERSION
from .config import SWAGGERUI_URL
from .config import SWAGGERUI_SCHEMA_URL
class RootResource:
@ -198,14 +200,12 @@ api.add_route("/collections", AllStatisticsResource())
api.add_route("/collection/{id_:uuid}", SingleStatisticsResource())
# Swagger configuration
SWAGGERUI_URL = "/swagger" # without trailing slash
SCHEMA_URL = "/docs/openapi.json"
api.add_route("/docs/openapi.json", OpenAPIJSONResource())
api.add_route(SWAGGERUI_SCHEMA_URL, OpenAPIJSONResource())
register_swaggerui_app(
api,
SWAGGERUI_URL,
SCHEMA_URL,
SWAGGERUI_SCHEMA_URL,
config={
"supportedSubmitMethods": ["get", "post"],
},