homebox/frontend/lib/api/public.ts

44 lines
1,009 B
TypeScript
Raw Normal View History

import { BaseAPI, route } from "./base";
2024-04-28 16:42:37 +00:00
import type {
APISummary,
LoginForm,
PasswordResetRequest,
TokenResponse,
UserRegistration,
} from "./types/data-contracts";
2022-09-01 22:32:03 +00:00
2022-09-04 02:42:03 +00:00
export type StatusResult = {
health: boolean;
versions: string[];
title: string;
message: string;
};
2022-09-01 22:32:03 +00:00
export class PublicApi extends BaseAPI {
2022-09-04 02:42:03 +00:00
public status() {
return this.http.get<APISummary>({ url: route("/status") });
2022-09-04 02:42:03 +00:00
}
public login(username: string, password: string, stayLoggedIn = false) {
return this.http.post<LoginForm, TokenResponse>({
url: route("/users/login"),
2022-09-09 06:05:23 +00:00
body: {
username,
password,
stayLoggedIn,
2022-09-09 06:05:23 +00:00
},
2022-09-02 01:52:40 +00:00
});
2022-09-01 22:32:03 +00:00
}
public register(body: UserRegistration) {
return this.http.post<UserRegistration, TokenResponse>({ url: route("/users/register"), body });
2022-09-01 22:32:03 +00:00
}
2024-04-28 16:42:37 +00:00
public resetPasseord(email: string) {
return this.http.post<PasswordResetRequest, void>({
url: route("/users/request-password-reset"),
body: { email },
});
}
2022-09-01 22:32:03 +00:00
}