blob: a87993b6356866bf6f548f74ace5b0e0c49e67fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
}
|