1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-20 13:49:43 +02:00

feat: Version 2

Closes #627, closes #1047
This commit is contained in:
Maksim Eltyshev 2025-05-10 02:09:06 +02:00
parent ad7fb51cfa
commit 2ee1166747
1557 changed files with 76832 additions and 47042 deletions

View file

@ -1,3 +1,8 @@
/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
const fs = require('fs');
const fse = require('fs-extra');
const path = require('path');
@ -27,21 +32,80 @@ class LocalFileManager {
}
// eslint-disable-next-line class-methods-use-this
read(filePathSegment) {
async read(filePathSegment) {
const filePath = buildPath(filePathSegment);
const isFileExists = await fse.pathExists(filePath);
if (!fs.existsSync(filePath)) {
if (!isFileExists) {
throw new Error('File does not exist');
}
return fs.createReadStream(filePath);
}
// eslint-disable-next-line class-methods-use-this
async getSizeInBytes(filePathSegment) {
let result;
try {
result = await fs.promises.stat(buildPath(filePathSegment));
} catch (error) {
return null;
}
return result.size;
}
// eslint-disable-next-line class-methods-use-this
async rename(filePathSegment, nextFilePathSegment) {
try {
await fs.promises.rename(buildPath(filePathSegment), buildPath(nextFilePathSegment));
} catch (error) {
/* empty */
}
}
// eslint-disable-next-line class-methods-use-this
async delete(filePathSegment) {
try {
await fs.promises.unlink(buildPath(filePathSegment));
} catch (error) {
/* empty */
}
}
// eslint-disable-next-line class-methods-use-this
async listDir(dirPathSegment) {
let dirents;
try {
dirents = await fs.promises.readdir(buildPath(dirPathSegment), {
withFileTypes: true,
});
} catch (error) {
return null;
}
return dirents.flatMap((dirent) => (dirent.isDirectory() ? dirent.name : []));
}
// eslint-disable-next-line class-methods-use-this
async renameDir(dirPathSegment, nextDirPathSegment) {
try {
await fs.promises.rename(buildPath(dirPathSegment), buildPath(nextDirPathSegment));
} catch (error) {
/* empty */
}
}
// eslint-disable-next-line class-methods-use-this
async deleteDir(dirPathSegment) {
await rimraf(buildPath(dirPathSegment));
}
// eslint-disable-next-line class-methods-use-this
async isExists(pathSegment) {
return fse.pathExists(buildPath(pathSegment));
}
// eslint-disable-next-line class-methods-use-this
buildUrl(filePathSegment) {
return `${sails.config.custom.baseUrl}/${filePathSegment.replace(PATH_SEGMENT_TO_URL_REPLACE_REGEX, '')}`;