146 lines
4.2 KiB
Go
146 lines
4.2 KiB
Go
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
//go:embed openapi/openapi.json
|
|
var openAPISpecJSON string
|
|
|
|
func (a *App) handleOpenAPISpec(c echo.Context) error {
|
|
return c.Blob(http.StatusOK, "application/json; charset=utf-8", []byte(openAPISpecJSON))
|
|
}
|
|
|
|
func (a *App) handleOpenAPIDocs(c echo.Context) error {
|
|
html := fmt.Sprintf(`<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Shooting Event API Docs</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist@5/swagger-ui.css" />
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
background: #f7f9fc;
|
|
}
|
|
.docs-top {
|
|
background: #ffffff;
|
|
border-bottom: 1px solid #dde5f3;
|
|
padding: 14px 16px;
|
|
}
|
|
.docs-title {
|
|
margin: 0 0 8px;
|
|
font-size: 18px;
|
|
color: #1b1f40;
|
|
}
|
|
.docs-help {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
color: #4c5773;
|
|
}
|
|
.auth-panel {
|
|
margin-top: 12px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
.auth-panel input {
|
|
height: 36px;
|
|
border: 1px solid #cdd7eb;
|
|
border-radius: 8px;
|
|
padding: 0 10px;
|
|
font-size: 14px;
|
|
}
|
|
.auth-panel button {
|
|
height: 36px;
|
|
border: 1px solid #20284f;
|
|
background: #20284f;
|
|
color: white;
|
|
border-radius: 8px;
|
|
padding: 0 12px;
|
|
cursor: pointer;
|
|
}
|
|
.auth-status {
|
|
font-size: 13px;
|
|
color: #38446b;
|
|
}
|
|
#swagger-ui {
|
|
max-width: 1300px;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section class="docs-top">
|
|
<h1 class="docs-title">Shooting Event OpenAPI Docs</h1>
|
|
<p class="docs-help">
|
|
Use <strong>Try it out</strong> for live testing. For admin endpoints: login with the form below,
|
|
then your token is auto-attached to Swagger Authorize.
|
|
</p>
|
|
|
|
<form id="auth-form" class="auth-panel">
|
|
<input id="admin-user" type="text" value="datwyler" autocomplete="username" placeholder="Admin username" />
|
|
<input id="admin-pass" type="password" value="datwyler" autocomplete="current-password" placeholder="Admin password" />
|
|
<button type="submit">Login & Authorize</button>
|
|
<span id="auth-status" class="auth-status"></span>
|
|
</form>
|
|
</section>
|
|
|
|
<div id="swagger-ui"></div>
|
|
|
|
<script src="https://unpkg.com/swagger-ui-dist@5/swagger-ui-bundle.js"></script>
|
|
<script>
|
|
const ui = SwaggerUIBundle({
|
|
url: %q,
|
|
dom_id: '#swagger-ui',
|
|
deepLinking: true,
|
|
displayRequestDuration: true,
|
|
persistAuthorization: true,
|
|
docExpansion: 'list',
|
|
tryItOutEnabled: true,
|
|
});
|
|
|
|
async function loginAndAuthorize(event) {
|
|
event.preventDefault();
|
|
const status = document.getElementById('auth-status');
|
|
status.textContent = 'Logging in...';
|
|
|
|
const username = document.getElementById('admin-user').value || '';
|
|
const password = document.getElementById('admin-pass').value || '';
|
|
|
|
try {
|
|
const response = await fetch('/api/admin/login', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ username, password }),
|
|
});
|
|
const payload = await response.json().catch(() => ({}));
|
|
if (!response.ok) {
|
|
throw new Error(payload.message || 'Login failed');
|
|
}
|
|
if (!payload.token) {
|
|
throw new Error('Login succeeded but token was not returned');
|
|
}
|
|
|
|
ui.preauthorizeApiKey('bearerAuth', payload.token);
|
|
status.textContent = 'Authorized until ' + (payload.expiresAt || 'token expiry');
|
|
} catch (error) {
|
|
status.textContent = 'Auth failed: ' + error.message;
|
|
}
|
|
}
|
|
|
|
document.getElementById('auth-form').addEventListener('submit', loginAndAuthorize);
|
|
</script>
|
|
</body>
|
|
</html>`, "/api/openapi.json")
|
|
|
|
return c.HTML(http.StatusOK, html)
|
|
}
|