1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-23 23:29:41 +02:00

Use absolute paths for uploads and db (#168)

* Use absolute paths for uploads and db

* Fix name interference

* Add error on auth page

* remove space

* Support of separated upload folder with absolute path

* fix files uploading

* remove log

* fix comment

Co-authored-by: n0str <team@codex.so>
Co-authored-by: Nikita Melnikov <nikmel2803@gmail.com>
This commit is contained in:
Alexander Menshikov 2022-04-22 23:28:40 +03:00 committed by GitHub
parent 331d45bf73
commit 836aa8985e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 29 additions and 9 deletions

View file

@ -10,6 +10,7 @@ const filesDb = database['files'];
* @property {string} filename - name of uploaded file
* @property {string} path - path to uploaded file
* @property {string} mimetype - file MIME type
* @property {string} url - file url to access it. Consists of uploads path and file name.
* @property {number} size - size of the file in
*/
export interface FileData {
@ -18,6 +19,7 @@ export interface FileData {
filename?: string;
path?: string;
mimetype?: string;
url?: string;
size?: number;
[key: string]: string | number | undefined;
}
@ -40,6 +42,7 @@ class File {
public path?: string;
public mimetype?: string;
public size?: number;
public url?: string;
/**
* @class
@ -99,13 +102,14 @@ class File {
* @param {FileData} fileData - info about file
*/
public set data(fileData: FileData) {
const { name, filename, path, mimetype, size } = fileData;
const { name, filename, path, mimetype, size, url } = fileData;
this.name = name || this.name;
this.filename = filename || this.filename;
this.path = path ? this.processPath(path) : this.path;
this.mimetype = mimetype || this.mimetype;
this.size = size || this.size;
this.url = url || this.url;
}
/**
@ -121,6 +125,7 @@ class File {
path: this.path,
mimetype: this.mimetype,
size: this.size,
url: this.url,
};
}