mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
- add namespace - move commands to dedicated file - collapse linux shells to single process info
98 lines
3.2 KiB
C#
98 lines
3.2 KiB
C#
using System.ComponentModel;
|
|
|
|
using Spectre.Console;
|
|
using Spectre.Console.Cli;
|
|
|
|
namespace ScriptLauncher;
|
|
|
|
internal sealed class RootCommand : AsyncCommand<RootCommandSettings>
|
|
{
|
|
private const int Failure = 1;
|
|
private const int Success = 0;
|
|
|
|
public override async Task<int> ExecuteAsync(
|
|
CommandContext context,
|
|
RootCommandSettings settings
|
|
)
|
|
{
|
|
if (!Directory.Exists(settings.Directory))
|
|
{
|
|
AnsiConsole.Markup($"[red]The directory '{settings.Directory}' does not exist.[/]");
|
|
return Failure;
|
|
}
|
|
|
|
FileInfo[] files;
|
|
var finder = new ScriptFinder(settings.Extensions, settings.Directory, settings.Depth);
|
|
|
|
if (settings.Group)
|
|
{
|
|
var dict = finder.GetScriptsByDirectory();
|
|
|
|
if (dict.Count == 0)
|
|
{
|
|
AnsiConsole.Markup(
|
|
$"[red]No scripts script files found in '{finder.RootDirectory}' with extensions '{string.Join(", ", finder.Extensions)}'[/]"
|
|
);
|
|
return Failure;
|
|
}
|
|
|
|
var dirPrompt = PromptConstructor.GetDirectoryPrompt(dict.Keys.ToArray());
|
|
var directoryInfo = AnsiConsole.Prompt(dirPrompt);
|
|
files = dict[directoryInfo];
|
|
}
|
|
else
|
|
{
|
|
files = finder.GetScripts();
|
|
}
|
|
|
|
if (files.Length == 0)
|
|
{
|
|
AnsiConsole.Markup(
|
|
$"[red]No scripts script files found in '{finder.RootDirectory}' with extensions '{string.Join(", ", finder.Extensions)}'[/]"
|
|
);
|
|
return Failure;
|
|
}
|
|
|
|
var prompt = PromptConstructor.GetScriptPrompt(files, settings.Brief);
|
|
var scripts = AnsiConsole.Prompt(prompt);
|
|
|
|
try
|
|
{
|
|
await ScriptExecutor.ExecAsync(scripts, settings.Elevated);
|
|
}
|
|
catch (Exception ex) when (ex is Win32Exception or InvalidOperationException or PlatformNotSupportedException)
|
|
{
|
|
AnsiConsole.Markup($"[red]{ex.Message}[/]");
|
|
return Failure;
|
|
}
|
|
|
|
return Success;
|
|
}
|
|
}
|
|
|
|
internal class RootCommandSettings : CommandSettings
|
|
{
|
|
[Description("Comma separated list of script extensions")]
|
|
[CommandOption("-x|--extensions")]
|
|
public string? Extensions { get; init; }
|
|
|
|
[Description("Search depth")]
|
|
[CommandOption("-d|--depth")]
|
|
public int Depth { get; init; } = 1;
|
|
|
|
[Description("Run with elevated privileges")]
|
|
[CommandOption("-e|--elevated")]
|
|
public bool Elevated { get; init; } = false;
|
|
|
|
[Description("Group scripts by folder")]
|
|
[CommandOption("-g|--group")]
|
|
public bool Group { get; init; } = false;
|
|
|
|
[Description("Show brief information")]
|
|
[CommandOption("-b|--brief")]
|
|
public bool Brief { get; init; } = false;
|
|
|
|
[Description("Starting directory (Default: .)")]
|
|
[CommandArgument(0, "<path>")]
|
|
public string Directory { get; init; } = ".";
|
|
}
|