Add option to hide openapi label

This commit is contained in:
Michael Hansen 2022-05-10 16:35:01 -04:00
commit caaefdaa93
3 changed files with 18 additions and 12 deletions

View file

@ -296,17 +296,19 @@ def get_app(args: argparse.Namespace, request_queue: Queue, temp_dir: str):
return Response(wav_bytes, mimetype="audio/wav")
# Swagger UI
try:
api_doc(
app,
config_path=_DIR / "swagger.yaml",
url_prefix="/openapi",
title="Mimic 3",
)
except Exception:
# Fails with PyInstaller for some reason
_LOGGER.exception("Error setting up swagger UI page")
show_openapi = False
show_openapi = not args.no_show_openapi
if show_openapi:
try:
api_doc(
app,
config_path=_DIR / "swagger.yaml",
url_prefix="/openapi",
title="Mimic 3",
)
except Exception:
# Fails with PyInstaller for some reason
_LOGGER.exception("Error setting up swagger UI page")
show_openapi = False
@app.errorhandler(Exception)
async def handle_error(err) -> typing.Tuple[str, int]:

View file

@ -90,6 +90,9 @@ def get_args(argv=None) -> argparse.Namespace:
"--default-voice",
help="Default voice key to select in web interface",
)
parser.add_argument(
"--no-show-openapi", action="store_true", help="Don't show OpenAPI link"
)
parser.add_argument(
"--debug", action="store_true", help="Print DEBUG messages to console"
)

View file

@ -86,8 +86,9 @@
<div class="col-auto">
<button id="speak-button" name="speak" class="btn btn-lg btn-primary" alt="Generate speech">Speak</button>
{% if show_openapi %}
<br/><br />
{% if show_openapi %}
<a href="/openapi/" title="OpenAPI page" target="_blank" class="badge badge-info">API</a>
{% endif %}