From 5213045a336d1526853433e900e3fadc6c1f084c Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Fri, 7 Mar 2025 08:45:47 -0800 Subject: [PATCH] Add confirmation prompt to source deactivation --- cmd/deactivate.go | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/cmd/deactivate.go b/cmd/deactivate.go index 11294ef..6cef56a 100644 --- a/cmd/deactivate.go +++ b/cmd/deactivate.go @@ -3,6 +3,7 @@ package cmd import ( "fmt" "log" + "os" "github.com/Jaculabilis/intake/core" _ "github.com/mattn/go-sqlite3" @@ -17,7 +18,7 @@ var deactivateCmd = &cobra.Command{ Deactivation is idempotent.`, Run: func(cmd *cobra.Command, args []string) { - deactivate(stringArg(cmd, "source"), stringArg(cmd, "item")) + deactivate(stringArg(cmd, "source"), stringArg(cmd, "item"), boolArg(cmd, "yes")) }, DisableFlagsInUseLine: true, } @@ -28,21 +29,37 @@ func init() { deactivateCmd.Flags().StringP("source", "s", "", "Source of the item") deactivateCmd.MarkFlagRequired("source") deactivateCmd.Flags().StringP("item", "i", "", "Item id") + deactivateCmd.Flags().BoolP("yes", "y", false, "Do not ask for confirmation") } -func deactivate(source string, item string) { +func deactivate(source string, item string, yes bool) { if source == "" { log.Fatal("error: --source is empty") } db := openAndMigrateDb() + exists, err := core.SourceExists(db, source) + if err != nil { + log.Fatalf("error: failed to check for source: %v", err) + } else if !exists { + log.Fatalf("error: no such source %s", source) + } + if item == "" { + if !yes { + var response string + fmt.Printf("Are you sure you want to deactivate all items in source %s? (y/N): ", source) + _, err := fmt.Scanln(&response) + if err != nil || (response != "y" && response != "Y") { + os.Exit(1) + } + } log.Fatal("source deactivation is not implemented") } else { active, err := core.DeactivateItem(db, source, item) if err != nil { - log.Fatalf("Failed to deactivate item: %s", err) + log.Fatalf("error: failed to deactivate item: %s", err) } if active { fmt.Printf("Deactivated %s/%s\n", source, item)