homebox/frontend/lib/api/public.ts

31 lines
788 B
TypeScript
Raw Normal View History

import { BaseAPI, route } from "./base";
import { APISummary, LoginForm, 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
}
}