Remove auth_mode

This commit is contained in:
binwiederhier
2026-01-22 20:26:00 -05:00
parent b67ffa4f5f
commit 9b1be517ea
6 changed files with 13 additions and 20 deletions

View File

@@ -20,7 +20,6 @@ var config = {
web_push_public_key: "",
disallowed_topics: ["docs", "static", "file", "app", "account", "settings", "signup", "login", "v1"],
config_hash: "dev", // Placeholder for development; actual value is generated server-side
auth_mode: "", // "proxy" if auth-user-header is set, empty otherwise
auth_logout_url: "", // URL to redirect to on logout (only for proxy auth)
username: "", // Authenticated username (for proxy auth)
auth_user: "", // Authenticated username (non-empty if using proxy auth)
};

View File

@@ -343,9 +343,9 @@ class AccountApi {
async sync() {
try {
// For proxy auth, store the username from config if not already in session
if (config.auth_mode === "proxy" && config.username && !session.exists()) {
console.log(`[AccountApi] Proxy auth: storing session for user ${config.username}`);
await session.store(config.username, ""); // Empty token for proxy auth
if (config.auth_user && !session.exists()) {
console.log(`[AccountApi] Proxy auth: storing session for user ${config.auth_user}`);
await session.store(config.auth_user, ""); // Empty token for proxy auth
}
if (!session.exists()) {
return null;

View File

@@ -140,7 +140,7 @@ const ProfileIcon = () => {
const handleLogout = async () => {
// For proxy auth, redirect to the logout URL if configured
if (config.auth_mode === "proxy") {
if (config.auth_user) {
if (config.auth_logout_url) {
await db().delete();
localStorage.removeItem("user");
@@ -158,8 +158,8 @@ const ProfileIcon = () => {
}
};
// Determine if logout button should be shown
const showLogout = config.auth_mode !== "proxy" || config.auth_logout_url;
// Determine if logout button should be shown (hide if proxy auth without logout URL)
const showLogout = !config.auth_user || config.auth_logout_url;
return (
<>

View File

@@ -20,7 +20,7 @@ const Login = () => {
// Redirect to app if using proxy authentication
useEffect(() => {
if (config.auth_mode === "proxy") {
if (config.auth_user) {
window.location.href = routes.app;
}
}, []);