You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-23 17:02:25 +03:00
113 lines
4.0 KiB
TypeScript
113 lines
4.0 KiB
TypeScript
/*
|
|
Copyright 2015 - 2021 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.
|
|
*/
|
|
|
|
import { encodeParams } from "./utils";
|
|
|
|
/**
|
|
* Get the HTTP URL for an MXC URI.
|
|
* @param baseUrl - The base homeserver url which has a content repo.
|
|
* @param mxc - The mxc:// URI.
|
|
* @param width - The desired width of the thumbnail.
|
|
* @param height - The desired height of the thumbnail.
|
|
* @param resizeMethod - The thumbnail resize method to use, either
|
|
* "crop" or "scale".
|
|
* @param allowDirectLinks - If true, return any non-mxc URLs
|
|
* directly. Fetching such URLs will leak information about the user to
|
|
* anyone they share a room with. If false, will return the emptry string
|
|
* for such URLs.
|
|
* @param allowRedirects - If true, the caller supports the URL being 307 or
|
|
* 308 redirected to another resource upon request. If false, redirects
|
|
* are not expected. Implied `true` when `useAuthentication` is `true`.
|
|
* @param useAuthentication - If true, the caller supports authenticated
|
|
* media and wants an authentication-required URL. Note that server support
|
|
* for authenticated media will *not* be checked - it is the caller's responsibility
|
|
* to do so before calling this function. Note also that `useAuthentication`
|
|
* implies `allowRedirects`. Defaults to false (unauthenticated endpoints).
|
|
* @returns The complete URL to the content.
|
|
*/
|
|
export function getHttpUriForMxc(
|
|
baseUrl: string,
|
|
mxc?: string,
|
|
width?: number,
|
|
height?: number,
|
|
resizeMethod?: string,
|
|
allowDirectLinks = false,
|
|
allowRedirects?: boolean,
|
|
useAuthentication?: boolean,
|
|
): string {
|
|
if (typeof mxc !== "string" || !mxc) {
|
|
return "";
|
|
}
|
|
if (mxc.indexOf("mxc://") !== 0) {
|
|
if (allowDirectLinks) {
|
|
return mxc;
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
if (useAuthentication) {
|
|
allowRedirects = true; // per docs (MSC3916 always expects redirects)
|
|
|
|
// Dev note: MSC3916 removes `allow_redirect` entirely, but
|
|
// for explicitness we set it here. This makes it slightly more obvious to
|
|
// callers, hopefully.
|
|
}
|
|
|
|
let serverAndMediaId = mxc.slice(6); // strips mxc://
|
|
let prefix: string;
|
|
if (useAuthentication) {
|
|
prefix = "/_matrix/client/v1/media/download/";
|
|
} else {
|
|
prefix = "/_matrix/media/v3/download/";
|
|
}
|
|
const params: Record<string, string> = {};
|
|
|
|
if (width) {
|
|
params["width"] = Math.round(width).toString();
|
|
}
|
|
if (height) {
|
|
params["height"] = Math.round(height).toString();
|
|
}
|
|
if (resizeMethod) {
|
|
params["method"] = resizeMethod;
|
|
}
|
|
if (Object.keys(params).length > 0) {
|
|
// these are thumbnailing params so they probably want the
|
|
// thumbnailing API...
|
|
if (useAuthentication) {
|
|
prefix = "/_matrix/client/v1/media/thumbnail/";
|
|
} else {
|
|
prefix = "/_matrix/media/v3/thumbnail/";
|
|
}
|
|
}
|
|
|
|
if (typeof allowRedirects === "boolean") {
|
|
// We add this after, so we don't convert everything to a thumbnail request.
|
|
params["allow_redirect"] = JSON.stringify(allowRedirects);
|
|
}
|
|
|
|
const fragmentOffset = serverAndMediaId.indexOf("#");
|
|
let fragment = "";
|
|
if (fragmentOffset >= 0) {
|
|
fragment = serverAndMediaId.slice(fragmentOffset);
|
|
serverAndMediaId = serverAndMediaId.slice(0, fragmentOffset);
|
|
}
|
|
|
|
const urlParams = Object.keys(params).length === 0 ? "" : "?" + encodeParams(params);
|
|
return baseUrl + prefix + serverAndMediaId + urlParams + fragment;
|
|
}
|