disko/disko2

77 lines
2.2 KiB
Text
Raw Normal View History

#!/usr/bin/env nu
use lib [eval-disko-file eval-flake exit-on-error print-info print-help generate-config]
def modes [] { ["destroy", "format", "mount", "format,mount", "destroy,format,mount", "generate"] }
2024-10-25 08:32:59 +00:00
def with-context [context: string] {
$in | insert context $context
}
export def run [
args: record
]: [
nothing -> record<success: bool, context: string, value: any>
nothing -> record<success: bool, context: string, messages: list<record<code: string>>>
nothing -> record<success: bool, context: string, messages: list<record<code: string, details: record<any>>>>
] {
if not ($args.mode in (modes)) {
return {
success: false,
messages: [ { code: ERR_INVALID_MODE, details: { mode: $args.mode, valid_modes: (modes) } } ]
context: "validate mode"
}
2024-10-25 08:32:59 +00:00
}
match $args.mode {
"generate" => (mode-generate $args)
_ => (mode-format $args)
}
}
export def mode-generate [args: record] {
generate-config | with-context "generate config"
}
export def mode-format [args: record] {
if not ($args.flake? != null xor $args.disko_file? != null) {
return {
success: false,
messages: [
{
code: (
if ($args.flake? == null) { 'ERR_MISSING_ARGUMENTS' } else { 'ERR_TOO_MANY_ARGUMENTS' }
)
}
],
context: "validate arguments"
}
}
let eval_result = if $args.disko_file? != null {
$args.disko_file | eval-disko-file | with-context "evaluate config"
} else {
$args.flake | eval-flake | with-context "evaluate flake"
}
# TODO: Continue implementation here
$eval_result
}
export def main [
mode: string@modes, # Mode to use. Allowed values are 'destroy', 'format', 'mount', 'format,mount', 'destroy,format,mount', 'generate'
disko_file?: path, # File to read the disko configuration from. Can be a .nix file or a .json file
--flake (-f): string # Flake URI to search for the disko configuration
]: nothing -> nothing {
run {
mode: $mode,
disko_file: $disko_file,
flake: $flake
}
| exit-on-error
| to json | print-info
}