feat(secrets-cli): CRUD flows for the interactive console

This commit is contained in:
Joseph Doherty
2026-07-19 09:37:46 -04:00
parent 138e2c1006
commit fe3ea684f5
5 changed files with 456 additions and 0 deletions
@@ -0,0 +1,68 @@
using Spectre.Console;
using ZB.MOM.WW.Secrets.Abstractions;
namespace ZB.MOM.WW.Secrets.Cli.Interactive.Flows;
/// <summary>
/// Creates or rotates a secret: prompts for a validated name, confirms before overwriting an existing
/// live row, reads the value through a masked prompt, and seals it under a fresh per-secret DEK via the
/// session cipher. The value is never echoed and the confirmation line carries the name only. Requires a
/// KEK-capable session (the shell upgrades a degraded session before dispatch).
/// </summary>
public sealed class SetSecretFlow : IInteractiveFlow
{
/// <inheritdoc />
public string Title => "Set / rotate a secret";
/// <inheritdoc />
public bool RequiresKek => true;
/// <inheritdoc />
public async Task RunAsync(IAnsiConsole console, SecretsSession session, CancellationToken ct)
{
ArgumentNullException.ThrowIfNull(console);
ArgumentNullException.ThrowIfNull(session);
var name = new SecretName(console.Prompt(
new TextPrompt<string>("Secret [green]name[/]:").Validate(NameValidation)));
StoredSecret? existing = await session.Store.GetAsync(name, ct).ConfigureAwait(false);
if (existing is { IsDeleted: false } &&
!console.Prompt(new ConfirmationPrompt($"'{name.Value}' exists — overwrite in place?") { DefaultValue = false }))
{
console.MarkupLine("[yellow]Left unchanged.[/]");
return;
}
string value = console.Prompt(new TextPrompt<string>("Secret [green]value[/]:").Secret());
SecretContentType contentType = console.Prompt(
new SelectionPrompt<SecretContentType>().Title("Content type").AddChoices(Enum.GetValues<SecretContentType>()));
string description = console.Prompt(
new TextPrompt<string>("Description [grey](optional)[/]:").AllowEmpty());
string actor = string.IsNullOrWhiteSpace(Environment.UserName) ? "cli" : Environment.UserName;
StoredSecret row = session.Cipher!.Encrypt(name, value, contentType) with
{
Description = string.IsNullOrWhiteSpace(description) ? null : description,
CreatedBy = actor,
UpdatedBy = actor,
};
await session.Store.UpsertAsync(row, ct).ConfigureAwait(false);
console.MarkupLineInterpolated($"[green]Sealed '{name.Value}'.[/]");
}
// Re-prompts on an invalid name by surfacing the SecretName constructor's own diagnostic.
private static ValidationResult NameValidation(string raw)
{
try
{
_ = new SecretName(raw);
return ValidationResult.Success();
}
catch (ArgumentException ex)
{
return ValidationResult.Error(ex.Message);
}
}
}