From 316c79cb883695c9eaef9cba2ddf77070bcb13e3 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Thu, 6 Mar 2025 12:12:49 +0100 Subject: [PATCH] Add text for --help command in CLI Close #12 --- main.go | 1 + src/cli/ShowHelpText.go | 32 ++++++++++++++++++++++++++++++++ src/cli/ShowVersion.go | 11 +++++++++++ src/cli/cli.go | 5 ----- 4 files changed, 44 insertions(+), 5 deletions(-) create mode 100644 src/cli/ShowHelpText.go create mode 100644 src/cli/ShowVersion.go diff --git a/main.go b/main.go index 09e073f..0cfb5ae 100644 --- a/main.go +++ b/main.go @@ -11,6 +11,7 @@ import ( func main() { if slices.Contains(os.Args, "--help") { + cli.ShowHelpText(); } else if slices.Contains(os.Args, "--version") { cli.ShowVersion(); } else if slices.Contains(os.Args, "--check-update") { diff --git a/src/cli/ShowHelpText.go b/src/cli/ShowHelpText.go new file mode 100644 index 0000000..8090bd5 --- /dev/null +++ b/src/cli/ShowHelpText.go @@ -0,0 +1,32 @@ +package cli + +import ( + "fmt" +) + +func ShowHelpText() { + + fmt.Println(`museum-digital uploader + +A tool to manage the configuration of imports to museum-digital and simplify the upload process. + +Commands: + +(no command), --webui Runs a small dashboard and opens a browser to view it. + Use this for using the app without the command line. +--show-config Show current config in JSON format. +--run-manual-setup Opens a CLI-based settings dialogue. +--set-additional-setting Allows setting optional, parser-specific settings. +--upload Upload data for import. +--webdav-remote-list-toplevel Show folder contents of the WebDAV share used for imports. +--webdav-remote-list-metadata-dir Show folder contents of the WebDAV share used for imports (metadata subdirectory). +--webdav-remote-list-media-dir Show folder contents of the WebDAV share used for imports (media subdirectory). +--local-list-metadata Lists metadata files currently present in the upload directory. +--local-list-media Lists media files currently present in the upload directory. +--help Print help message. +--check-update Check for updates to this application. + +Links: +Source code: https://gitea.armuli.eu/museum-digital/museum-digital-webdav-uploader`) + +} diff --git a/src/cli/ShowVersion.go b/src/cli/ShowVersion.go new file mode 100644 index 0000000..7c432cf --- /dev/null +++ b/src/cli/ShowVersion.go @@ -0,0 +1,11 @@ +package cli + +import ( + "fmt" + "gitea.armuli.eu/museum-digital/museum-digital-webdav-uploader/src/meta" +) + +// Prints current version. +func ShowVersion() { + fmt.Println(meta.GetVersion()) +} diff --git a/src/cli/cli.go b/src/cli/cli.go index 9ea379b..c4c5ec2 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -372,11 +372,6 @@ func ListLocalMedia() { } -// Prints current version. -func ShowVersion() { - fmt.Println(meta.GetVersion()) -} - // Prints, if there is a current version. func CheckVersionIsUpToDate() {