mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 01:24:05 -08:00
0448feec56
* ⚡ Initial setup
* 👕 Update `.eslintignore`
* 👕 Autofix node-param-default-missing (#3173)
* 🔥 Remove duplicate key
* 👕 Add exceptions
* 📦 Update package-lock.json
* 👕 Apply `node-class-description-inputs-wrong-trigger-node` (#3176)
* 👕 Apply `node-class-description-inputs-wrong-regular-node` (#3177)
* 👕 Apply `node-class-description-outputs-wrong` (#3178)
* 👕 Apply `node-execute-block-double-assertion-for-items` (#3179)
* 👕 Apply `node-param-default-wrong-for-collection` (#3180)
* 👕 Apply node-param-default-wrong-for-boolean (#3181)
* Autofixed default missing
* Autofixed booleans, worked well
* ⚡ Fix params
* ⏪ Undo exempted autofixes
* 📦 Update package-lock.json
* 👕 Apply node-class-description-missing-subtitle (#3182)
* ⚡ Fix missing comma
* 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3184)
* 👕 Add exception for `node-class-description-missing-subtitle`
* 👕 Apply `node-param-default-wrong-for-multi-options` (#3185)
* 👕 Apply `node-param-collection-type-unsorted-items` (#3186)
* Missing coma
* 👕 Apply `node-param-default-wrong-for-simplify` (#3187)
* 👕 Apply `node-param-description-comma-separated-hyphen` (#3190)
* 👕 Apply `node-param-description-empty-string` (#3189)
* 👕 Apply `node-param-description-excess-inner-whitespace` (#3191)
* Rule looks good
* Add whitespace rule in eslint config
* :zao: fix
* 👕 Apply `node-param-description-identical-to-display-name` (#3193)
* 👕 Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195)
* ⏪ Revert ":zao: fix"
This reverts commit ef8a76f3df
.
* 👕 Apply `node-param-description-missing-for-simplify` (#3196)
* 👕 Apply `node-param-description-missing-final-period` (#3194)
* Rule working as intended
* Add rule to eslint
* 👕 Apply node-param-description-missing-for-return-all (#3197)
* ⚡ Restore `lintfix` command
Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: agobrech <ael.gobrecht@gmail.com>
Co-authored-by: Michael Kret <michael.k@radency.com>
222 lines
4.9 KiB
TypeScript
222 lines
4.9 KiB
TypeScript
import { ITriggerFunctions } from 'n8n-core';
|
||
import {
|
||
IDataObject,
|
||
INodeType,
|
||
INodeTypeDescription,
|
||
ITriggerResponse,
|
||
} from 'n8n-workflow';
|
||
|
||
import { watch } from 'chokidar';
|
||
|
||
|
||
export class LocalFileTrigger implements INodeType {
|
||
description: INodeTypeDescription = {
|
||
displayName: 'Local File Trigger',
|
||
name: 'localFileTrigger',
|
||
icon: 'fa:folder-open',
|
||
group: ['trigger'],
|
||
version: 1,
|
||
subtitle: '=Path: {{$parameter["path"]}}',
|
||
description: 'Triggers a workflow on file system changes',
|
||
eventTriggerDescription: '',
|
||
defaults: {
|
||
name: 'Local File Trigger',
|
||
color: '#404040',
|
||
},
|
||
inputs: [],
|
||
outputs: ['main'],
|
||
properties: [
|
||
{
|
||
displayName: 'Trigger on',
|
||
name: 'triggerOn',
|
||
type: 'options',
|
||
options: [
|
||
{
|
||
name: 'Changes to a Specific File',
|
||
value: 'file',
|
||
},
|
||
{
|
||
name: 'Changes Involving a Specific Folder',
|
||
value: 'folder',
|
||
},
|
||
],
|
||
required: true,
|
||
default: '',
|
||
},
|
||
{
|
||
displayName: 'File to Watch',
|
||
name: 'path',
|
||
type: 'string',
|
||
displayOptions: {
|
||
show: {
|
||
triggerOn: [
|
||
'file',
|
||
],
|
||
},
|
||
},
|
||
default: '',
|
||
placeholder: '/data/invoices/1.pdf',
|
||
},
|
||
{
|
||
displayName: 'Folder to Watch',
|
||
name: 'path',
|
||
type: 'string',
|
||
displayOptions: {
|
||
show: {
|
||
triggerOn: [
|
||
'folder',
|
||
],
|
||
},
|
||
},
|
||
default: '',
|
||
placeholder: '/data/invoices',
|
||
},
|
||
{
|
||
displayName: 'Watch for',
|
||
name: 'events',
|
||
type: 'multiOptions',
|
||
displayOptions: {
|
||
show: {
|
||
triggerOn: [
|
||
'folder',
|
||
],
|
||
},
|
||
},
|
||
options: [
|
||
{
|
||
name: 'File Added',
|
||
value: 'add',
|
||
description: 'Triggers whenever a new file was added',
|
||
},
|
||
{
|
||
name: 'File Changed',
|
||
value: 'change',
|
||
description: 'Triggers whenever a file was changed',
|
||
},
|
||
{
|
||
name: 'File Deleted',
|
||
value: 'unlink',
|
||
description: 'Triggers whenever a file was deleted',
|
||
},
|
||
{
|
||
name: 'Folder Added',
|
||
value: 'addDir',
|
||
description: 'Triggers whenever a new folder was added',
|
||
},
|
||
{
|
||
name: 'Folder Deleted',
|
||
value: 'unlinkDir',
|
||
description: 'Triggers whenever a folder was deleted',
|
||
},
|
||
],
|
||
required: true,
|
||
default: [],
|
||
description: 'The events to listen to',
|
||
},
|
||
|
||
{
|
||
displayName: 'Options',
|
||
name: 'options',
|
||
type: 'collection',
|
||
placeholder: 'Add Option',
|
||
default: {},
|
||
options: [
|
||
{
|
||
displayName: 'Include Linked Files/Folders',
|
||
name: 'followSymlinks',
|
||
type: 'boolean',
|
||
default: true,
|
||
description: 'When activated, linked files/folders will also be watched (this includes symlinks, aliases on MacOS and shortcuts on Windows). Otherwise only the links themselves will be monitored).',
|
||
},
|
||
{
|
||
displayName: 'Ignore',
|
||
name: 'ignored',
|
||
type: 'string',
|
||
default: '',
|
||
placeholder: '**/*.txt',
|
||
description: 'Files or paths to ignore. The whole path is tested, not just the filename. Supports <a href="https://github.com/micromatch/anymatch">Anymatch</a>- syntax.',
|
||
},
|
||
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
|
||
{
|
||
displayName: 'Max Folder Depth',
|
||
name: 'depth',
|
||
type: 'options',
|
||
options: [
|
||
{
|
||
name: 'Unlimited',
|
||
value: -1,
|
||
},
|
||
{
|
||
name: '5 Levels Down',
|
||
value: 5,
|
||
},
|
||
{
|
||
name: '4 Levels Down',
|
||
value: 4,
|
||
},
|
||
{
|
||
name: '3 Levels Down',
|
||
value: 3,
|
||
},
|
||
{
|
||
name: '2 Levels Down',
|
||
value: 2,
|
||
},
|
||
{
|
||
name: '1 Levels Down',
|
||
value: 1,
|
||
},
|
||
{
|
||
name: 'Top Folder Only',
|
||
value: 0,
|
||
},
|
||
],
|
||
default: -1,
|
||
description: 'How deep into the folder structure to watch for changes',
|
||
},
|
||
],
|
||
},
|
||
|
||
],
|
||
};
|
||
|
||
|
||
async trigger(this: ITriggerFunctions): Promise<ITriggerResponse> {
|
||
const triggerOn = this.getNodeParameter('triggerOn') as string;
|
||
const path = this.getNodeParameter('path') as string;
|
||
const options = this.getNodeParameter('options', {}) as IDataObject;
|
||
|
||
let events: string[];
|
||
if (triggerOn === 'file') {
|
||
events = [ 'change' ];
|
||
} else {
|
||
events = this.getNodeParameter('events', []) as string[];
|
||
}
|
||
|
||
const watcher = watch(path, {
|
||
ignored: options.ignored,
|
||
persistent: true,
|
||
ignoreInitial: true,
|
||
followSymlinks: options.followSymlinks === undefined ? true : options.followSymlinks as boolean,
|
||
depth: [-1, undefined].includes(options.depth as number) ? undefined : options.depth as number,
|
||
});
|
||
|
||
const executeTrigger = (event: string, path: string) => {
|
||
this.emit([this.helpers.returnJsonArray([{ event,path }])]);
|
||
};
|
||
|
||
for (const eventName of events) {
|
||
watcher.on(eventName, path => executeTrigger(eventName, path));
|
||
}
|
||
|
||
function closeFunction() {
|
||
return watcher.close();
|
||
}
|
||
|
||
return {
|
||
closeFunction,
|
||
};
|
||
|
||
}
|
||
}
|