using FileUtils; using KubernetesWorkflow; using Logging; namespace Core { public interface IPluginTools : IWorkflowTool, ILogTool, IHttpFactoryTool, IFileTool { void Decommission(bool deleteKubernetesResources, bool deleteTrackedFiles); } public interface IWorkflowTool { IStartupWorkflow CreateWorkflow(string? namespaceOverride = null); } public interface ILogTool { ILog GetLog(); } public interface IHttpFactoryTool { IHttp CreateHttp(Action onClientCreated); IHttp CreateHttp(Action onClientCreated, ITimeSet timeSet); IHttp CreateHttp(); } public interface IFileTool { IFileManager GetFileManager(); } internal class PluginTools : IPluginTools { private readonly ITimeSet timeSet; private readonly WorkflowCreator workflowCreator; private readonly IFileManager fileManager; private readonly LogPrefixer log; internal PluginTools(ILog log, WorkflowCreator workflowCreator, string fileManagerRootFolder, ITimeSet timeSet) { this.log = new LogPrefixer(log); this.workflowCreator = workflowCreator; this.timeSet = timeSet; fileManager = new FileManager(log, fileManagerRootFolder); } public void ApplyLogPrefix(string prefix) { log.Prefix = prefix; } public IHttp CreateHttp(Action onClientCreated) { return CreateHttp(onClientCreated, timeSet); } public IHttp CreateHttp(Action onClientCreated, ITimeSet ts) { return new Http(log, ts, onClientCreated); } public IHttp CreateHttp() { return new Http(log, timeSet); } public IStartupWorkflow CreateWorkflow(string? namespaceOverride = null) { return workflowCreator.CreateWorkflow(namespaceOverride); } public void Decommission(bool deleteKubernetesResources, bool deleteTrackedFiles) { if (deleteKubernetesResources) CreateWorkflow().DeleteNamespace(); if (deleteTrackedFiles) fileManager.DeleteAllFiles(); } public IFileManager GetFileManager() { return fileManager; } public ILog GetLog() { return log; } } }