2022-09-17 18:27:08 +00:00
|
|
|
import { forwardRef, Inject, Injectable } from '@nestjs/common';
|
2023-03-04 07:48:50 +00:00
|
|
|
import { DataSource, In } from 'typeorm';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { NotesRepository, DriveFilesRepository } from '@/models/index.js';
|
|
|
|
import type { Config } from '@/config.js';
|
2023-03-10 05:22:37 +00:00
|
|
|
import type { Packed } from '@/misc/json-schema.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
|
|
|
import type { User } from '@/models/entities/User.js';
|
|
|
|
import type { DriveFile } from '@/models/entities/DriveFile.js';
|
|
|
|
import { appendQuery, query } from '@/misc/prelude/url.js';
|
2022-11-17 00:31:07 +00:00
|
|
|
import { deepClone } from '@/misc/clone.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { UtilityService } from '../UtilityService.js';
|
2023-02-12 09:47:30 +00:00
|
|
|
import { VideoProcessingService } from '../VideoProcessingService.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { UserEntityService } from './UserEntityService.js';
|
|
|
|
import { DriveFolderEntityService } from './DriveFolderEntityService.js';
|
2019-04-23 13:35:26 +00:00
|
|
|
|
2021-03-16 03:50:07 +00:00
|
|
|
type PackOptions = {
|
|
|
|
detail?: boolean,
|
|
|
|
self?: boolean,
|
|
|
|
withUser?: boolean,
|
|
|
|
};
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-02-07 13:53:18 +00:00
|
|
|
import { isMimeImage } from '@/misc/is-mime-image.js';
|
2023-03-04 07:48:50 +00:00
|
|
|
import { isNotNull } from '@/misc/is-not-null.js';
|
2021-03-16 03:50:07 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export class DriveFileEntityService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
|
|
|
|
// 循環参照のため / for circular dependency
|
|
|
|
@Inject(forwardRef(() => UserEntityService))
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
|
|
|
|
private utilityService: UtilityService,
|
|
|
|
private driveFolderEntityService: DriveFolderEntityService,
|
2023-02-12 00:13:47 +00:00
|
|
|
private videoProcessingService: VideoProcessingService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public validateFileName(name: string): boolean {
|
2019-04-07 12:50:36 +00:00
|
|
|
return (
|
|
|
|
(name.trim().length > 0) &&
|
|
|
|
(name.length <= 200) &&
|
|
|
|
(name.indexOf('\\') === -1) &&
|
|
|
|
(name.indexOf('/') === -1) &&
|
|
|
|
(name.indexOf('..') === -1)
|
|
|
|
);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public getPublicProperties(file: DriveFile): DriveFile['properties'] {
|
2021-12-03 02:19:28 +00:00
|
|
|
if (file.properties.orientation != null) {
|
2022-11-17 00:31:07 +00:00
|
|
|
const properties = deepClone(file.properties);
|
2021-12-03 02:19:28 +00:00
|
|
|
if (file.properties.orientation >= 5) {
|
|
|
|
[properties.width, properties.height] = [properties.height, properties.width];
|
|
|
|
}
|
|
|
|
properties.orientation = undefined;
|
|
|
|
return properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
return file.properties;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2021-12-03 02:19:28 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-02-12 09:47:30 +00:00
|
|
|
private getProxiedUrl(url: string, mode?: 'static' | 'avatar'): string {
|
2023-02-12 00:13:47 +00:00
|
|
|
return appendQuery(
|
2023-03-12 08:31:52 +00:00
|
|
|
`${this.config.mediaProxy}/${mode ?? 'image'}.webp`,
|
2023-02-04 04:38:51 +00:00
|
|
|
query({
|
|
|
|
url,
|
|
|
|
...(mode ? { [mode]: '1' } : {}),
|
2023-02-12 09:47:30 +00:00
|
|
|
}),
|
|
|
|
);
|
2023-02-12 00:13:47 +00:00
|
|
|
}
|
2023-02-04 04:38:51 +00:00
|
|
|
|
2023-02-12 00:13:47 +00:00
|
|
|
@bindThis
|
|
|
|
public getThumbnailUrl(file: DriveFile): string | null {
|
|
|
|
if (file.type.startsWith('video')) {
|
|
|
|
if (file.thumbnailUrl) return file.thumbnailUrl;
|
|
|
|
|
2023-03-08 19:57:52 +00:00
|
|
|
return this.videoProcessingService.getExternalVideoThumbnailUrl(file.webpublicUrl ?? file.url ?? file.uri);
|
2023-02-12 00:13:47 +00:00
|
|
|
} else if (file.uri != null && file.userHost != null && this.config.externalMediaProxyEnabled) {
|
|
|
|
// 動画ではなくリモートかつメディアプロキシ
|
|
|
|
return this.getProxiedUrl(file.uri, 'static');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file.uri != null && file.isLink && this.config.proxyRemoteFiles) {
|
|
|
|
// リモートかつ期限切れはローカルプロキシを試みる
|
|
|
|
// 従来は/files/${thumbnailAccessKey}にアクセスしていたが、
|
|
|
|
// /filesはメディアプロキシにリダイレクトするようにしたため直接メディアプロキシを指定する
|
|
|
|
return this.getProxiedUrl(file.uri, 'static');
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = file.webpublicUrl ?? file.url;
|
|
|
|
|
2023-03-11 05:11:40 +00:00
|
|
|
return file.thumbnailUrl ?? (isMimeImage(file.type, 'sharp-convertible-image') ? url : null);
|
2023-02-12 00:13:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
2023-02-12 09:47:30 +00:00
|
|
|
public getPublicUrl(file: DriveFile, mode?: 'avatar'): string { // static = thumbnail
|
2019-12-31 08:23:47 +00:00
|
|
|
// リモートかつメディアプロキシ
|
2023-02-04 04:38:51 +00:00
|
|
|
if (file.uri != null && file.userHost != null && this.config.externalMediaProxyEnabled) {
|
2023-02-12 00:13:47 +00:00
|
|
|
return this.getProxiedUrl(file.uri, mode);
|
2019-12-19 16:54:28 +00:00
|
|
|
}
|
2019-12-31 08:23:47 +00:00
|
|
|
|
|
|
|
// リモートかつ期限切れはローカルプロキシを試みる
|
2022-09-17 18:27:08 +00:00
|
|
|
if (file.uri != null && file.isLink && this.config.proxyRemoteFiles) {
|
2023-02-12 00:13:47 +00:00
|
|
|
const key = file.webpublicAccessKey;
|
2019-12-31 08:23:47 +00:00
|
|
|
|
|
|
|
if (key && !key.match('/')) { // 古いものはここにオブジェクトストレージキーが入ってるので除外
|
2023-02-04 04:38:51 +00:00
|
|
|
const url = `${this.config.url}/files/${key}`;
|
2023-02-12 00:13:47 +00:00
|
|
|
if (mode === 'avatar') return this.getProxiedUrl(file.uri, 'avatar');
|
2023-02-04 04:38:51 +00:00
|
|
|
return url;
|
2019-12-31 08:23:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-07 13:53:18 +00:00
|
|
|
const url = file.webpublicUrl ?? file.url;
|
2020-01-01 17:45:05 +00:00
|
|
|
|
2023-02-07 13:53:18 +00:00
|
|
|
if (mode === 'avatar') {
|
2023-02-12 00:13:47 +00:00
|
|
|
return this.getProxiedUrl(url, 'avatar');
|
2023-02-04 04:38:51 +00:00
|
|
|
}
|
|
|
|
return url;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async calcDriveUsageOf(user: User['id'] | { id: User['id'] }): Promise<number> {
|
2019-04-07 12:50:36 +00:00
|
|
|
const id = typeof user === 'object' ? user.id : user;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const { sum } = await this.driveFilesRepository
|
2019-04-07 12:50:36 +00:00
|
|
|
.createQueryBuilder('file')
|
|
|
|
.where('file.userId = :id', { id: id })
|
2021-05-30 04:48:23 +00:00
|
|
|
.andWhere('file.isLink = FALSE')
|
2019-04-07 12:50:36 +00:00
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return parseInt(sum, 10) ?? 0;
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async calcDriveUsageOfHost(host: string): Promise<number> {
|
|
|
|
const { sum } = await this.driveFilesRepository
|
2019-04-07 12:50:36 +00:00
|
|
|
.createQueryBuilder('file')
|
2022-09-17 18:27:08 +00:00
|
|
|
.where('file.userHost = :host', { host: this.utilityService.toPuny(host) })
|
2021-05-30 04:48:23 +00:00
|
|
|
.andWhere('file.isLink = FALSE')
|
2019-04-07 12:50:36 +00:00
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return parseInt(sum, 10) ?? 0;
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async calcDriveUsageOfLocal(): Promise<number> {
|
|
|
|
const { sum } = await this.driveFilesRepository
|
2019-04-07 12:50:36 +00:00
|
|
|
.createQueryBuilder('file')
|
|
|
|
.where('file.userHost IS NULL')
|
2021-05-30 04:48:23 +00:00
|
|
|
.andWhere('file.isLink = FALSE')
|
2019-04-07 12:50:36 +00:00
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return parseInt(sum, 10) ?? 0;
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async calcDriveUsageOfRemote(): Promise<number> {
|
|
|
|
const { sum } = await this.driveFilesRepository
|
2019-04-07 12:50:36 +00:00
|
|
|
.createQueryBuilder('file')
|
|
|
|
.where('file.userHost IS NOT NULL')
|
2021-05-30 04:48:23 +00:00
|
|
|
.andWhere('file.isLink = FALSE')
|
2019-04-07 12:50:36 +00:00
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return parseInt(sum, 10) ?? 0;
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async pack(
|
2019-04-07 12:50:36 +00:00
|
|
|
src: DriveFile['id'] | DriveFile,
|
2022-04-17 03:59:41 +00:00
|
|
|
options?: PackOptions,
|
|
|
|
): Promise<Packed<'DriveFile'>> {
|
|
|
|
const opts = Object.assign({
|
|
|
|
detail: false,
|
|
|
|
self: false,
|
|
|
|
}, options);
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const file = typeof src === 'object' ? src : await this.driveFilesRepository.findOneByOrFail({ id: src });
|
2022-04-17 03:59:41 +00:00
|
|
|
|
|
|
|
return await awaitAll<Packed<'DriveFile'>>({
|
|
|
|
id: file.id,
|
|
|
|
createdAt: file.createdAt.toISOString(),
|
|
|
|
name: file.name,
|
|
|
|
type: file.type,
|
|
|
|
md5: file.md5,
|
|
|
|
size: file.size,
|
|
|
|
isSensitive: file.isSensitive,
|
|
|
|
blurhash: file.blurhash,
|
|
|
|
properties: opts.self ? file.properties : this.getPublicProperties(file),
|
2023-02-04 04:38:51 +00:00
|
|
|
url: opts.self ? file.url : this.getPublicUrl(file),
|
2023-02-12 00:13:47 +00:00
|
|
|
thumbnailUrl: this.getThumbnailUrl(file),
|
2022-04-17 03:59:41 +00:00
|
|
|
comment: file.comment,
|
|
|
|
folderId: file.folderId,
|
2022-09-17 18:27:08 +00:00
|
|
|
folder: opts.detail && file.folderId ? this.driveFolderEntityService.pack(file.folderId, {
|
2022-04-17 03:59:41 +00:00
|
|
|
detail: true,
|
|
|
|
}) : null,
|
|
|
|
userId: opts.withUser ? file.userId : null,
|
2022-09-17 18:27:08 +00:00
|
|
|
user: (opts.withUser && file.userId) ? this.userEntityService.pack(file.userId) : null,
|
2022-04-17 03:59:41 +00:00
|
|
|
});
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2022-04-17 03:59:41 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async packNullable(
|
2022-04-17 03:59:41 +00:00
|
|
|
src: DriveFile['id'] | DriveFile,
|
|
|
|
options?: PackOptions,
|
2021-09-22 13:35:55 +00:00
|
|
|
): Promise<Packed<'DriveFile'> | null> {
|
2019-04-07 12:50:36 +00:00
|
|
|
const opts = Object.assign({
|
|
|
|
detail: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
self: false,
|
2019-04-07 12:50:36 +00:00
|
|
|
}, options);
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const file = typeof src === 'object' ? src : await this.driveFilesRepository.findOneBy({ id: src });
|
2021-03-16 03:50:07 +00:00
|
|
|
if (file == null) return null;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
return await awaitAll<Packed<'DriveFile'>>({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: file.id,
|
2019-04-23 13:35:26 +00:00
|
|
|
createdAt: file.createdAt.toISOString(),
|
2019-04-07 12:50:36 +00:00
|
|
|
name: file.name,
|
|
|
|
type: file.type,
|
|
|
|
md5: file.md5,
|
|
|
|
size: file.size,
|
|
|
|
isSensitive: file.isSensitive,
|
2020-07-18 15:24:07 +00:00
|
|
|
blurhash: file.blurhash,
|
2021-12-03 02:19:28 +00:00
|
|
|
properties: opts.self ? file.properties : this.getPublicProperties(file),
|
2023-02-04 04:38:51 +00:00
|
|
|
url: opts.self ? file.url : this.getPublicUrl(file),
|
2023-02-12 00:13:47 +00:00
|
|
|
thumbnailUrl: this.getThumbnailUrl(file),
|
2020-10-17 11:12:00 +00:00
|
|
|
comment: file.comment,
|
2019-04-07 12:50:36 +00:00
|
|
|
folderId: file.folderId,
|
2022-09-17 18:27:08 +00:00
|
|
|
folder: opts.detail && file.folderId ? this.driveFolderEntityService.pack(file.folderId, {
|
2021-12-09 14:58:30 +00:00
|
|
|
detail: true,
|
2019-04-07 12:50:36 +00:00
|
|
|
}) : null,
|
2020-10-28 13:24:16 +00:00
|
|
|
userId: opts.withUser ? file.userId : null,
|
2022-09-17 18:27:08 +00:00
|
|
|
user: (opts.withUser && file.userId) ? this.userEntityService.pack(file.userId) : null,
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2019-04-25 04:27:07 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async packMany(
|
2023-03-04 07:48:50 +00:00
|
|
|
files: DriveFile[],
|
2022-04-17 03:59:41 +00:00
|
|
|
options?: PackOptions,
|
|
|
|
): Promise<Packed<'DriveFile'>[]> {
|
|
|
|
const items = await Promise.all(files.map(f => this.packNullable(f, options)));
|
|
|
|
return items.filter((x): x is Packed<'DriveFile'> => x != null);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2023-03-04 07:48:50 +00:00
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async packManyByIdsMap(
|
|
|
|
fileIds: DriveFile['id'][],
|
|
|
|
options?: PackOptions,
|
|
|
|
): Promise<Map<Packed<'DriveFile'>['id'], Packed<'DriveFile'> | null>> {
|
2023-04-06 10:45:12 +00:00
|
|
|
if (fileIds.length === 0) return new Map();
|
2023-03-04 07:48:50 +00:00
|
|
|
const files = await this.driveFilesRepository.findBy({ id: In(fileIds) });
|
|
|
|
const packedFiles = await this.packMany(files, options);
|
|
|
|
const map = new Map<Packed<'DriveFile'>['id'], Packed<'DriveFile'> | null>(packedFiles.map(f => [f.id, f]));
|
|
|
|
for (const id of fileIds) {
|
|
|
|
if (!map.has(id)) map.set(id, null);
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public async packManyByIds(
|
|
|
|
fileIds: DriveFile['id'][],
|
|
|
|
options?: PackOptions,
|
|
|
|
): Promise<Packed<'DriveFile'>[]> {
|
2023-04-06 10:45:12 +00:00
|
|
|
if (fileIds.length === 0) return [];
|
2023-03-04 07:48:50 +00:00
|
|
|
const filesMap = await this.packManyByIdsMap(fileIds, options);
|
|
|
|
return fileIds.map(id => filesMap.get(id)).filter(isNotNull);
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|