script-launcher/src/Program.cs

59 lines
2 KiB
C#
Raw Normal View History

2022-06-10 16:30:57 +02:00
using Cocona;
2022-03-09 22:42:40 +01:00
using Spectre.Console;
var app = CoconaLiteApp.Create();
app.AddCommand(RootCommand);
app.Run();
2022-03-11 18:04:07 +01:00
static async Task RootCommand(
2022-05-24 20:26:13 +02:00
[Option("extensions", new[] { 'x' }, Description = "Comma separated list of script extensions")] string? extensions,
[Option("depth", new[] { 'd' }, Description = "Search depth")] int depth = 1,
[Option("elevated", new[] { 'e' }, Description = "Run with elevated privileges")] bool elevated = false,
[Option("group", new[] { 'g' }, Description = "Group scripts by folder")] bool group = false,
[Option("brief", new[] { 'b' }, Description = "Show brief information")] bool brief = false,
2022-05-24 20:26:13 +02:00
[Argument(Name = "Directory", Description = "Starting directory")] string directory = ".")
2022-03-09 22:42:40 +01:00
{
if (!Directory.Exists(directory))
{
2022-03-11 16:32:53 +01:00
AnsiConsole.Markup($"[red]The directory '{directory}' does not exist.[/]");
2022-03-16 12:27:33 +01:00
Environment.ExitCode = 1;
2022-03-11 16:32:53 +01:00
return;
2022-03-09 22:42:40 +01:00
}
2022-03-16 12:27:33 +01:00
FileInfo[] files;
var finder = new ScriptFinder(extensions, directory, depth);
2022-03-14 20:45:01 +01:00
2022-05-24 20:26:13 +02:00
if (group)
2022-03-14 20:45:01 +01:00
{
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)}'[/]");
2022-03-16 12:27:33 +01:00
Environment.ExitCode = 1;
return;
}
var dirPrompt = PromptConstructor.GetDirectoryPrompt(dict.Keys.ToArray());
2022-05-24 18:46:04 +02:00
var directoryInfo = AnsiConsole.Prompt(dirPrompt);
2022-03-14 20:45:01 +01:00
files = dict[directoryInfo];
}
else
{
files = finder.GetScripts();
}
2022-03-09 22:42:40 +01:00
if (files.Length == 0)
{
AnsiConsole.Markup($"[red]No scripts script files found in '{finder.RootDirectory}' with extensions '{string.Join(", ", finder.Extensions)}'[/]");
2022-03-16 12:27:33 +01:00
Environment.ExitCode = 1;
2022-03-11 16:32:53 +01:00
return;
2022-03-09 22:42:40 +01:00
}
var prompt = PromptConstructor.GetScriptPrompt(files, brief);
2022-05-24 18:46:04 +02:00
var scripts = AnsiConsole.Prompt(prompt);
2022-03-09 22:42:40 +01:00
2022-05-24 18:46:04 +02:00
await ScriptExecutor.ExecAsync(scripts, elevated);
}