mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
122 lines
3.4 KiB
TypeScript
122 lines
3.4 KiB
TypeScript
import * as fsStat from '@nodelib/fs.stat';
|
|
import * as rpl from 'run-parallel';
|
|
|
|
import { IS_SUPPORT_READDIR_WITH_FILE_TYPES } from '../constants';
|
|
import Settings from '../settings';
|
|
import { Entry, Stats } from '../types';
|
|
import * as utils from '../utils';
|
|
import * as common from './common';
|
|
|
|
type RplTaskStats = rpl.Task<Stats>;
|
|
type RplTaskEntry = rpl.Task<Entry>;
|
|
type FailureCallback = (err: NodeJS.ErrnoException) => void;
|
|
type SuccessCallback = (err: null, entries: Entry[]) => void;
|
|
|
|
export type AsyncCallback = (err: NodeJS.ErrnoException, entries: Entry[]) => void;
|
|
|
|
export function read(directory: string, settings: Settings, callback: AsyncCallback): void {
|
|
if (!settings.stats && IS_SUPPORT_READDIR_WITH_FILE_TYPES) {
|
|
return readdirWithFileTypes(directory, settings, callback);
|
|
}
|
|
|
|
return readdir(directory, settings, callback);
|
|
}
|
|
|
|
export function readdirWithFileTypes(directory: string, settings: Settings, callback: AsyncCallback): void {
|
|
settings.fs.readdir(directory, { withFileTypes: true }, (readdirError, dirents) => {
|
|
if (readdirError !== null) {
|
|
return callFailureCallback(callback, readdirError);
|
|
}
|
|
|
|
const entries: Entry[] = dirents.map((dirent) => ({
|
|
dirent,
|
|
name: dirent.name,
|
|
path: common.joinPathSegments(directory, dirent.name, settings.pathSegmentSeparator)
|
|
}));
|
|
|
|
if (!settings.followSymbolicLinks) {
|
|
return callSuccessCallback(callback, entries);
|
|
}
|
|
|
|
const tasks: RplTaskEntry[] = entries.map((entry) => makeRplTaskEntry(entry, settings));
|
|
|
|
rpl(tasks, (rplError: Error | null, rplEntries) => {
|
|
if (rplError !== null) {
|
|
return callFailureCallback(callback, rplError);
|
|
}
|
|
|
|
callSuccessCallback(callback, rplEntries);
|
|
});
|
|
});
|
|
}
|
|
|
|
function makeRplTaskEntry(entry: Entry, settings: Settings): RplTaskEntry {
|
|
return (done) => {
|
|
if (!entry.dirent.isSymbolicLink()) {
|
|
return done(null, entry);
|
|
}
|
|
|
|
settings.fs.stat(entry.path, (statError, stats) => {
|
|
if (statError !== null) {
|
|
if (settings.throwErrorOnBrokenSymbolicLink) {
|
|
return done(statError);
|
|
}
|
|
|
|
return done(null, entry);
|
|
}
|
|
|
|
entry.dirent = utils.fs.createDirentFromStats(entry.name, stats);
|
|
|
|
return done(null, entry);
|
|
});
|
|
};
|
|
}
|
|
|
|
export function readdir(directory: string, settings: Settings, callback: AsyncCallback): void {
|
|
settings.fs.readdir(directory, (readdirError, names) => {
|
|
if (readdirError !== null) {
|
|
return callFailureCallback(callback, readdirError);
|
|
}
|
|
|
|
const filepaths = names.map((name) => common.joinPathSegments(directory, name, settings.pathSegmentSeparator));
|
|
|
|
const tasks: RplTaskStats[] = filepaths.map((filepath): RplTaskStats => {
|
|
return (done) => fsStat.stat(filepath, settings.fsStatSettings, done);
|
|
});
|
|
|
|
rpl(tasks, (rplError: Error | null, results) => {
|
|
if (rplError !== null) {
|
|
return callFailureCallback(callback, rplError);
|
|
}
|
|
|
|
const entries: Entry[] = [];
|
|
|
|
names.forEach((name, index) => {
|
|
const stats = results[index];
|
|
|
|
const entry: Entry = {
|
|
name,
|
|
path: filepaths[index],
|
|
dirent: utils.fs.createDirentFromStats(name, stats)
|
|
};
|
|
|
|
if (settings.stats) {
|
|
entry.stats = stats;
|
|
}
|
|
|
|
entries.push(entry);
|
|
});
|
|
|
|
callSuccessCallback(callback, entries);
|
|
});
|
|
});
|
|
}
|
|
|
|
function callFailureCallback(callback: AsyncCallback, error: NodeJS.ErrnoException): void {
|
|
(callback as FailureCallback)(error);
|
|
}
|
|
|
|
function callSuccessCallback(callback: AsyncCallback, result: Entry[]): void {
|
|
(callback as unknown as SuccessCallback)(null, result);
|
|
}
|