mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
98 lines
1.9 KiB
TypeScript
98 lines
1.9 KiB
TypeScript
import {ClientConfig} from '../public/ConfigClass';
|
|
import {TaskScheduleDTO} from '../../entities/task/TaskScheduleDTO';
|
|
|
|
export enum DatabaseType {
|
|
memory = 1, mysql = 2, sqlite = 3
|
|
}
|
|
|
|
export enum LogLevel {
|
|
error = 1, warn = 2, info = 3, verbose = 4, debug = 5, silly = 6
|
|
}
|
|
|
|
export enum SQLLogLevel {
|
|
none = 1, error = 2, all = 3
|
|
}
|
|
|
|
export enum ThumbnailProcessingLib {
|
|
Jimp = 1,
|
|
gm = 2,
|
|
sharp = 3
|
|
}
|
|
|
|
export interface MySQLConfig {
|
|
host: string;
|
|
database: string;
|
|
username: string;
|
|
password: string;
|
|
}
|
|
|
|
export interface SQLiteConfig {
|
|
storage: string;
|
|
}
|
|
|
|
export interface DataBaseConfig {
|
|
type: DatabaseType;
|
|
mysql?: MySQLConfig;
|
|
sqlite?: SQLiteConfig;
|
|
}
|
|
|
|
export interface ThumbnailConfig {
|
|
folder: string;
|
|
processingLibrary: ThumbnailProcessingLib;
|
|
qualityPriority: boolean;
|
|
personFaceMargin: number; // in ration [0-1]
|
|
}
|
|
|
|
export interface SharingConfig {
|
|
updateTimeout: number;
|
|
}
|
|
|
|
export enum ReIndexingSensitivity {
|
|
low = 1, medium = 2, high = 3
|
|
}
|
|
|
|
export interface IndexingConfig {
|
|
folderPreviewSize: number;
|
|
cachedFolderTimeout: number; // Do not rescans the folder if seems ok
|
|
reIndexingSensitivity: ReIndexingSensitivity;
|
|
}
|
|
|
|
export interface ThreadingConfig {
|
|
enable: boolean;
|
|
thumbnailThreads: number;
|
|
}
|
|
|
|
export interface DuplicatesConfig {
|
|
listingLimit: number; // maximum number of duplicates to list
|
|
}
|
|
|
|
export interface LogConfig {
|
|
level: LogLevel;
|
|
sqlLevel: SQLLogLevel;
|
|
}
|
|
|
|
export interface TaskConfig {
|
|
scheduled: TaskScheduleDTO[];
|
|
}
|
|
|
|
export interface ServerConfig {
|
|
port: number;
|
|
host: string;
|
|
imagesFolder: string;
|
|
thumbnail: ThumbnailConfig;
|
|
threading: ThreadingConfig;
|
|
database: DataBaseConfig;
|
|
sharing: SharingConfig;
|
|
sessionTimeout: number;
|
|
indexing: IndexingConfig;
|
|
photoMetadataSize: number;
|
|
duplicates: DuplicatesConfig;
|
|
log: LogConfig;
|
|
tasks: TaskConfig;
|
|
}
|
|
|
|
export interface IPrivateConfig {
|
|
Server: ServerConfig;
|
|
Client: ClientConfig.Config;
|
|
}
|