aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/services/restService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/services/restService.ts')
-rw-r--r--sdnr/wt/odlux/framework/src/services/restService.ts29
1 files changed, 29 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/framework/src/services/restService.ts b/sdnr/wt/odlux/framework/src/services/restService.ts
new file mode 100644
index 000000000..83c005c13
--- /dev/null
+++ b/sdnr/wt/odlux/framework/src/services/restService.ts
@@ -0,0 +1,29 @@
+
+const baseUri = `${ window.location.origin }`;
+const absUrlPattern = /^https?:\/\//;
+
+export async function requestRest<TData>(path: string = '', init: RequestInit = {}, authenticate: boolean = false): Promise<TData|false|null> {
+ const isAbsUrl = absUrlPattern.test(path);
+ const uri = isAbsUrl ? path : (baseUri) + ('/' + path).replace(/\/{2,}/i, '/');
+ init.headers = {
+ 'method': 'GET',
+ 'Content-Type': 'application/json',
+ 'Accept': 'application/json',
+ ...init.headers
+ };
+ if (!isAbsUrl && authenticate) {
+ init.headers = {
+ ...init.headers,
+ 'Authorization': 'Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ=='
+ };
+ }
+ const result = await fetch(uri, init);
+ const contentType = result.headers.get("Content-Type") || result.headers.get("content-type");
+ const isJson = contentType && contentType.toLowerCase().startsWith("application/json");
+ try {
+ const data = result.ok && (isJson ? await result.json() : await result.text()) as TData ;
+ return data;
+ } catch {
+ return null;
+ }
+} \ No newline at end of file