feat(auth): support API tokens and bearer token authentication

- Add backend services to create, list, and delete API tokens.
- Implement Bearer token authentication to resolve tokens to users.
- Register HTTP routes for managing user tokens under `/account/tokens`.
- Add tests to verify that uploads with valid Bearer tokens associate the upload with the correct user, while invalid tokens fall back to anonymous uploads.
This commit is contained in:
2026-05-31 12:50:13 +03:00
parent 0503fad9af
commit d99f8ee82a
9 changed files with 533 additions and 3 deletions

View File

@@ -244,6 +244,16 @@
}
}
/* Access token: copy one-time secret */
const tokenCopyBtn = document.querySelector("[data-token-copy]");
if (tokenCopyBtn) {
tokenCopyBtn.addEventListener("click", () => {
const valueEl = document.querySelector("[data-token-value]");
if (!valueEl) return;
copyText(valueEl.textContent.trim(), tokenCopyBtn, "Copied");
});
}
if (!form || !dropZone || !fileInput) {
return;
}