2019-04-07 15:50:36 +03:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
|
|
|
import { DriveFile } from '../entities/drive-file';
|
|
|
|
import { Users, DriveFolders } from '..';
|
|
|
|
import rap from '@prezzemolo/rap';
|
|
|
|
import { User } from '../entities/user';
|
2019-04-09 18:59:41 +03:00
|
|
|
import { toPuny } from '../../misc/convert-host';
|
2019-04-12 19:43:22 +03:00
|
|
|
import { ensure } from '../../prelude/ensure';
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
@EntityRepository(DriveFile)
|
|
|
|
export class DriveFileRepository extends Repository<DriveFile> {
|
|
|
|
public validateFileName(name: string): boolean {
|
|
|
|
return (
|
|
|
|
(name.trim().length > 0) &&
|
|
|
|
(name.length <= 200) &&
|
|
|
|
(name.indexOf('\\') === -1) &&
|
|
|
|
(name.indexOf('/') === -1) &&
|
|
|
|
(name.indexOf('..') === -1)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-14 11:12:04 +03:00
|
|
|
public getPublicUrl(file: DriveFile, thumbnail = false): string | null {
|
2019-04-15 05:32:53 +03:00
|
|
|
return thumbnail ? (file.thumbnailUrl || file.webpublicUrl || null) : (file.webpublicUrl || file.url);
|
2019-04-07 15:50:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public async clacDriveUsageOf(user: User['id'] | User): Promise<number> {
|
|
|
|
const id = typeof user === 'object' ? user.id : user;
|
|
|
|
|
|
|
|
const { sum } = await this
|
|
|
|
.createQueryBuilder('file')
|
|
|
|
.where('file.userId = :id', { id: id })
|
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
|
|
|
return parseInt(sum, 10) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async clacDriveUsageOfHost(host: string): Promise<number> {
|
|
|
|
const { sum } = await this
|
|
|
|
.createQueryBuilder('file')
|
2019-04-09 18:59:41 +03:00
|
|
|
.where('file.userHost = :host', { host: toPuny(host) })
|
2019-04-07 15:50:36 +03:00
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
|
|
|
return parseInt(sum, 10) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async clacDriveUsageOfLocal(): Promise<number> {
|
|
|
|
const { sum } = await this
|
|
|
|
.createQueryBuilder('file')
|
|
|
|
.where('file.userHost IS NULL')
|
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
|
|
|
return parseInt(sum, 10) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async clacDriveUsageOfRemote(): Promise<number> {
|
|
|
|
const { sum } = await this
|
|
|
|
.createQueryBuilder('file')
|
|
|
|
.where('file.userHost IS NOT NULL')
|
|
|
|
.select('SUM(file.size)', 'sum')
|
|
|
|
.getRawOne();
|
|
|
|
|
|
|
|
return parseInt(sum, 10) || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public packMany(
|
|
|
|
files: any[],
|
|
|
|
options?: {
|
|
|
|
detail?: boolean
|
|
|
|
self?: boolean,
|
|
|
|
withUser?: boolean,
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
return Promise.all(files.map(f => this.pack(f, options)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public async pack(
|
|
|
|
src: DriveFile['id'] | DriveFile,
|
|
|
|
options?: {
|
|
|
|
detail?: boolean,
|
|
|
|
self?: boolean,
|
|
|
|
withUser?: boolean,
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
const opts = Object.assign({
|
|
|
|
detail: false,
|
|
|
|
self: false
|
|
|
|
}, options);
|
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
const file = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
return await rap({
|
|
|
|
id: file.id,
|
|
|
|
createdAt: file.createdAt,
|
|
|
|
name: file.name,
|
|
|
|
type: file.type,
|
|
|
|
md5: file.md5,
|
|
|
|
size: file.size,
|
|
|
|
isSensitive: file.isSensitive,
|
|
|
|
properties: file.properties,
|
|
|
|
url: opts.self ? file.url : this.getPublicUrl(file, false),
|
|
|
|
thumbnailUrl: this.getPublicUrl(file, true),
|
|
|
|
folderId: file.folderId,
|
|
|
|
folder: opts.detail && file.folderId ? DriveFolders.pack(file.folderId, {
|
|
|
|
detail: true
|
|
|
|
}) : null,
|
2019-04-12 19:43:22 +03:00
|
|
|
user: opts.withUser ? Users.pack(file.userId!) : null
|
2019-04-07 15:50:36 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|