2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-28 08:14:23 +00:00
|
|
|
import { query } from '@/scripts/url';
|
2022-11-12 00:39:11 +00:00
|
|
|
import { url } from '@/config';
|
2023-02-04 04:38:51 +00:00
|
|
|
import { instance } from '@/instance';
|
2022-11-12 00:39:11 +00:00
|
|
|
|
2023-07-27 05:31:52 +00:00
|
|
|
export function getProxiedImageUrl(imageUrl: string, type?: 'preview' | 'emoji' | 'avatar', mustOrigin = false, noFallback = false): string {
|
2023-02-28 08:14:23 +00:00
|
|
|
const localProxy = `${url}/proxy`;
|
|
|
|
|
|
|
|
if (imageUrl.startsWith(instance.mediaProxy + '/') || imageUrl.startsWith('/proxy/') || imageUrl.startsWith(localProxy + '/')) {
|
|
|
|
// もう既にproxyっぽそうだったらurlを取り出す
|
|
|
|
imageUrl = (new URL(imageUrl)).searchParams.get('url') ?? imageUrl;
|
2022-12-30 03:00:50 +00:00
|
|
|
}
|
|
|
|
|
2023-03-11 05:11:40 +00:00
|
|
|
return `${mustOrigin ? localProxy : instance.mediaProxy}/${
|
2023-03-12 08:31:52 +00:00
|
|
|
type === 'preview' ? 'preview.webp'
|
2023-03-11 05:11:40 +00:00
|
|
|
: 'image.webp'
|
|
|
|
}?${query({
|
2022-11-12 00:39:11 +00:00
|
|
|
url: imageUrl,
|
2023-04-12 01:58:56 +00:00
|
|
|
...(!noFallback ? { 'fallback': '1' } : {}),
|
2022-12-08 08:16:50 +00:00
|
|
|
...(type ? { [type]: '1' } : {}),
|
2023-02-28 08:14:23 +00:00
|
|
|
...(mustOrigin ? { origin: '1' } : {}),
|
2022-11-12 00:39:11 +00:00
|
|
|
})}`;
|
|
|
|
}
|
|
|
|
|
2022-11-26 23:57:11 +00:00
|
|
|
export function getProxiedImageUrlNullable(imageUrl: string | null | undefined, type?: 'preview'): string | null {
|
2022-11-12 00:39:11 +00:00
|
|
|
if (imageUrl == null) return null;
|
2022-11-26 23:57:11 +00:00
|
|
|
return getProxiedImageUrl(imageUrl, type);
|
2022-11-12 00:39:11 +00:00
|
|
|
}
|
2022-12-30 03:00:50 +00:00
|
|
|
|
|
|
|
export function getStaticImageUrl(baseUrl: string): string {
|
|
|
|
const u = baseUrl.startsWith('http') ? new URL(baseUrl) : new URL(baseUrl, url);
|
|
|
|
|
2023-02-04 04:38:51 +00:00
|
|
|
if (u.href.startsWith(`${url}/emoji/`)) {
|
|
|
|
// もう既にemojiっぽそうだったらsearchParams付けるだけ
|
2022-12-30 03:00:50 +00:00
|
|
|
u.searchParams.set('static', '1');
|
|
|
|
return u.href;
|
|
|
|
}
|
|
|
|
|
2023-02-04 04:38:51 +00:00
|
|
|
if (u.href.startsWith(instance.mediaProxy + '/')) {
|
|
|
|
// もう既にproxyっぽそうだったらsearchParams付けるだけ
|
2022-12-30 03:00:50 +00:00
|
|
|
u.searchParams.set('static', '1');
|
|
|
|
return u.href;
|
|
|
|
}
|
|
|
|
|
2023-03-12 08:31:52 +00:00
|
|
|
return `${instance.mediaProxy}/static.webp?${query({
|
2022-12-30 03:00:50 +00:00
|
|
|
url: u.href,
|
|
|
|
static: '1',
|
|
|
|
})}`;
|
|
|
|
}
|