feat(login): render SSO button data-driven from /auth/config

The backend now advertises the active external auth provider on
``/auth/config`` as a single ``external_auth: {type, login_url} | null``
field (replacing the per-provider ``is_oidc`` / ``is_saml`` booleans).
This is the API needed to add CAS without per-provider UI conditionals.

Wire the login UI accordingly:

- ``useSSOAuth`` exposes a single ``loginWithExternalAuth()`` action and
  ``options.external_auth`` carrying the provider info; the OIDC- and
  SAML-specific exports are gone.
- ``LoginForm`` renders one SSO button whenever ``external_auth`` is
  set, navigating to ``login_url``. New providers (CAS, future LDAP /
  Azure AD / …) need zero UI changes — only a backend route.
- ``LocalUserForm`` and ``LoginKit`` type definitions drop the
  per-provider booleans.
This commit is contained in:
gitlawr
2026-06-24 18:59:19 +08:00
committed by jialin
parent ee42a9d0ed
commit 36a1038d12
5 changed files with 45 additions and 57 deletions
+10 -5
View File
@@ -9,9 +9,6 @@ export const AUTH_API = '/auth';
export const AUTH_CONFIG_API = '/auth/config';
export const AUTH_OIDC_LOGIN_API = '/auth/oidc/login';
export const AUTH_SAML_LOGIN_API = '/auth/saml/login';
export const login = async (
params: { username: string; password: string },
options?: any
@@ -53,10 +50,18 @@ export const updatePassword = async (params: any) => {
});
};
export type ExternalAuth = {
// Provider kind (``OIDC`` / ``SAML`` / ``CAS`` / …). Stays a free-form
// string so adding a new provider on the backend doesn't require a
// TypeScript change here.
type: string;
// Browser-facing login URL the SSO button should navigate to.
login_url: string;
};
export const fetchAuthConfig = async () => {
return request<{
is_saml: boolean;
is_oidc: boolean;
external_auth: ExternalAuth | null;
first_time_setup: boolean;
get_initial_password_command: string;
}>(AUTH_CONFIG_API);