smartfile/ts/smartfile.fs.ts

369 lines
10 KiB
TypeScript
Raw Normal View History

import plugins = require('./smartfile.plugins');
import SmartfileInterpreter = require('./smartfile.interpreter');
import { Smartfile } from './smartfile.classes.smartfile';
import * as memory from './smartfile.memory';
2016-06-24 01:36:51 +00:00
/*===============================================================
============================ Checks =============================
===============================================================*/
/**
*
* @param filePath
* @returns {boolean}
*/
2019-06-27 08:42:35 +00:00
export const fileExistsSync = (filePath): boolean => {
let fileExistsBool: boolean = false;
try {
plugins.fsExtra.readFileSync(filePath);
fileExistsBool = true;
} catch (err) {
fileExistsBool = false;
}
return fileExistsBool;
};
2016-06-24 01:36:51 +00:00
/**
*
* @param filePath
* @returns {any}
*/
2019-09-27 09:00:17 +00:00
export const fileExists = async (filePath): Promise<boolean> => {
const done = plugins.smartpromise.defer<boolean>();
plugins.fs.access(filePath, 4, (err) => {
err ? done.resolve(false) : done.resolve(true);
});
return done.promise;
};
2016-06-24 01:36:51 +00:00
/**
* Checks if given path points to an existing directory
*/
2019-06-27 08:42:35 +00:00
export const isDirectory = (pathArg): boolean => {
try {
return plugins.fsExtra.statSync(pathArg).isDirectory();
} catch (err) {
return false;
}
};
2016-06-24 01:36:51 +00:00
/**
* Checks if a given path points to an existing file
*/
2019-06-27 08:42:35 +00:00
export const isFile = (pathArg): boolean => {
return plugins.fsExtra.statSync(pathArg).isFile();
};
2016-06-24 01:36:51 +00:00
2016-06-23 15:42:08 +00:00
/*===============================================================
============================ FS ACTIONS =========================
===============================================================*/
2016-09-24 19:42:45 +00:00
/**
* copies a file from A to B on the local disk
*/
2019-06-27 08:42:35 +00:00
export const copy = async (fromArg: string, toArg: string): Promise<boolean> => {
const done = plugins.smartpromise.defer<boolean>();
plugins.fsExtra.copy(fromArg, toArg, {}, (err) => {
2019-06-27 08:42:35 +00:00
if (err) {
throw new Error(`Could not copy from ${fromArg} to ${toArg}: ${err}`);
}
done.resolve(true);
});
return done.promise;
};
2016-09-24 19:42:45 +00:00
/**
* copies a file SYNCHRONOUSLY from A to B on the local disk
*/
2019-06-27 08:42:35 +00:00
export const copySync = (fromArg: string, toArg: string): boolean => {
plugins.fsExtra.copySync(fromArg, toArg);
return true;
};
2016-09-24 19:42:45 +00:00
2016-06-28 04:57:51 +00:00
/**
* ensures that a directory is in place
*/
2019-09-27 09:00:17 +00:00
export const ensureDir = async (dirPathArg: string) => {
await plugins.fsExtra.ensureDir(dirPathArg);
};
2016-06-28 04:57:51 +00:00
/**
* ensures that a directory is in place
*/
2019-09-27 09:00:17 +00:00
export const ensureDirSync = (dirPathArg: string) => {
plugins.fsExtra.ensureDirSync(dirPathArg);
};
2016-06-28 04:57:51 +00:00
/**
* ensure an empty directory
* @executes ASYNC
*/
2019-09-27 09:00:17 +00:00
export const ensureEmptyDir = async (dirPathArg: string) => {
await plugins.fsExtra.ensureDir(dirPathArg);
await plugins.fsExtra.emptyDir(dirPathArg);
};
/**
* ensure an empty directory
* @executes SYNC
*/
2019-09-27 09:00:17 +00:00
export const ensureEmptyDirSync = (dirPathArg: string) => {
plugins.fsExtra.ensureDirSync(dirPathArg);
plugins.fsExtra.emptyDirSync(dirPathArg);
};
2016-06-23 16:39:02 +00:00
/**
2016-09-24 19:42:45 +00:00
* ensures that a file is on disk
* @param filePath the filePath to ensureDir
* @param the fileContent to place into a new file in case it doesn't exist yet
* @returns Promise<void>
* @exec ASYNC
2016-06-23 16:39:02 +00:00
*/
2019-09-27 09:00:17 +00:00
export const ensureFile = async (filePathArg, initFileStringArg): Promise<void> => {
ensureFileSync(filePathArg, initFileStringArg);
};
2016-06-23 15:42:08 +00:00
2016-06-23 16:39:02 +00:00
/**
2016-09-24 19:42:45 +00:00
* ensures that a file is on disk
* @param filePath the filePath to ensureDir
* @param the fileContent to place into a new file in case it doesn't exist yet
* @returns Promise<void>
* @exec SYNC
2016-06-23 16:39:02 +00:00
*/
2019-09-27 09:00:17 +00:00
export const ensureFileSync = (filePathArg: string, initFileStringArg: string): void => {
if (fileExistsSync(filePathArg)) {
return null;
} else {
memory.toFsSync(initFileStringArg, filePathArg);
}
};
2016-09-20 15:56:49 +00:00
2016-09-24 19:42:45 +00:00
/**
* removes a file or folder from local disk
*/
2019-09-27 09:00:17 +00:00
export const remove = async (pathArg: string): Promise<void> => {
await plugins.fsExtra.remove(pathArg);
};
2016-06-23 15:42:08 +00:00
2016-06-23 16:39:02 +00:00
/**
* removes a file SYNCHRONOUSLY from local disk
*/
2019-09-27 09:00:17 +00:00
export const removeSync = (pathArg: string): void => {
plugins.fsExtra.removeSync(pathArg);
};
2016-06-23 15:42:08 +00:00
2016-09-29 12:17:46 +00:00
/**
* removes an array of filePaths from disk
*/
2019-09-27 09:00:17 +00:00
export const removeMany = async (filePathArrayArg: string[]) => {
const promiseArray: Array<Promise<void>> = [];
for (const filePath of filePathArrayArg) {
promiseArray.push(remove(filePath));
}
2019-09-27 09:00:17 +00:00
await Promise.all(promiseArray);
};
2016-09-29 12:17:46 +00:00
/**
* like removeFilePathArray but SYNCHRONOUSLY
*/
2019-09-27 09:00:17 +00:00
export const removeManySync = (filePathArrayArg: string[]): void => {
for (const filePath of filePathArrayArg) {
removeSync(filePath);
}
};
2016-09-29 12:17:46 +00:00
2016-06-23 15:42:08 +00:00
/*===============================================================
============================ Write/Read =========================
===============================================================*/
/**
*
* @param filePathArg
* @param fileTypeArg
* @returns {any}
*/
2019-09-27 09:00:17 +00:00
export const toObjectSync = (filePathArg, fileTypeArg?) => {
2019-01-27 02:11:10 +00:00
const fileString = plugins.fsExtra.readFileSync(filePathArg, 'utf8');
let fileType;
fileTypeArg ? (fileType = fileTypeArg) : (fileType = SmartfileInterpreter.filetype(filePathArg));
return SmartfileInterpreter.objectFile(fileString, fileType);
};
2016-06-23 15:42:08 +00:00
/**
* reads a file content to a String
*/
2019-06-27 08:42:35 +00:00
export const toStringSync = (filePath: string): string => {
2020-03-04 16:31:13 +00:00
const encoding = plugins.smartmime.getEncoding(filePath);
const fileString: string = plugins.fsExtra.readFileSync(filePath, encoding);
return fileString;
};
2020-03-04 16:31:13 +00:00
export const toBufferSync = (filePath: string): Buffer => {
return plugins.fsExtra.readFileSync(filePath);
2020-03-15 18:58:46 +00:00
};
2020-03-04 16:31:13 +00:00
2019-09-27 09:00:17 +00:00
export const fileTreeToHash = async (dirPathArg: string, miniMatchFilter: string) => {
const fileTreeObject = await fileTreeToObject(dirPathArg, miniMatchFilter);
let combinedString = '';
for (const smartfile of fileTreeObject) {
combinedString += smartfile.contentBuffer.toString();
}
const hash = await plugins.smarthash.sha256FromString(combinedString);
return hash;
};
/**
* creates a smartfile array from a directory
* @param dirPathArg the directory to start from
* @param miniMatchFilter a minimatch filter of what files to include
*/
2019-06-26 19:17:58 +00:00
export const fileTreeToObject = async (dirPathArg: string, miniMatchFilter: string) => {
2017-04-30 13:37:34 +00:00
// handle absolute miniMatchFilter
let dirPath: string;
2017-04-30 13:37:34 +00:00
if (plugins.path.isAbsolute(miniMatchFilter)) {
dirPath = '/';
2017-04-30 13:37:34 +00:00
} else {
dirPath = dirPathArg;
2017-04-30 13:37:34 +00:00
}
2019-06-26 19:17:58 +00:00
const fileTree = await listFileTree(dirPath, miniMatchFilter);
const smartfileArray: Smartfile[] = [];
2019-09-27 09:00:17 +00:00
for (const filePath of fileTree) {
const readPath = ((): string => {
2017-08-02 11:10:30 +00:00
if (!plugins.path.isAbsolute(filePath)) {
return plugins.path.join(dirPath, filePath);
2017-08-02 11:10:30 +00:00
} else {
return filePath;
2017-08-02 11:10:30 +00:00
}
})();
2019-09-27 09:00:17 +00:00
const fileContentString = toStringSync(readPath);
2017-05-01 17:49:34 +00:00
2017-05-07 21:16:25 +00:00
// push a read file as Smartfile
smartfileArray.push(
new Smartfile({
2019-06-26 19:17:58 +00:00
contentBuffer: Buffer.from(fileContentString),
base: dirPath,
path: filePath,
})
);
}
return smartfileArray;
};
2016-06-23 15:42:08 +00:00
2016-06-23 16:39:02 +00:00
/**
* lists Folders in a directory on local disk
2018-11-22 22:23:26 +00:00
* @returns Promise with an array that contains the folder names
2016-06-23 16:39:02 +00:00
*/
2019-09-27 09:00:17 +00:00
export const listFolders = async (pathArg: string, regexFilter?: RegExp): Promise<string[]> => {
2019-01-27 02:11:10 +00:00
return listFoldersSync(pathArg, regexFilter);
};
2016-06-23 15:42:08 +00:00
2016-06-23 16:39:02 +00:00
/**
* lists Folders SYNCHRONOUSLY in a directory on local disk
2016-06-28 04:57:51 +00:00
* @returns an array with the folder names as strings
2016-06-23 16:39:02 +00:00
*/
2019-09-27 09:00:17 +00:00
export const listFoldersSync = (pathArg: string, regexFilter?: RegExp): string[] => {
let folderArray = plugins.fsExtra.readdirSync(pathArg).filter((file) => {
return plugins.fsExtra.statSync(plugins.path.join(pathArg, file)).isDirectory();
});
if (regexFilter) {
folderArray = folderArray.filter((fileItem) => {
return regexFilter.test(fileItem);
});
}
return folderArray;
};
/**
* lists Files in a directory on local disk
* @returns Promise
*/
2019-09-27 09:00:17 +00:00
export const listFiles = async (pathArg: string, regexFilter?: RegExp): Promise<string[]> => {
2019-01-27 02:11:10 +00:00
return listFilesSync(pathArg, regexFilter);
};
/**
* lists Files SYNCHRONOUSLY in a directory on local disk
* @returns an array with the folder names as strings
*/
2019-09-27 09:00:17 +00:00
export const listFilesSync = (pathArg: string, regexFilter?: RegExp): string[] => {
let fileArray = plugins.fsExtra.readdirSync(pathArg).filter((file) => {
return plugins.fsExtra.statSync(plugins.path.join(pathArg, file)).isFile();
});
if (regexFilter) {
fileArray = fileArray.filter((fileItem) => {
return regexFilter.test(fileItem);
});
}
return fileArray;
};
/**
* lists all items (folders AND files) in a directory on local disk
2016-09-17 21:11:44 +00:00
* @returns Promise<string[]>
*/
2019-09-27 09:00:17 +00:00
export const listAllItems = async (pathArg: string, regexFilter?: RegExp): Promise<string[]> => {
2019-01-27 02:11:10 +00:00
return listAllItemsSync(pathArg, regexFilter);
};
/**
2016-09-17 21:11:44 +00:00
* lists all items (folders AND files) in a directory on local disk
* @returns an array with the folder names as strings
2016-09-17 21:11:44 +00:00
* @executes SYNC
*/
2019-09-27 09:00:17 +00:00
export const listAllItemsSync = (pathArg: string, regexFilter?: RegExp): string[] => {
let allItmesArray = plugins.fsExtra.readdirSync(pathArg).filter((file) => {
return plugins.fsExtra.statSync(plugins.path.join(pathArg, file)).isFile();
});
if (regexFilter) {
allItmesArray = allItmesArray.filter((fileItem) => {
return regexFilter.test(fileItem);
});
}
return allItmesArray;
};
2016-09-17 21:11:44 +00:00
/**
* lists a file tree using a miniMatch filter
2016-09-30 14:16:11 +00:00
* note: if the miniMatch Filter is an absolute path, the cwdArg will be omitted
2016-09-17 21:11:44 +00:00
* @returns Promise<string[]> string array with the absolute paths of all matching files
*/
2019-09-27 09:00:17 +00:00
export const listFileTree = async (
dirPathArg: string,
miniMatchFilter: string,
absolutePathsBool: boolean = false
): Promise<string[]> => {
2019-01-27 02:11:10 +00:00
const done = plugins.smartpromise.defer<string[]>();
// handle absolute miniMatchFilter
let dirPath: string;
if (plugins.path.isAbsolute(miniMatchFilter)) {
dirPath = '/';
} else {
dirPath = dirPathArg;
}
2019-01-27 02:11:10 +00:00
const options = {
2017-05-26 23:07:32 +00:00
cwd: dirPath,
2017-05-27 00:54:22 +00:00
nodir: true,
dot: true,
};
plugins.glob(miniMatchFilter, options, (err, files: string[]) => {
if (err) {
console.log(err);
done.reject(err);
2016-09-30 14:16:11 +00:00
}
done.resolve(files);
});
2019-09-27 09:00:17 +00:00
2019-06-26 19:17:58 +00:00
let fileList = await done.promise;
if (absolutePathsBool) {
fileList = fileList.map((filePath) => {
2019-06-26 19:17:58 +00:00
return plugins.path.resolve(plugins.path.join(dirPath, filePath));
});
}
return fileList;
};