about summary refs log blame commit diff stats
path: root/commands/compose/detach.go
blob: b48159d0c02977a275f679ebeca7c382464f1df9 (plain) (tree)
1
2
3
4
5
6
7



               
                 

                                          







                          
                                  


                                 
                                                                    
                                                             


                                        
                                                                


                                                             

                                                  













                                                                              
                                                          


                  
package compose

import (
	"fmt"
	"strings"

	"git.sr.ht/~sircmpwn/aerc/widgets"
)

type Detach struct{}

func init() {
	register(Detach{})
}

func (Detach) Aliases() []string {
	return []string{"detach"}
}

func (Detach) Complete(aerc *widgets.Aerc, args []string) []string {
	composer, _ := aerc.SelectedTab().(*widgets.Composer)
	return composer.GetAttachments()
}

func (Detach) Execute(aerc *widgets.Aerc, args []string) error {
	var path string
	composer, _ := aerc.SelectedTab().(*widgets.Composer)

	if len(args) > 1 {
		path = strings.Join(args[1:], " ")
	} else {
		// if no attachment is specified, delete the first in the list
		atts := composer.GetAttachments()
		if len(atts) > 0 {
			path = atts[0]
		} else {
			return fmt.Errorf("No attachments to delete")
		}
	}

	if err := composer.DeleteAttachment(path); err != nil {
		return err
	}

	aerc.PushSuccess(fmt.Sprintf("Detached %s", path))

	return nil
}