KI-AGENT: Persistente App-Sessions mit Refresh-Tokens ergänzen

This commit is contained in:
2026-07-20 22:01:08 +02:00
parent d8273e794d
commit 657a4f9e85
11 changed files with 405 additions and 60 deletions

View File

@@ -131,6 +131,11 @@ export type MeResponse = {
permissions: string[];
};
export type AuthSession = {
token: string;
refreshToken: string;
};
export type EncodedLabelRow = {
dataType: 'pixels' | 'void' | 'check';
rowNumber: number;
@@ -199,6 +204,20 @@ type RequestOptions = {
timeoutMs?: number;
};
export class ApiError extends Error {
constructor(
message: string,
public readonly status: number
) {
super(message);
this.name = 'ApiError';
}
}
export function isAuthenticationError(error: unknown): boolean {
return error instanceof ApiError && error.status === 401;
}
export type MatrixStatus = {
enabled?: boolean;
ready?: boolean;
@@ -363,7 +382,7 @@ export async function apiRequest<T>(path: string, options: RequestOptions = {}):
(payload as { message?: string; error?: string } | null)?.message ||
(payload as { message?: string; error?: string } | null)?.error ||
`Request failed (${response.status}) for ${path}`;
throw new Error(message);
throw new ApiError(message, response.status);
}
return payload as T;
@@ -399,7 +418,7 @@ async function apiFormRequest<T>(path: string, token: string, formData: FormData
(payload as { message?: string; error?: string } | null)?.message ||
(payload as { message?: string; error?: string } | null)?.error ||
`Request failed (${response.status}) for ${path}`;
throw new Error(message);
throw new ApiError(message, response.status);
}
return payload as T;
@@ -629,17 +648,37 @@ export async function renderPrintLabel(
});
}
export async function loginWithEmailPassword(email: string, password: string): Promise<string> {
const payload = await apiRequest<{ token?: string }>('/auth/login', {
function requireAuthSession(payload: Partial<AuthSession>, action: string): AuthSession {
if (!payload?.token || !payload?.refreshToken) {
throw new Error(`${action} did not return a complete session.`);
}
return { token: payload.token, refreshToken: payload.refreshToken };
}
export async function loginWithEmailPassword(email: string, password: string): Promise<AuthSession> {
const payload = await apiRequest<Partial<AuthSession>>('/auth/login', {
method: 'POST',
body: { email, password },
});
if (!payload?.token) {
throw new Error('Login did not return a token.');
}
return requireAuthSession(payload, 'Login');
}
return payload.token;
export async function refreshAuthSession(refreshToken: string): Promise<AuthSession> {
const payload = await apiRequest<Partial<AuthSession>>('/auth/refresh', {
method: 'POST',
body: { refreshToken },
});
return requireAuthSession(payload, 'Session refresh');
}
export async function logoutSession(refreshToken: string): Promise<void> {
await apiRequest('/auth/logout', {
method: 'POST',
body: { refreshToken },
});
}
export async function fetchMe(token: string): Promise<MeResponse> {
@@ -666,18 +705,18 @@ export async function sendMobileTestPush(token: string): Promise<{ accepted: num
});
}
export async function switchTenantRequest(tenantId: number, token: string): Promise<string> {
const payload = await apiRequest<{ token?: string }>('/api/tenant/switch', {
export async function switchTenantRequest(
tenantId: number,
token: string,
refreshToken: string
): Promise<AuthSession> {
const payload = await apiRequest<Partial<AuthSession>>('/api/tenant/switch', {
method: 'POST',
token,
body: { tenant_id: String(tenantId) },
body: { tenant_id: String(tenantId), refreshToken },
});
if (!payload?.token) {
throw new Error('Tenant switch did not return a token.');
}
return payload.token;
return requireAuthSession(payload, 'Tenant switch');
}
export async function fetchTasks(token: string): Promise<Task[]> {