public ICommandResult Execute(CommandContext context) { IOperationSource source = context.GetOperationSource(stage, stashes); if (source.IsNullOrEmpty()) { return(new TextResult("The stage is empty.")); } SearchContext searchContext = new SearchContext { SearchTerm = context.GetParameterValue(ApplyParameters.SEARCH_TERM), Items = source.GetPaths(), SourceLobby = source.GetLobby(), IsRegex = context.HasOption(ApplyOptions.REGEX), IsCaseSensitive = context.HasOption(ApplyOptions.CASE_SENSITIVE) }; if (string.IsNullOrEmpty(searchContext.SearchTerm)) { return(new TextResult("Empty search term.")); } return(Search(searchContext)); }
public ICommandResult Execute(CommandContext context) { IOperationSource source = context.GetOperationSource(stage, stashes); if (source.IsNullOrEmpty()) { return(new TextResult("The stage is empty.")); } return(Delete(new DeleteContext { Items = source.GetPaths(), SourceLobby = source.GetLobby(), Preview = context.HasOption(ApplyOptions.PREVIEW) })); }
public ICommandResult Execute(CommandContext context) { IOperationSource source = context.GetOperationSource(stage, stashes); if (source.IsNullOrEmpty()) { return(new TextResult("The stage is empty.")); } return(Zip(new ZipContext { Items = source.GetPaths(), DestinationZipFile = context.GetTargetFile(), SourceLobby = source.GetLobby(), Flat = context.HasOption(ApplyOptions.FLATTEN) || !source.HasLobby(), Override = context.HasOption(ApplyOptions.OVERWRITE), Add = context.HasOption(ApplyOptions.ADD) })); }
public ICommandResult Execute(CommandContext context) { IOperationSource source = context.GetOperationSource(stage, stashes); if (source.IsNullOrEmpty()) { return(new TextResult("The stage is empty.")); } CopyContext copyContext = new CopyContext { Items = source.GetPaths(), Destination = context.GetTargetDirectory(), SourceLobby = source.GetLobby(), Flat = context.HasOption(ApplyOptions.FLATTEN) || !source.HasLobby(), Overwrite = context.HasOption(ApplyOptions.OVERWRITE), Preview = context.HasOption(ApplyOptions.PREVIEW) }; return(Copy(copyContext)); }