Files
abuse-registration-api-golang/internal/web/templates/index.html
T

231 lines
9.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registration API POC — FLÓ</title>
<script>
(function () {
var stored = localStorage.getItem('poc-theme');
var theme = stored || (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'tokyo' : 'light');
document.documentElement.setAttribute('data-theme', theme);
})();
</script>
<link rel="stylesheet" href="/static/css/style.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<a href="https://fló.fo" class="back-link">← FLÓ.FO</a>
<span class="brand">FLÓ <span class="brand-sep">/</span> <span class="brand-sub">API POC</span></span>
<span aria-hidden="true"></span>
</header>
<div class="reset-banner" role="status" aria-live="polite">
<span class="reset-label">POC reset in</span>
<span id="reset-countdown" class="reset-countdown" data-reset-at="{{ .NextReset }}">--:--</span>
<span class="reset-note">All in-memory data resets every 10 minutes.</span>
</div>
<main id="main">
<section class="intro-card">
<h1>Abuse Registration API Example</h1>
<p>This API uses JWT for authentication and authorization. Data is stored in memory.</p>
</section>
<section class="columns section-block">
<div class="col">
<fieldset>
<legend>Reader user</legend>
<p><code>reader</code> / <code>reader-password</code></p>
<p class="muted">Can read protected endpoints and use filters.</p>
</fieldset>
</div>
<div class="col">
<fieldset>
<legend>CRUD user</legend>
<p><code>admin</code> / <code>admin-password</code></p>
<p class="muted">Can create, read, update with PUT, delete, and reset the sample dataset.</p>
</fieldset>
</div>
</section>
<section class="section-block workflow-section">
<h2>Terminal workflows</h2>
<p class="muted">These examples are terminal only. You can translate it to postman if you want to.</p>
<div class="harmonium" data-single-open>
<details class="workflow-panel" open>
<summary>
<span>Linux / curl</span>
</summary>
<div class="workflow-content">
<h3>Reader user — filtered reads</h3>
<pre><code>READER_TOKEN=$(curl -s -X POST http://localhost:8080/login \
-H 'Content-Type: application/json' \
-d '{"user_name":"reader","password":"reader-password"}' \
| sed -n 's/.*"token":"\([^"]*\)".*/\1/p')
curl -s 'http://localhost:8080/api/v1/registrations?location=Tórshavn&limit=5' \
-H "Authorization: $READER_TOKEN"
curl -s 'http://localhost:8080/api/v1/registrations?gender=female&abuse_type=psychological&status=open&limit=10' \
-H "Authorization: $READER_TOKEN"
curl -s 'http://localhost:8080/api/v1/registrations?from=1989-01-01&to=1990-01-01&offset=20&limit=10' \
-H "Authorization: $READER_TOKEN"
curl -s 'http://localhost:8080/api/v1/locations' \
-H "Authorization: $READER_TOKEN"</code></pre>
<h3>CRUD user — create, update, delete</h3>
<pre><code>ADMIN_TOKEN=$(curl -s -X POST http://localhost:8080/login \
-H 'Content-Type: application/json' \
-d '{"user_name":"admin","password":"admin-password"}' \
| sed -n 's/.*"token":"\([^"]*\)".*/\1/p')
CREATED_ID=$(curl -s -X POST http://localhost:8080/api/v1/registrations \
-H "Authorization: $ADMIN_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"gender":"unknown","location":"Tórshavn","abuse_type":"psychological","status":"new"}' \
| sed -n 's/.*"id":"\([^"]*\)".*/\1/p')
curl -s -X PUT "http://localhost:8080/api/v1/registrations/$CREATED_ID" \
-H "Authorization: $ADMIN_TOKEN" \
-H 'Content-Type: application/json' \
-d '{"gender":"female","location":"Skopun","abuse_type":"digital","status":"referred"}'
curl -s -X DELETE "http://localhost:8080/api/v1/registrations/$CREATED_ID" \
-H "Authorization: $ADMIN_TOKEN"</code></pre>
</div>
</details>
<details class="workflow-panel">
<summary>
<span>Windows / PowerShell</span>
</summary>
<div class="workflow-content">
<h3>Reader user — filtered reads</h3>
<pre><code>$reader = Invoke-RestMethod &#96;
-Method Post &#96;
-Uri "http://localhost:8080/login" &#96;
-ContentType "application/json" &#96;
-Body '{"user_name":"reader","password":"reader-password"}'
$READER_TOKEN = $reader.token
Invoke-RestMethod &#96;
-Uri "http://localhost:8080/api/v1/registrations?location=Tórshavn&limit=5" &#96;
-Headers @{Authorization=$READER_TOKEN}
Invoke-RestMethod &#96;
-Uri "http://localhost:8080/api/v1/registrations?gender=female&abuse_type=psychological&status=open&limit=10" &#96;
-Headers @{Authorization=$READER_TOKEN}
Invoke-RestMethod &#96;
-Uri "http://localhost:8080/api/v1/registrations?from=1989-01-01&to=1990-01-01&offset=20&limit=10" &#96;
-Headers @{Authorization=$READER_TOKEN}
Invoke-RestMethod &#96;
-Uri "http://localhost:8080/api/v1/locations" &#96;
-Headers @{Authorization=$READER_TOKEN}</code></pre>
<h3>CRUD user — create, update, delete</h3>
<pre><code>$admin = Invoke-RestMethod &#96;
-Method Post &#96;
-Uri "http://localhost:8080/login" &#96;
-ContentType "application/json" &#96;
-Body '{"user_name":"admin","password":"admin-password"}'
$ADMIN_TOKEN = $admin.token
$created = Invoke-RestMethod &#96;
-Method Post &#96;
-Uri "http://localhost:8080/api/v1/registrations" &#96;
-Headers @{Authorization=$ADMIN_TOKEN} &#96;
-ContentType "application/json" &#96;
-Body '{"gender":"unknown","location":"Tórshavn","abuse_type":"psychological","status":"new"}'
$CREATED_ID = $created.id
Invoke-RestMethod &#96;
-Method Put &#96;
-Uri "http://localhost:8080/api/v1/registrations/$CREATED_ID" &#96;
-Headers @{Authorization=$ADMIN_TOKEN} &#96;
-ContentType "application/json" &#96;
-Body '{"gender":"female","location":"Skopun","abuse_type":"digital","status":"referred"}'
Invoke-RestMethod &#96;
-Method Delete &#96;
-Uri "http://localhost:8080/api/v1/registrations/$CREATED_ID" &#96;
-Headers @{Authorization=$ADMIN_TOKEN}</code></pre>
</div>
</details>
</div>
</section>
<section class="section-block data-section">
<h2>Current JSON data</h2>
<p class="muted">This viewer loads a public demo snapshot. The actual API routes under <code>/api/v1</code> still require a JWT.</p>
<div class="data-browser">
<form id="filter-form" class="filter-form">
<label>Location
<select name="location">
<option value="">all</option>
{{ range .Locations }}<option value="{{ . }}">{{ . }}</option>{{ end }}
</select>
</label>
<label>Abuse type
<select name="abuse_type">
<option value="">all</option>
{{ range .Categories }}<option value="{{ . }}">{{ . }}</option>{{ end }}
</select>
</label>
<label>Gender
<select name="gender">
<option value="">all</option>
{{ range .Genders }}<option value="{{ . }}">{{ . }}</option>{{ end }}
</select>
</label>
<label>Status
<select name="status">
<option value="">all</option>
{{ range .Statuses }}<option value="{{ . }}">{{ . }}</option>{{ end }}
</select>
</label>
<label>From <input name="from" placeholder="1988-01-01"></label>
<label>To <input name="to" placeholder="1991-12-31"></label>
<label>Search <input name="search" placeholder="uuid or field text"></label>
<label>Limit <input name="limit" type="number" min="0" value="50"></label>
<div class="inline form-buttons">
<button type="submit">Apply filters</button>
<button type="button" id="reset-filters">Clear</button>
</div>
</form>
<div class="json-pane">
<p id="data-status" class="muted">Loading data…</p>
<pre class="json-output"><code id="json-data">[]</code></pre>
</div>
</div>
</section>
</main>
<footer>
<span>&copy; <script>document.write(new Date().getFullYear())</script> <a href="https://fló.fo">FLÓ.FO</a> | ALL RIGHTS RESERVED | {{ .Version }}</span>
<a href="https://www.linkedin.com/in/bartal-l%C3%A6arsson-63793895/" target="_blank" rel="noopener" class="footer-icon" aria-label="LinkedIn">
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>
</a>
</footer>
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle theme"></button>
<script src="/static/js/theme.js"></script>
<script src="/static/js/app.js"></script>
</body>
</html>