This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/web/src/api/Client.ts

117 lines
3.4 KiB
TypeScript
Raw Normal View History

import { gettext } from "django";
import { showMessage } from "../elements/messages/MessageContainer";
2021-01-16 18:08:20 +00:00
import { getCookie } from "../utils";
2020-12-16 22:02:43 +00:00
import { NotFoundError, RequestError } from "./Error";
export const VERSION = "v2beta";
export interface QueryArguments {
2021-03-02 14:12:26 +00:00
page?: number;
page_size?: number;
[key: string]: number | string | boolean | undefined | null;
}
2021-02-08 09:15:59 +00:00
export interface BaseInheritanceModel {
2021-02-09 09:22:49 +00:00
object_type: string;
2021-02-08 09:15:59 +00:00
verbose_name: string;
verbose_name_plural: string;
}
export class Client {
makeUrl(url: string[], query?: QueryArguments): string {
let builtUrl = `/api/${VERSION}/${url.join("/")}/`;
if (query) {
2020-12-01 08:15:41 +00:00
const queryString = Object.keys(query)
.filter((k) => query[k] !== null)
2021-02-04 20:10:13 +00:00
// we default to a string in query[k] as we've filtered out the null above
// this is just for type-hinting
.map((k) => encodeURIComponent(k) + "=" + encodeURIComponent(query[k] || ""))
.join("&");
builtUrl += `?${queryString}`;
}
return builtUrl;
}
fetch<T>(url: string[], query?: QueryArguments): Promise<T> {
const finalUrl = this.makeUrl(url, query);
return fetch(finalUrl)
.then((r) => {
if (r.status > 300) {
switch (r.status) {
2020-12-01 08:15:41 +00:00
case 404:
throw new NotFoundError(`URL ${finalUrl} not found`);
default:
throw new RequestError(r.statusText);
}
}
return r;
})
.catch((e) => {
showMessage({
level_tag: "error",
message: gettext(`Unexpected error while fetching: ${e.toString()}`),
});
return e;
})
.then((r) => r.json())
.then((r) => <T>r);
}
2021-01-16 18:08:20 +00:00
private writeRequest<T>(url: string[], body: T, method: string, query?: QueryArguments): Promise<T> {
2021-01-16 18:08:20 +00:00
const finalUrl = this.makeUrl(url, query);
const csrftoken = getCookie("authentik_csrf");
const request = new Request(finalUrl, {
headers: {
"Accept": "application/json",
"Content-Type": "application/json",
"X-CSRFToken": csrftoken,
},
2021-01-16 18:08:20 +00:00
});
return fetch(request, {
method: method,
2021-01-16 18:08:20 +00:00
mode: "same-origin",
body: JSON.stringify(body),
})
.then((r) => {
if (r.status > 300) {
switch (r.status) {
case 404:
throw new NotFoundError(`URL ${finalUrl} not found`);
default:
throw new RequestError(r.statusText);
}
}
return r;
})
.then((r) => r.json())
.then((r) => <T>r);
}
update<T>(url: string[], body: T, query?: QueryArguments): Promise<T> {
return this.writeRequest(url, body, "PATCH", query);
}
}
export const DefaultClient = new Client();
export interface PBPagination {
next?: number;
previous?: number;
count: number;
current: number;
total_pages: number;
start_index: number;
end_index: number;
}
2021-02-09 16:04:55 +00:00
export interface AKResponse<T> {
pagination: PBPagination;
results: Array<T>;
}