* refactor(server): shared links * chore: tests * fix: bugs and tests * fix: missed one expired at * fix: standardize file upload checks * test: lower flutter version Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
82 lines
2.6 KiB
TypeScript
82 lines
2.6 KiB
TypeScript
import { AssetEntity, SharedLinkEntity } from '@app/infra/db/entities';
|
|
import { BadRequestException, ForbiddenException, InternalServerErrorException, Logger } from '@nestjs/common';
|
|
import { AuthUserDto, ICryptoRepository } from '../auth';
|
|
import { CreateSharedLinkDto } from './dto';
|
|
import { ISharedLinkRepository } from './shared-link.repository';
|
|
|
|
export class ShareCore {
|
|
readonly logger = new Logger(ShareCore.name);
|
|
|
|
constructor(private repository: ISharedLinkRepository, private cryptoRepository: ICryptoRepository) {}
|
|
|
|
getAll(userId: string): Promise<SharedLinkEntity[]> {
|
|
return this.repository.getAll(userId);
|
|
}
|
|
|
|
get(userId: string, id: string): Promise<SharedLinkEntity | null> {
|
|
return this.repository.get(userId, id);
|
|
}
|
|
|
|
getByKey(key: string): Promise<SharedLinkEntity | null> {
|
|
return this.repository.getByKey(key);
|
|
}
|
|
|
|
create(userId: string, dto: CreateSharedLinkDto): Promise<SharedLinkEntity> {
|
|
try {
|
|
return this.repository.create({
|
|
key: Buffer.from(this.cryptoRepository.randomBytes(50)),
|
|
description: dto.description,
|
|
userId,
|
|
createdAt: new Date().toISOString(),
|
|
expiresAt: dto.expiresAt ?? null,
|
|
type: dto.type,
|
|
assets: dto.assets,
|
|
album: dto.album,
|
|
allowUpload: dto.allowUpload ?? false,
|
|
allowDownload: dto.allowDownload ?? true,
|
|
showExif: dto.showExif ?? true,
|
|
});
|
|
} catch (error: any) {
|
|
this.logger.error(error, error.stack);
|
|
throw new InternalServerErrorException('failed to create shared link');
|
|
}
|
|
}
|
|
|
|
async save(userId: string, id: string, entity: Partial<SharedLinkEntity>): Promise<SharedLinkEntity> {
|
|
const link = await this.get(userId, id);
|
|
if (!link) {
|
|
throw new BadRequestException('Shared link not found');
|
|
}
|
|
|
|
return this.repository.save({ ...entity, userId, id });
|
|
}
|
|
|
|
async remove(userId: string, id: string): Promise<SharedLinkEntity> {
|
|
const link = await this.get(userId, id);
|
|
if (!link) {
|
|
throw new BadRequestException('Shared link not found');
|
|
}
|
|
|
|
return this.repository.remove(link);
|
|
}
|
|
|
|
async updateAssets(userId: string, id: string, assets: AssetEntity[]) {
|
|
const link = await this.get(userId, id);
|
|
if (!link) {
|
|
throw new BadRequestException('Shared link not found');
|
|
}
|
|
|
|
return this.repository.save({ ...link, assets });
|
|
}
|
|
|
|
async hasAssetAccess(id: string, assetId: string): Promise<boolean> {
|
|
return this.repository.hasAssetAccess(id, assetId);
|
|
}
|
|
|
|
checkDownloadAccess(user: AuthUserDto) {
|
|
if (user.isPublicUser && !user.isAllowDownload) {
|
|
throw new ForbiddenException();
|
|
}
|
|
}
|
|
}
|