aboutsummaryrefslogblamecommitdiffstats
path: root/commands/compose/sign.go
blob: ae7c3417b48195547ed76d897fcc01d1dc27af04 (plain) (tree)
1
2
3
4
5
6
7





                
                                    











                                
                                              


                  
                                          



                                                
                                                               
 



                                                 








                                                          
                                                  


                  
package compose

import (
	"errors"
	"time"

	"git.sr.ht/~rjarry/aerc/app"
)

type Sign struct{}

func init() {
	register(Sign{})
}

func (Sign) Aliases() []string {
	return []string{"sign"}
}

func (Sign) Complete(args []string) []string {
	return nil
}

func (Sign) Execute(args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: sign")
	}

	composer, _ := app.SelectedTabContent().(*app.Composer)

	err := composer.SetSign(!composer.Sign())
	if err != nil {
		return err
	}

	var statusline string

	if composer.Sign() {
		statusline = "Message will be signed."
	} else {
		statusline = "Message will not be signed."
	}

	app.PushStatus(statusline, 10*time.Second)

	return nil
}