aboutsummaryrefslogblamecommitdiffstats
path: root/commands/account/connection.go
blob: 7ea1ef0b7665c3616150d5f8eedfa3fcd2a40d05 (plain) (tree)
1
2
3
4
5
6
7
8




                
                                    
                                         
                                          





                                             


                                       



                                                             
                                                     
                                    





                                                
                                                  
                                     


                                                        
                                             
                                                            
         
                                 
                                                              
                                                                         
                
                                                                 
                                                                            


                  
package account

import (
	"errors"

	"git.sr.ht/~rjarry/aerc/app"
	"git.sr.ht/~rjarry/aerc/commands"
	"git.sr.ht/~rjarry/aerc/lib/state"
	"git.sr.ht/~rjarry/aerc/worker/types"
)

type Connection struct{}

func init() {
	commands.Register(Connection{})
}

func (Connection) Description() string {
	return "Disconnect or reconnect the current account."
}

func (Connection) Context() commands.CommandContext {
	return commands.MESSAGE_LIST
}

func (Connection) Aliases() []string {
	return []string{"connect", "disconnect"}
}

func (c Connection) Execute(args []string) error {
	acct := app.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	cb := func(msg types.WorkerMessage) {
		acct.SetStatus(state.ConnectionActivity(""))
	}
	if args[0] == "connect" {
		acct.Worker().PostAction(&types.Connect{}, cb)
		acct.SetStatus(state.ConnectionActivity("Connecting..."))
	} else {
		acct.Worker().PostAction(&types.Disconnect{}, cb)
		acct.SetStatus(state.ConnectionActivity("Disconnecting..."))
	}
	return nil
}