Files
FileFlowsPlugins/BasicNodes/File/VariableExists.cs
2024-12-06 08:54:57 +13:00

52 lines
1.4 KiB
C#

using FileFlows.Plugin;
using FileFlows.Plugin.Attributes;
namespace FileFlows.BasicNodes.File;
/// <summary>
/// Checks if a file exists
/// </summary>
public class VariableExists: Node
{
/// <inheritdoc />
public override int Inputs => 1;
/// <inheritdoc />
public override int Outputs => 2;
/// <inheritdoc />
public override FlowElementType Type => FlowElementType.Logic;
/// <inheritdoc />
public override string Icon => "fas fa-question";
/// <inheritdoc />
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/variable-exists";
/// <inheritdoc />
public override bool FailureNode => true;
/// <summary>
/// Gets or sets the name of the variable to check
/// </summary>
[Text(1)]
public string Variable { get; set; }
/// <inheritdoc />
public override int Execute(NodeParameters args)
{
string variable = Variable;
if(string.IsNullOrWhiteSpace(variable))
{
args.FailureReason = "Variable not set";
args.Logger?.ELog(args.FailureReason);
return -1;
}
var value = VariablesHelper.ResolveVariable(args.Variables, variable);
if (value == null)
{
args.Logger?.ILog($"Variable '{variable}' does not exist");
return 2;
}
args.Logger?.ILog($"Variable '{variable}' exists");
return 1;
}
}