mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
[backend] Rework media proxying for better performance
This commit is contained in:
parent
c00e28712e
commit
4e6e22633e
4 changed files with 36 additions and 14 deletions
|
@ -31,6 +31,11 @@ export function metaToPugArgs(meta: Meta): object {
|
|||
};
|
||||
}
|
||||
|
||||
export function fetchMetaSync(): Meta | null {
|
||||
return cache;
|
||||
}
|
||||
|
||||
|
||||
export async function fetchMeta(noCache = false): Promise<Meta> {
|
||||
if (!noCache && cache) return cache;
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ import config from "@/config/index.js";
|
|||
import { appendQuery, query } from "@/prelude/url.js";
|
||||
import { DriveFolders, Users } from "../index.js";
|
||||
import { deepClone } from "@/misc/clone.js";
|
||||
import { fetchMetaSync } from "@/misc/fetch-meta.js";
|
||||
|
||||
type PackOptions = {
|
||||
detail?: boolean;
|
||||
|
@ -71,14 +72,9 @@ export const DriveFileRepository = db.getRepository(DriveFile).extend({
|
|||
);
|
||||
}
|
||||
|
||||
// リモートかつ期限切れはローカルプロキシを試みる
|
||||
if (file.uri != null && file.isLink && config.proxyRemoteFiles) {
|
||||
const key = thumbnail ? file.thumbnailAccessKey : file.webpublicAccessKey;
|
||||
|
||||
if (key && !key.match("/")) {
|
||||
// 古いものはここにオブジェクトストレージキーが入ってるので除外
|
||||
return `${config.url}/files/${key}`;
|
||||
}
|
||||
if (file.isLink && config.proxyRemoteFiles) {
|
||||
const url = this.getDatabasePrefetchUrl(file, thumbnail);
|
||||
if (url != null) return `${config.url}/proxy/${encodeURIComponent(new URL(url).pathname)}?${query({ url: url })}`;
|
||||
}
|
||||
|
||||
return thumbnail
|
||||
|
@ -92,6 +88,25 @@ export const DriveFileRepository = db.getRepository(DriveFile).extend({
|
|||
: file.webpublicUrl ?? file.url;
|
||||
},
|
||||
|
||||
getFinalUrl(url: string): string {
|
||||
if (!config.proxyRemoteFiles) return url;
|
||||
if (url.startsWith(`${config.url}/files`)) return url;
|
||||
if (url.startsWith(`${config.url}/static-assets`)) return url;
|
||||
if (url.startsWith(`${config.url}/identicon`)) return url;
|
||||
if (url.startsWith(`${config.url}/avatar`)) return url;
|
||||
|
||||
const meta = fetchMetaSync();
|
||||
const baseUrl = meta ? meta.objectStorageBaseUrl ?? `${meta.objectStorageUseSSL ? "https" : "http"}://${meta.objectStorageEndpoint}${meta.objectStoragePort ? `:${meta.objectStoragePort}` : ""}/${meta.objectStorageBucket}` : null;
|
||||
if (baseUrl !== null && url.startsWith(baseUrl)) return url;
|
||||
|
||||
return `${config.url}/proxy/${encodeURIComponent(new URL(url).pathname)}?${query({ url: url })}`;
|
||||
},
|
||||
|
||||
getFinalUrlMaybe(url?: string | null): string | null {
|
||||
if (url == null) return null;
|
||||
return this.getFinalUrl(url);
|
||||
},
|
||||
|
||||
async calcDriveUsageOf(
|
||||
user: User["id"] | { id: User["id"] },
|
||||
): Promise<number> {
|
||||
|
|
|
@ -339,7 +339,7 @@ export const UserRepository = db.getRepository(User).extend({
|
|||
this.getIdenticonUrl(user.id)
|
||||
);
|
||||
} else if (user.avatarId) {
|
||||
if (user.avatarUrl) return user.avatarUrl;
|
||||
if (user.avatarUrl) return DriveFiles.getFinalUrl(user.avatarUrl);
|
||||
const avatar = await DriveFiles.findOneByOrFail({ id: user.avatarId });
|
||||
return (
|
||||
DriveFiles.getPublicUrl(avatar, true) || this.getIdenticonUrl(user.id)
|
||||
|
@ -351,7 +351,7 @@ export const UserRepository = db.getRepository(User).extend({
|
|||
|
||||
getAvatarUrlSync(user: User): string {
|
||||
if (user.avatarId && user.avatarUrl) {
|
||||
return user.avatarUrl;
|
||||
return DriveFiles.getFinalUrl(user.avatarUrl);
|
||||
} else if (user.avatar) {
|
||||
return (
|
||||
DriveFiles.getPublicUrl(user.avatar, true) ||
|
||||
|
@ -514,7 +514,7 @@ export const UserRepository = db.getRepository(User).extend({
|
|||
lastFetchedAt: user.lastFetchedAt
|
||||
? user.lastFetchedAt.toISOString()
|
||||
: null,
|
||||
bannerUrl: user.bannerId ? (user.bannerUrl ?? (user.banner
|
||||
bannerUrl: user.bannerId ? (DriveFiles.getFinalUrlMaybe(user.bannerUrl) ?? (user.banner
|
||||
? DriveFiles.getPublicUrl(user.banner, false)
|
||||
: null)) : null,
|
||||
bannerBlurhash: user.bannerId ? (user.bannerBlurhash ?? user.banner?.blurhash ?? null) : null,
|
||||
|
|
|
@ -35,12 +35,14 @@ export class UserConverter {
|
|||
const profile = UserProfiles.findOneBy({ userId: u.id });
|
||||
const bio = profile.then(profile => MfmHelpers.toHtml(mfm.parse(profile?.description ?? ""), profile?.mentions, u.host).then(p => p ?? escapeMFM(profile?.description ?? "")));
|
||||
const avatar = u.avatarId
|
||||
? u.avatarUrl ?? (DriveFiles.findOneBy({ id: u.avatarId }))
|
||||
? DriveFiles.getFinalUrlMaybe(u.avatarUrl) ?? (DriveFiles.findOneBy({ id: u.avatarId }))
|
||||
.then(p => p?.url ?? Users.getIdenticonUrl(u.id))
|
||||
.then(p => DriveFiles.getFinalUrl(p))
|
||||
: Users.getIdenticonUrl(u.id);
|
||||
const banner = u.bannerId
|
||||
? u.bannerUrl ?? (DriveFiles.findOneBy({ id: u.bannerId }))
|
||||
.then(p => p?.url ?? `${config.url}/static-assets/transparent.png`)
|
||||
? DriveFiles.getFinalUrlMaybe(u.bannerUrl) ?? (DriveFiles.findOneBy({ id: u.bannerId }))
|
||||
.then(p => p?.url ?? `${config.url}/static-assets/transparent.png`)
|
||||
.then(p => DriveFiles.getFinalUrl(p))
|
||||
: `${config.url}/static-assets/transparent.png`;
|
||||
|
||||
const isFollowedOrSelf = !!localUser &&
|
||||
|
|
Loading…
Reference in a new issue