2020-09-22 13:40:38 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-11-21 16:20:07 +01:00
|
|
|
import {BlobHandle} from "../../platform/web/dom/BlobHandle.js";
|
2021-11-18 12:43:30 +01:00
|
|
|
|
2021-11-21 16:20:07 +01:00
|
|
|
export interface IEncodedBody {
|
2021-11-18 12:43:30 +01:00
|
|
|
mimeType: string;
|
2021-11-21 16:20:07 +01:00
|
|
|
body: BlobHandle | string;
|
2021-11-18 12:43:30 +01:00
|
|
|
length: number;
|
|
|
|
}
|
|
|
|
|
2021-11-21 16:20:07 +01:00
|
|
|
export function encodeQueryParams(queryParams: object): string {
|
2020-09-22 13:40:38 +02:00
|
|
|
return Object.entries(queryParams || {})
|
|
|
|
.filter(([, value]) => value !== undefined)
|
|
|
|
.map(([name, value]) => {
|
|
|
|
if (typeof value === "object") {
|
|
|
|
value = JSON.stringify(value);
|
|
|
|
}
|
|
|
|
return `${encodeURIComponent(name)}=${encodeURIComponent(value)}`;
|
|
|
|
})
|
|
|
|
.join("&");
|
|
|
|
}
|
2021-04-09 15:15:28 +02:00
|
|
|
|
2021-11-21 16:20:07 +01:00
|
|
|
export function encodeBody(body: {}): IEncodedBody {
|
|
|
|
// todo: code change here
|
|
|
|
if (body instanceof BlobHandle) {
|
|
|
|
const blob = body as BlobHandle;
|
2021-04-09 15:15:28 +02:00
|
|
|
return {
|
|
|
|
mimeType: blob.mimeType,
|
|
|
|
body: blob, // will be unwrapped in request fn
|
|
|
|
length: blob.size
|
|
|
|
};
|
|
|
|
} else if (typeof body === "object") {
|
|
|
|
const json = JSON.stringify(body);
|
|
|
|
return {
|
|
|
|
mimeType: "application/json",
|
|
|
|
body: json,
|
2021-11-21 16:20:07 +01:00
|
|
|
// todo: code change here; body.length is a mistake?
|
|
|
|
length: json.length
|
|
|
|
}
|
2021-04-09 15:15:28 +02:00
|
|
|
} else {
|
|
|
|
throw new Error("Unknown body type: " + body);
|
|
|
|
}
|
|
|
|
}
|