1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-04 03:49:28 +02:00
pigallery2/backend/ProjectPath.ts

31 lines
885 B
TypeScript
Raw Normal View History

import * as path from "path";
2017-06-04 15:25:08 +02:00
import {Config} from "../common/config/private/Config";
class ProjectPathClass {
public Root: string;
public ImageFolder: string;
public ThumbnailFolder: string;
2017-07-03 19:17:49 +02:00
public FrontendFolder: string;
isAbsolutePath(pathStr: string) {
return path.resolve(pathStr) === path.normalize(pathStr);
}
2016-06-25 14:13:06 +02:00
normalizeRelative(pathStr: string) {
return path.join(pathStr, path.sep);
}
2016-12-28 15:26:19 +02:00
2017-07-14 22:56:25 +02:00
getAbsolutePath(pathStr: string): string {
return this.isAbsolutePath(pathStr) ? pathStr : path.join(this.Root, pathStr);
}
constructor() {
this.Root = path.join(__dirname, "/../");
2017-07-14 22:56:25 +02:00
this.ImageFolder = this.getAbsolutePath(Config.Server.imagesFolder);
this.ThumbnailFolder = this.getAbsolutePath(Config.Server.thumbnail.folder);
2017-07-03 19:17:49 +02:00
this.FrontendFolder = path.join(this.Root, 'dist')
}
}
export const ProjectPath = new ProjectPathClass();