diff options
Diffstat (limited to 'commands/account/connection.go')
-rw-r--r-- | commands/account/connection.go | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/commands/account/connection.go b/commands/account/connection.go new file mode 100644 index 00000000..a87993b6 --- /dev/null +++ b/commands/account/connection.go @@ -0,0 +1,37 @@ +package account + +import ( + "errors" + + "git.sr.ht/~rjarry/aerc/widgets" + "git.sr.ht/~rjarry/aerc/worker/types" +) + +type Connection struct{} + +func init() { + register(Connection{}) +} + +func (Connection) Aliases() []string { + return []string{"connect", "disconnect"} +} + +func (Connection) Complete(aerc *widgets.Aerc, args []string) []string { + return nil +} + +func (Connection) Execute(aerc *widgets.Aerc, args []string) error { + acct := aerc.SelectedAccount() + if acct == nil { + return errors.New("No account selected") + } + if args[0] == "connect" { + acct.Worker().PostAction(&types.Connect{}, nil) + acct.SetStatus("Connecting...") + } else { + acct.Worker().PostAction(&types.Disconnect{}, nil) + acct.SetStatus("Disconnecting...") + } + return nil +} |