mirror of
https://github.com/plankanban/planka.git
synced 2026-02-26 11:33:54 +03:00
139 lines
3.8 KiB
JavaScript
139 lines
3.8 KiB
JavaScript
/*!
|
|
* 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');
|
|
const { pipeline } = require('stream/promises');
|
|
const mime = require('mime-types');
|
|
const { rimraf } = require('rimraf');
|
|
|
|
// const PATH_SEGMENT_TO_URL_REPLACE_REGEX = /(public|private)\//;
|
|
|
|
const buildPath = (pathSegment) => path.join(sails.config.custom.uploadsBasePath, pathSegment);
|
|
|
|
class LocalFileManager {
|
|
// eslint-disable-next-line class-methods-use-this
|
|
async move(sourceFilePath, filePathSegment) {
|
|
const { dir, base } = path.parse(filePathSegment);
|
|
|
|
const dirPath = buildPath(dir);
|
|
const filePath = path.join(dirPath, base);
|
|
|
|
await fs.promises.mkdir(dirPath, { recursive: true });
|
|
await fse.move(sourceFilePath, filePath);
|
|
|
|
return filePath;
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
async save(filePathSegment, stream) {
|
|
const filePath = buildPath(filePathSegment);
|
|
const { dir: dirPath } = path.parse(filePath);
|
|
|
|
await fs.promises.mkdir(dirPath, { recursive: true });
|
|
await pipeline(stream, fs.createWriteStream(filePath));
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
async read(filePathSegment, { withHeaders = false } = {}) {
|
|
const filePath = buildPath(filePathSegment);
|
|
|
|
let stat;
|
|
try {
|
|
stat = await fs.promises.stat(filePath);
|
|
} catch (error) {
|
|
throw new Error('File does not exist');
|
|
}
|
|
|
|
const readStream = fs.createReadStream(filePath);
|
|
|
|
if (withHeaders) {
|
|
return [
|
|
readStream,
|
|
{
|
|
'Content-Type': mime.lookup(filePathSegment) || 'application/octet-stream',
|
|
'Content-Length': stat.size,
|
|
'Last-Modified': stat.mtime.toUTCString(),
|
|
ETag: `W/"${stat.size.toString(16)}-${stat.mtime.getTime().toString(16)}"`,
|
|
'Accept-Ranges': 'bytes',
|
|
},
|
|
];
|
|
}
|
|
|
|
return readStream;
|
|
}
|
|
|
|
// eslint-disable-next-line class-methods-use-this
|
|
async getSize(filePathSegment) {
|
|
let stat;
|
|
try {
|
|
stat = await fs.promises.stat(buildPath(filePathSegment));
|
|
} catch (error) {
|
|
return null;
|
|
}
|
|
|
|
return stat.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, '')}`;
|
|
} */
|
|
}
|
|
|
|
module.exports = LocalFileManager;
|