 792622aead
			
		
	
	792622aead
	
	
	
		
			
			* wip
* wip
* wip
* wip
* Update RepositoryModule.ts
* wip
* wip
* wip
* Revert "wip"
This reverts commit c1c13b37d2.
		
	
		
			
				
	
	
		
			288 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			288 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: syuilo and other misskey contributors
 | |
|  * SPDX-License-Identifier: AGPL-3.0-only
 | |
|  */
 | |
| 
 | |
| import { forwardRef, Inject, Injectable } from '@nestjs/common';
 | |
| import { In } from 'typeorm';
 | |
| import { DI } from '@/di-symbols.js';
 | |
| import type { DriveFilesRepository } from '@/models/index.js';
 | |
| import type { Config } from '@/config.js';
 | |
| import type { Packed } from '@/misc/json-schema.js';
 | |
| import { awaitAll } from '@/misc/prelude/await-all.js';
 | |
| import type { MiUser } from '@/models/entities/User.js';
 | |
| import type { MiDriveFile } from '@/models/entities/DriveFile.js';
 | |
| import { appendQuery, query } from '@/misc/prelude/url.js';
 | |
| import { deepClone } from '@/misc/clone.js';
 | |
| import { bindThis } from '@/decorators.js';
 | |
| import { isMimeImage } from '@/misc/is-mime-image.js';
 | |
| import { isNotNull } from '@/misc/is-not-null.js';
 | |
| import { UtilityService } from '../UtilityService.js';
 | |
| import { VideoProcessingService } from '../VideoProcessingService.js';
 | |
| import { UserEntityService } from './UserEntityService.js';
 | |
| import { DriveFolderEntityService } from './DriveFolderEntityService.js';
 | |
| 
 | |
| type PackOptions = {
 | |
| 	detail?: boolean,
 | |
| 	self?: boolean,
 | |
| 	withUser?: boolean,
 | |
| };
 | |
| 
 | |
| @Injectable()
 | |
| export class DriveFileEntityService {
 | |
| 	constructor(
 | |
| 		@Inject(DI.config)
 | |
| 		private config: Config,
 | |
| 
 | |
| 		@Inject(DI.driveFilesRepository)
 | |
| 		private driveFilesRepository: DriveFilesRepository,
 | |
| 
 | |
| 		// 循環参照のため / for circular dependency
 | |
| 		@Inject(forwardRef(() => UserEntityService))
 | |
| 		private userEntityService: UserEntityService,
 | |
| 
 | |
| 		private utilityService: UtilityService,
 | |
| 		private driveFolderEntityService: DriveFolderEntityService,
 | |
| 		private videoProcessingService: VideoProcessingService,
 | |
| 	) {
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public validateFileName(name: string): boolean {
 | |
| 		return (
 | |
| 			(name.trim().length > 0) &&
 | |
| 			(name.length <= 200) &&
 | |
| 			(name.indexOf('\\') === -1) &&
 | |
| 			(name.indexOf('/') === -1) &&
 | |
| 			(name.indexOf('..') === -1)
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public getPublicProperties(file: MiDriveFile): MiDriveFile['properties'] {
 | |
| 		if (file.properties.orientation != null) {
 | |
| 			const properties = deepClone(file.properties);
 | |
| 			if (file.properties.orientation >= 5) {
 | |
| 				[properties.width, properties.height] = [properties.height, properties.width];
 | |
| 			}
 | |
| 			properties.orientation = undefined;
 | |
| 			return properties;
 | |
| 		}
 | |
| 
 | |
| 		return file.properties;
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	private getProxiedUrl(url: string, mode?: 'static' | 'avatar'): string {
 | |
| 		return appendQuery(
 | |
| 			`${this.config.mediaProxy}/${mode ?? 'image'}.webp`,
 | |
| 			query({
 | |
| 				url,
 | |
| 				...(mode ? { [mode]: '1' } : {}),
 | |
| 			}),
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public getThumbnailUrl(file: MiDriveFile): string | null {
 | |
| 		if (file.type.startsWith('video')) {
 | |
| 			if (file.thumbnailUrl) return file.thumbnailUrl;
 | |
| 
 | |
| 			return this.videoProcessingService.getExternalVideoThumbnailUrl(file.webpublicUrl ?? file.url ?? file.uri);
 | |
| 		} 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;
 | |
| 
 | |
| 		return file.thumbnailUrl ?? (isMimeImage(file.type, 'sharp-convertible-image') ? url : null);
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public getPublicUrl(file: MiDriveFile, mode?: 'avatar'): string { // static = thumbnail
 | |
| 		// リモートかつメディアプロキシ
 | |
| 		if (file.uri != null && file.userHost != null && this.config.externalMediaProxyEnabled) {
 | |
| 			return this.getProxiedUrl(file.uri, mode);
 | |
| 		}
 | |
| 
 | |
| 		// リモートかつ期限切れはローカルプロキシを試みる
 | |
| 		if (file.uri != null && file.isLink && this.config.proxyRemoteFiles) {
 | |
| 			const key = file.webpublicAccessKey;
 | |
| 
 | |
| 			if (key && !key.match('/')) {	// 古いものはここにオブジェクトストレージキーが入ってるので除外
 | |
| 				const url = `${this.config.url}/files/${key}`;
 | |
| 				if (mode === 'avatar') return this.getProxiedUrl(file.uri, 'avatar');
 | |
| 				return url;
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		const url = file.webpublicUrl ?? file.url;
 | |
| 
 | |
| 		if (mode === 'avatar') {
 | |
| 			return this.getProxiedUrl(url, 'avatar');
 | |
| 		}
 | |
| 		return url;
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async calcDriveUsageOf(user: MiUser['id'] | { id: MiUser['id'] }): Promise<number> {
 | |
| 		const id = typeof user === 'object' ? user.id : user;
 | |
| 
 | |
| 		const { sum } = await this.driveFilesRepository
 | |
| 			.createQueryBuilder('file')
 | |
| 			.where('file.userId = :id', { id: id })
 | |
| 			.andWhere('file.isLink = FALSE')
 | |
| 			.select('SUM(file.size)', 'sum')
 | |
| 			.getRawOne();
 | |
| 
 | |
| 		return parseInt(sum, 10) ?? 0;
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async calcDriveUsageOfHost(host: string): Promise<number> {
 | |
| 		const { sum } = await this.driveFilesRepository
 | |
| 			.createQueryBuilder('file')
 | |
| 			.where('file.userHost = :host', { host: this.utilityService.toPuny(host) })
 | |
| 			.andWhere('file.isLink = FALSE')
 | |
| 			.select('SUM(file.size)', 'sum')
 | |
| 			.getRawOne();
 | |
| 
 | |
| 		return parseInt(sum, 10) ?? 0;
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async calcDriveUsageOfLocal(): Promise<number> {
 | |
| 		const { sum } = await this.driveFilesRepository
 | |
| 			.createQueryBuilder('file')
 | |
| 			.where('file.userHost IS NULL')
 | |
| 			.andWhere('file.isLink = FALSE')
 | |
| 			.select('SUM(file.size)', 'sum')
 | |
| 			.getRawOne();
 | |
| 
 | |
| 		return parseInt(sum, 10) ?? 0;
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async calcDriveUsageOfRemote(): Promise<number> {
 | |
| 		const { sum } = await this.driveFilesRepository
 | |
| 			.createQueryBuilder('file')
 | |
| 			.where('file.userHost IS NOT NULL')
 | |
| 			.andWhere('file.isLink = FALSE')
 | |
| 			.select('SUM(file.size)', 'sum')
 | |
| 			.getRawOne();
 | |
| 
 | |
| 		return parseInt(sum, 10) ?? 0;
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async pack(
 | |
| 		src: MiDriveFile['id'] | MiDriveFile,
 | |
| 		options?: PackOptions,
 | |
| 	): Promise<Packed<'DriveFile'>> {
 | |
| 		const opts = Object.assign({
 | |
| 			detail: false,
 | |
| 			self: false,
 | |
| 		}, options);
 | |
| 
 | |
| 		const file = typeof src === 'object' ? src : await this.driveFilesRepository.findOneByOrFail({ id: src });
 | |
| 
 | |
| 		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),
 | |
| 			url: opts.self ? file.url : this.getPublicUrl(file),
 | |
| 			thumbnailUrl: this.getThumbnailUrl(file),
 | |
| 			comment: file.comment,
 | |
| 			folderId: file.folderId,
 | |
| 			folder: opts.detail && file.folderId ? this.driveFolderEntityService.pack(file.folderId, {
 | |
| 				detail: true,
 | |
| 			}) : null,
 | |
| 			userId: opts.withUser ? file.userId : null,
 | |
| 			user: (opts.withUser && file.userId) ? this.userEntityService.pack(file.userId) : null,
 | |
| 		});
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async packNullable(
 | |
| 		src: MiDriveFile['id'] | MiDriveFile,
 | |
| 		options?: PackOptions,
 | |
| 	): Promise<Packed<'DriveFile'> | null> {
 | |
| 		const opts = Object.assign({
 | |
| 			detail: false,
 | |
| 			self: false,
 | |
| 		}, options);
 | |
| 
 | |
| 		const file = typeof src === 'object' ? src : await this.driveFilesRepository.findOneBy({ id: src });
 | |
| 		if (file == null) return null;
 | |
| 
 | |
| 		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),
 | |
| 			url: opts.self ? file.url : this.getPublicUrl(file),
 | |
| 			thumbnailUrl: this.getThumbnailUrl(file),
 | |
| 			comment: file.comment,
 | |
| 			folderId: file.folderId,
 | |
| 			folder: opts.detail && file.folderId ? this.driveFolderEntityService.pack(file.folderId, {
 | |
| 				detail: true,
 | |
| 			}) : null,
 | |
| 			userId: opts.withUser ? file.userId : null,
 | |
| 			user: (opts.withUser && file.userId) ? this.userEntityService.pack(file.userId) : null,
 | |
| 		});
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async packMany(
 | |
| 		files: MiDriveFile[],
 | |
| 		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);
 | |
| 	}
 | |
| 
 | |
| 	@bindThis
 | |
| 	public async packManyByIdsMap(
 | |
| 		fileIds: MiDriveFile['id'][],
 | |
| 		options?: PackOptions,
 | |
| 	): Promise<Map<Packed<'DriveFile'>['id'], Packed<'DriveFile'> | null>> {
 | |
| 		if (fileIds.length === 0) return new Map();
 | |
| 		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: MiDriveFile['id'][],
 | |
| 		options?: PackOptions,
 | |
| 	): Promise<Packed<'DriveFile'>[]> {
 | |
| 		if (fileIds.length === 0) return [];
 | |
| 		const filesMap = await this.packManyByIdsMap(fileIds, options);
 | |
| 		return fileIds.map(id => filesMap.get(id)).filter(isNotNull);
 | |
| 	}
 | |
| }
 |