2024-01-26 11:48:37 -05:00
|
|
|
import { Inject } from '@nestjs/common';
|
|
|
|
|
import { DateTime } from 'luxon';
|
|
|
|
|
import { AccessCore, Permission } from '../access';
|
|
|
|
|
import { BulkIdsDto } from '../asset';
|
|
|
|
|
import { AuthDto } from '../auth';
|
|
|
|
|
import { usePagination } from '../domain.util';
|
|
|
|
|
import { JOBS_ASSET_PAGINATION_SIZE, JobName } from '../job';
|
|
|
|
|
import {
|
|
|
|
|
ClientEvent,
|
|
|
|
|
IAccessRepository,
|
|
|
|
|
IAssetRepository,
|
|
|
|
|
ICommunicationRepository,
|
|
|
|
|
IJobRepository,
|
|
|
|
|
} from '../repositories';
|
|
|
|
|
|
|
|
|
|
export class TrashService {
|
|
|
|
|
private access: AccessCore;
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
@Inject(IAccessRepository) accessRepository: IAccessRepository,
|
|
|
|
|
@Inject(IAssetRepository) private assetRepository: IAssetRepository,
|
|
|
|
|
@Inject(IJobRepository) private jobRepository: IJobRepository,
|
|
|
|
|
@Inject(ICommunicationRepository) private communicationRepository: ICommunicationRepository,
|
|
|
|
|
) {
|
|
|
|
|
this.access = AccessCore.create(accessRepository);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async restoreAssets(auth: AuthDto, dto: BulkIdsDto): Promise<void> {
|
|
|
|
|
const { ids } = dto;
|
|
|
|
|
await this.access.requirePermission(auth, Permission.ASSET_RESTORE, ids);
|
|
|
|
|
await this.restoreAndSend(auth, ids);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async restore(auth: AuthDto): Promise<void> {
|
|
|
|
|
const assetPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) =>
|
2024-02-12 20:50:47 -05:00
|
|
|
this.assetRepository.getByUserId(pagination, auth.user.id, {
|
|
|
|
|
trashedBefore: DateTime.now().toJSDate(),
|
|
|
|
|
}),
|
2024-01-26 11:48:37 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
for await (const assets of assetPagination) {
|
|
|
|
|
const ids = assets.map((a) => a.id);
|
|
|
|
|
await this.restoreAndSend(auth, ids);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async empty(auth: AuthDto): Promise<void> {
|
|
|
|
|
const assetPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) =>
|
2024-02-12 20:50:47 -05:00
|
|
|
this.assetRepository.getByUserId(pagination, auth.user.id, {
|
|
|
|
|
trashedBefore: DateTime.now().toJSDate(),
|
|
|
|
|
}),
|
2024-01-26 11:48:37 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
for await (const assets of assetPagination) {
|
|
|
|
|
await this.jobRepository.queueAll(
|
|
|
|
|
assets.map((asset) => ({ name: JobName.ASSET_DELETION, data: { id: asset.id } })),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async restoreAndSend(auth: AuthDto, ids: string[]) {
|
|
|
|
|
if (ids.length === 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await this.assetRepository.restoreAll(ids);
|
|
|
|
|
this.communicationRepository.send(ClientEvent.ASSET_RESTORE, auth.user.id, ids);
|
|
|
|
|
}
|
|
|
|
|
}
|