aerc/worker/types/messages.go

92 lines
1.1 KiB
Go
Raw Normal View History

package types
import (
2018-02-01 03:54:52 +01:00
"crypto/x509"
"git.sr.ht/~sircmpwn/aerc2/config"
)
type WorkerMessage interface {
InResponseTo() WorkerMessage
}
type Message struct {
inResponseTo WorkerMessage
}
2018-02-01 03:54:52 +01:00
func RespondTo(msg WorkerMessage) Message {
return Message{
inResponseTo: msg,
}
}
func (m Message) InResponseTo() WorkerMessage {
return m.inResponseTo
}
// Meta-messages
2018-01-14 11:30:11 +01:00
2018-02-02 01:34:08 +01:00
type Done struct {
Message
}
type Error struct {
Message
Error error
}
type Unsupported struct {
Message
}
2018-02-01 03:54:52 +01:00
// Actions
2018-01-14 11:30:11 +01:00
2018-02-02 01:54:19 +01:00
type ApproveCertificate struct {
Message
2018-02-02 01:54:19 +01:00
Approved bool
}
type Configure struct {
Message
2018-01-11 15:04:18 +01:00
Config *config.AccountConfig
}
type Connect struct {
Message
}
type Disconnect struct {
Message
}
2018-02-02 01:34:08 +01:00
type ListDirectories struct {
Message
}
2019-01-13 22:18:10 +01:00
type OpenDirectory struct {
Message
Directory string
}
2018-02-01 03:54:52 +01:00
// Messages
2018-02-02 01:54:19 +01:00
type CertificateApprovalRequest struct {
2018-02-02 01:34:08 +01:00
Message
2018-02-02 01:54:19 +01:00
CertPool *x509.CertPool
2018-02-02 01:34:08 +01:00
}
2018-02-02 01:54:19 +01:00
type Directory struct {
2018-02-01 03:54:52 +01:00
Message
2018-02-02 01:54:19 +01:00
Attributes []string
Name string
}
2019-01-13 22:18:10 +01:00
type DirectoryInfo struct {
Message
Flags []string
2019-01-14 01:37:06 +01:00
Name string
ReadOnly bool
2019-01-13 22:18:10 +01:00
Exists, Recent, Unseen int
}