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.
Tdarr_Plugins/FlowPlugins/CommunityFlowPlugins/file/checkFileNameIncludes/1.0.0/index.js

65 lines
2.2 KiB

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.plugin = exports.details = void 0;
var fileUtils_1 = require("../../../../FlowHelpers/1.0.0/fileUtils");
/* eslint no-plusplus: ["error", { "allowForLoopAfterthoughts": true }] */
var details = function () { return ({
name: 'Check File Name Includes',
description: 'Check if a file name includes specific terms. Only needs to match one term',
style: {
borderColor: 'orange',
},
tags: 'video',
isStartPlugin: false,
pType: '',
requiresVersion: '2.11.01',
sidebarPosition: -1,
icon: 'faQuestion',
inputs: [
{
label: 'Terms',
name: 'terms',
type: 'string',
// eslint-disable-next-line no-template-curly-in-string
defaultValue: '_720p,_1080p',
inputUI: {
type: 'text',
},
// eslint-disable-next-line no-template-curly-in-string
tooltip: 'Specify terms to check for in file name using comma seperated list e.g. _720p,_1080p',
},
],
outputs: [
{
number: 1,
tooltip: 'File name contains terms',
},
{
number: 2,
tooltip: 'File name does not contains terms',
},
],
}); };
exports.details = details;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
var plugin = function (args) {
var lib = require('../../../../../methods/lib')();
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-param-reassign
args.inputs = lib.loadDefaultValues(args.inputs, details);
var fileName = "".concat((0, fileUtils_1.getFileName)(args.inputFileObj._id), ".").concat((0, fileUtils_1.getContainer)(args.inputFileObj._id));
var terms = String(args.inputs.terms).trim().split(',');
var containsTerms = false;
for (var i = 0; i < terms.length; i++) {
if (fileName.includes(terms[i])) {
containsTerms = true;
break;
}
}
return {
outputFileObj: args.inputFileObj,
outputNumber: containsTerms ? 1 : 2,
variables: args.variables,
};
};
exports.plugin = plugin;