1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-04-04 22:24:27 +02:00
pigallery2/src/backend/model/database/sql/SharingManager.ts

75 lines
2.7 KiB
TypeScript
Raw Normal View History

2018-03-30 15:30:30 -04:00
import {ISharingManager} from '../interfaces/ISharingManager';
import {SharingDTO} from '../../../../common/entities/SharingDTO';
2018-03-30 15:30:30 -04:00
import {SQLConnection} from './SQLConnection';
import {SharingEntity} from './enitites/SharingEntity';
import {Config} from '../../../../common/config/private/Config';
import {PasswordHelper} from '../../PasswordHelper';
2018-05-23 21:53:53 -04:00
import {DeleteResult} from 'typeorm';
2017-07-03 19:17:49 +02:00
export class SharingManager implements ISharingManager {
2018-05-23 21:53:53 -04:00
private static async removeExpiredLink(): Promise<DeleteResult> {
const connection = await SQLConnection.getConnection();
2018-05-23 21:53:53 -04:00
return await connection
.getRepository(SharingEntity)
2018-03-30 15:30:30 -04:00
.createQueryBuilder('share')
.where('expires < :now', {now: Date.now()})
.delete()
.execute();
}
async deleteSharing(sharingKey: string): Promise<void> {
const connection = await SQLConnection.getConnection();
const sharing = await connection.getRepository(SharingEntity).findOne({sharingKey});
await connection.getRepository(SharingEntity).remove(sharing);
}
async listAll(): Promise<SharingDTO[]> {
await SharingManager.removeExpiredLink();
const connection = await SQLConnection.getConnection();
return await connection.getRepository(SharingEntity)
.createQueryBuilder('share')
.leftJoinAndSelect('share.creator', 'creator').getMany();
}
2017-07-03 19:17:49 +02:00
async findOne(filter: any): Promise<SharingDTO> {
await SharingManager.removeExpiredLink();
const connection = await SQLConnection.getConnection();
2017-07-03 19:17:49 +02:00
return await connection.getRepository(SharingEntity).findOne(filter);
}
async createSharing(sharing: SharingDTO): Promise<SharingDTO> {
await SharingManager.removeExpiredLink();
const connection = await SQLConnection.getConnection();
2017-07-09 22:36:25 +02:00
if (sharing.password) {
2017-07-11 09:01:59 +02:00
sharing.password = PasswordHelper.cryptPassword(sharing.password);
2017-07-09 22:36:25 +02:00
}
2019-12-12 19:11:49 +01:00
return connection.getRepository(SharingEntity).save(sharing);
2017-07-03 19:17:49 +02:00
}
async updateSharing(inSharing: SharingDTO, forceUpdate: boolean): Promise<SharingDTO> {
const connection = await SQLConnection.getConnection();
2017-07-03 19:17:49 +02:00
const sharing = await connection.getRepository(SharingEntity).findOne({
2017-07-03 19:17:49 +02:00
id: inSharing.id,
creator: inSharing.creator.id as any,
2017-07-03 19:17:49 +02:00
path: inSharing.path
});
if (sharing.timeStamp < Date.now() - Config.Server.Sharing.updateTimeout && forceUpdate !== true) {
throw new Error('Sharing is locked, can\'t update anymore');
2017-07-03 19:17:49 +02:00
}
2018-02-03 20:50:05 -05:00
if (inSharing.password == null) {
sharing.password = null;
} else {
sharing.password = PasswordHelper.cryptPassword(inSharing.password);
}
2017-07-03 19:17:49 +02:00
sharing.includeSubfolders = inSharing.includeSubfolders;
sharing.expires = inSharing.expires;
2019-12-12 19:11:49 +01:00
return connection.getRepository(SharingEntity).save(sharing);
2017-07-03 19:17:49 +02:00
}
}