You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.7 KiB
99 lines
2.7 KiB
import { promises as fs } from 'fs';
|
|
import {
|
|
IpluginDetails,
|
|
IpluginInputArgs,
|
|
IpluginOutputArgs,
|
|
} from '../../../../FlowHelpers/1.0.0/interfaces/interfaces';
|
|
import { getFileAbosluteDir } from '../../../../FlowHelpers/1.0.0/fileUtils';
|
|
|
|
/* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */
|
|
const details = (): IpluginDetails => ({
|
|
name: 'Delete File',
|
|
description: 'Delete the working file or original file.',
|
|
style: {
|
|
borderColor: 'red',
|
|
},
|
|
tags: 'video',
|
|
isStartPlugin: false,
|
|
pType: '',
|
|
requiresVersion: '2.11.01',
|
|
sidebarPosition: -1,
|
|
icon: 'faTrash',
|
|
inputs: [
|
|
{
|
|
label: 'File To Delete',
|
|
name: 'fileToDelete',
|
|
type: 'string',
|
|
defaultValue: 'workingFile',
|
|
inputUI: {
|
|
type: 'dropdown',
|
|
options: [
|
|
'workingFile',
|
|
'originalFile',
|
|
],
|
|
},
|
|
tooltip: 'Specify the file to delete',
|
|
},
|
|
{
|
|
label: 'Delete Parent Folder If Empty',
|
|
name: 'deleteParentFolderIfEmpty',
|
|
type: 'boolean',
|
|
defaultValue: 'false',
|
|
inputUI: {
|
|
type: 'switch',
|
|
},
|
|
tooltip: 'If the folder that the file is in is empty after the file is deleted, delete the folder.',
|
|
},
|
|
],
|
|
outputs: [
|
|
{
|
|
number: 1,
|
|
tooltip: 'Continue to next plugin',
|
|
},
|
|
],
|
|
});
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
|
|
const lib = require('../../../../../methods/lib')();
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign
|
|
args.inputs = lib.loadDefaultValues(args.inputs, details);
|
|
|
|
const fileToDelete = String(args.inputs.fileToDelete);
|
|
const { deleteParentFolderIfEmpty } = args.inputs;
|
|
|
|
if (fileToDelete === 'workingFile') {
|
|
args.jobLog(`Deleting working file ${args.inputFileObj._id}`);
|
|
await fs.unlink(args.inputFileObj._id);
|
|
} else if (fileToDelete === 'originalFile') {
|
|
args.jobLog(`Deleting original file ${args.originalLibraryFile._id}`);
|
|
await fs.unlink(args.originalLibraryFile._id);
|
|
}
|
|
|
|
const fileDir = getFileAbosluteDir(args.originalLibraryFile._id);
|
|
|
|
if (deleteParentFolderIfEmpty) {
|
|
args.jobLog(`Checking if folder ${fileDir} is empty`);
|
|
const files = await fs.readdir(fileDir);
|
|
|
|
if (files.length === 0) {
|
|
args.jobLog(`Deleting empty folder ${fileDir}`);
|
|
await fs.rmdir(fileDir);
|
|
} else {
|
|
args.jobLog(`Folder ${fileDir} is not empty, skipping delete`);
|
|
}
|
|
} else {
|
|
args.jobLog(`Skipping delete of parent folder ${fileDir}`);
|
|
}
|
|
|
|
return {
|
|
outputFileObj: args.inputFileObj,
|
|
outputNumber: 1,
|
|
variables: args.variables,
|
|
};
|
|
};
|
|
export {
|
|
details,
|
|
plugin,
|
|
};
|