diff options
author | Koni Marti <koni.marti@gmail.com> | 2023-11-24 16:03:08 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-12-30 15:42:09 +0100 |
commit | 8671d9dc483acf3c69022a8f2915166b83186559 (patch) | |
tree | 0a45e5f9b4f5335d150aba110a4a7cf7717ef5b1 /commands/patch | |
parent | d49ed00df00b9d745a385a7b3f67832ce147380d (diff) | |
download | aerc-8671d9dc483acf3c69022a8f2915166b83186559.tar.gz |
patch/delete: add delete sub-cmd
Implement the :patch delete command. Remove the project data from the
permanent store. If no argument is provided, the current project will be
deleted.
Signed-off-by: Koni Marti <koni.marti@gmail.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/patch')
-rw-r--r-- | commands/patch/delete.go | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/commands/patch/delete.go b/commands/patch/delete.go new file mode 100644 index 00000000..2e51ab7c --- /dev/null +++ b/commands/patch/delete.go @@ -0,0 +1,54 @@ +package patch + +import ( + "fmt" + "time" + + "git.sr.ht/~rjarry/aerc/app" + "git.sr.ht/~rjarry/aerc/commands" + "git.sr.ht/~rjarry/aerc/lib/pama" + "git.sr.ht/~rjarry/aerc/log" +) + +type Delete struct { + Tag string `opt:"tag" required:"false" complete:"Complete"` +} + +func init() { + register(Delete{}) +} + +func (Delete) Aliases() []string { + return []string{"delete"} +} + +func (*Delete) Complete(arg string) []string { + names, err := pama.New().Names() + if err != nil { + log.Errorf("failed to get completion: %v", err) + return nil + } + return commands.FilterList(names, arg, nil) +} + +func (d Delete) Execute(args []string) error { + m := pama.New() + + name := d.Tag + if name == "" { + p, err := m.CurrentProject() + if err != nil { + return err + } + name = p.Name + } + + err := m.Delete(name) + if err != nil { + return err + } + + app.PushStatus(fmt.Sprintf("Project '%s' deleted.", name), + 10*time.Second) + return nil +} |