aerc/worker/types/messages.go

178 lines
2.1 KiB
Go
Raw Normal View History

package types
import (
2019-03-31 17:10:10 +02:00
"io"
"time"
2019-05-18 02:57:10 +02:00
"git.sr.ht/~sircmpwn/aerc/config"
"git.sr.ht/~sircmpwn/aerc/models"
)
type WorkerMessage interface {
InResponseTo() WorkerMessage
getId() int64
setId(id int64)
}
type Message struct {
inResponseTo WorkerMessage
id int64
}
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
}
func (m Message) getId() int64 {
return m.id
}
func (m *Message) setId(id int64) {
m.id = id
}
// 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
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
}
type FetchDirectoryContents struct {
Message
}
2019-06-24 22:29:13 +02:00
type SearchDirectory struct {
Message
Argv []string
2019-06-24 22:29:13 +02:00
}
type CreateDirectory struct {
Message
Directory string
2019-07-11 06:49:09 +02:00
Quiet bool
}
type FetchMessageHeaders struct {
Message
Uids []uint32
}
type FetchFullMessages struct {
Message
Uids []uint32
}
2019-03-31 17:10:10 +02:00
type FetchMessageBodyPart struct {
Message
Uid uint32
2019-05-20 22:42:44 +02:00
Part []int
2019-03-31 17:10:10 +02:00
}
2019-03-21 04:23:38 +01:00
type DeleteMessages struct {
Message
Uids []uint32
2019-03-21 04:23:38 +01:00
}
2019-06-09 20:55:34 +02:00
// Marks messages as read or unread
type ReadMessages struct {
Message
Read bool
Uids []uint32
2019-06-09 20:55:34 +02:00
}
2019-05-14 22:34:42 +02:00
type CopyMessages struct {
Message
Destination string
Uids []uint32
2019-05-14 22:34:42 +02:00
}
type AppendMessage struct {
Message
Destination string
Flags []string
Date time.Time
Reader io.Reader
Length int
}
2018-02-01 03:54:52 +01:00
// Messages
2018-02-02 01:54:19 +01:00
type Directory struct {
2018-02-01 03:54:52 +01:00
Message
Dir *models.Directory
}
2019-01-13 22:18:10 +01:00
type DirectoryInfo struct {
Message
Info *models.DirectoryInfo
2019-01-13 22:18:10 +01:00
}
type DirectoryContents struct {
Message
Uids []uint32
}
2019-06-24 22:29:13 +02:00
type SearchResults struct {
Message
Uids []uint32
}
type MessageInfo struct {
Message
Info *models.MessageInfo
}
2019-03-21 04:23:38 +01:00
type FullMessage struct {
2019-03-30 03:35:53 +01:00
Message
Content *models.FullMessage
2019-03-30 03:35:53 +01:00
}
2019-03-31 17:10:10 +02:00
type MessageBodyPart struct {
Message
Part *models.MessageBodyPart
2019-03-31 17:10:10 +02:00
}
2019-03-21 04:23:38 +01:00
type MessagesDeleted struct {
Message
Uids []uint32
}