2019-01-13 22:18:10 +01:00
|
|
|
package imap
|
|
|
|
|
|
|
|
import (
|
2021-11-12 18:12:02 +01:00
|
|
|
"sort"
|
|
|
|
|
2019-03-11 04:45:00 +01:00
|
|
|
"github.com/emersion/go-imap"
|
2020-09-12 15:05:02 +02:00
|
|
|
sortthread "github.com/emersion/go-imap-sortthread"
|
2019-03-11 04:45:00 +01:00
|
|
|
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/worker/types"
|
2019-01-13 22:18:10 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (imapw *IMAPWorker) handleOpenDirectory(msg *types.OpenDirectory) {
|
|
|
|
imapw.worker.Logger.Printf("Opening %s", msg.Directory)
|
2019-04-28 15:01:56 +02:00
|
|
|
|
|
|
|
_, err := imapw.client.Select(msg.Directory, false)
|
|
|
|
if err != nil {
|
|
|
|
imapw.worker.PostMessage(&types.Error{
|
|
|
|
Message: types.RespondTo(msg),
|
|
|
|
Error: err,
|
|
|
|
}, nil)
|
|
|
|
} else {
|
2022-03-18 09:53:02 +01:00
|
|
|
imapw.worker.PostMessage(&types.Done{Message: types.RespondTo(msg)}, nil)
|
2019-04-28 15:01:56 +02:00
|
|
|
}
|
2019-01-13 22:18:10 +01:00
|
|
|
}
|
2019-03-11 04:45:00 +01:00
|
|
|
|
|
|
|
func (imapw *IMAPWorker) handleFetchDirectoryContents(
|
|
|
|
msg *types.FetchDirectoryContents) {
|
|
|
|
|
|
|
|
imapw.worker.Logger.Printf("Fetching UID list")
|
|
|
|
|
2019-04-28 15:01:56 +02:00
|
|
|
seqSet := &imap.SeqSet{}
|
|
|
|
seqSet.AddRange(1, imapw.selected.Messages)
|
2020-09-12 15:05:02 +02:00
|
|
|
|
|
|
|
searchCriteria := &imap.SearchCriteria{
|
2019-04-28 15:01:56 +02:00
|
|
|
SeqNum: seqSet,
|
2020-09-12 15:05:02 +02:00
|
|
|
}
|
|
|
|
sortCriteria := translateSortCriterions(msg.SortCriteria)
|
|
|
|
|
|
|
|
var uids []uint32
|
|
|
|
|
|
|
|
// If the server supports the SORT extension, do the sorting server side
|
|
|
|
ok, err := imapw.client.sort.SupportSort()
|
|
|
|
if err == nil && ok && len(sortCriteria) > 0 {
|
|
|
|
uids, err = imapw.client.sort.UidSort(sortCriteria, searchCriteria)
|
|
|
|
// copy in reverse as msgList displays backwards
|
|
|
|
for i, j := 0, len(uids)-1; i < j; i, j = i+1, j-1 {
|
|
|
|
uids[i], uids[j] = uids[j], uids[i]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err != nil {
|
|
|
|
// Non fatal, but we do want to print to get some debug info
|
|
|
|
imapw.worker.Logger.Printf("can't check for SORT support: %v", err)
|
|
|
|
}
|
|
|
|
uids, err = imapw.client.UidSearch(searchCriteria)
|
|
|
|
}
|
2019-04-28 15:01:56 +02:00
|
|
|
if err != nil {
|
|
|
|
imapw.worker.PostMessage(&types.Error{
|
|
|
|
Message: types.RespondTo(msg),
|
|
|
|
Error: err,
|
|
|
|
}, nil)
|
|
|
|
} else {
|
|
|
|
imapw.worker.Logger.Printf("Found %d UIDs", len(uids))
|
2019-11-10 23:17:55 +01:00
|
|
|
if len(imapw.seqMap) < len(uids) {
|
|
|
|
imapw.seqMap = make([]uint32, len(uids))
|
|
|
|
}
|
2019-04-28 15:01:56 +02:00
|
|
|
imapw.worker.PostMessage(&types.DirectoryContents{
|
|
|
|
Message: types.RespondTo(msg),
|
|
|
|
Uids: uids,
|
|
|
|
}, nil)
|
2022-03-18 09:53:02 +01:00
|
|
|
imapw.worker.PostMessage(&types.Done{Message: types.RespondTo(msg)}, nil)
|
2019-04-28 15:01:56 +02:00
|
|
|
}
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
2020-09-12 15:05:02 +02:00
|
|
|
|
|
|
|
type sortFieldMapT map[types.SortField]sortthread.SortField
|
|
|
|
|
|
|
|
// caution, incomplete mapping
|
|
|
|
var sortFieldMap sortFieldMapT = sortFieldMapT{
|
|
|
|
types.SortArrival: sortthread.SortArrival,
|
|
|
|
types.SortCc: sortthread.SortCc,
|
|
|
|
types.SortDate: sortthread.SortDate,
|
|
|
|
types.SortFrom: sortthread.SortFrom,
|
|
|
|
types.SortSize: sortthread.SortSize,
|
|
|
|
types.SortSubject: sortthread.SortSubject,
|
|
|
|
types.SortTo: sortthread.SortTo,
|
|
|
|
}
|
|
|
|
|
|
|
|
func translateSortCriterions(
|
|
|
|
cs []*types.SortCriterion) []sortthread.SortCriterion {
|
|
|
|
result := make([]sortthread.SortCriterion, 0, len(cs))
|
|
|
|
for _, c := range cs {
|
|
|
|
if f, ok := sortFieldMap[c.Field]; ok {
|
2022-03-18 09:53:02 +01:00
|
|
|
result = append(result, sortthread.SortCriterion{Field: f, Reverse: c.Reverse})
|
2020-09-12 15:05:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2021-11-12 18:12:02 +01:00
|
|
|
|
|
|
|
func (imapw *IMAPWorker) handleDirectoryThreaded(
|
|
|
|
msg *types.FetchDirectoryThreaded) {
|
|
|
|
imapw.worker.Logger.Printf("Fetching threaded UID list")
|
|
|
|
|
|
|
|
seqSet := &imap.SeqSet{}
|
|
|
|
seqSet.AddRange(1, imapw.selected.Messages)
|
|
|
|
threads, err := imapw.client.thread.UidThread(sortthread.References,
|
|
|
|
&imap.SearchCriteria{SeqNum: seqSet})
|
|
|
|
if err != nil {
|
|
|
|
imapw.worker.PostMessage(&types.Error{
|
|
|
|
Message: types.RespondTo(msg),
|
|
|
|
Error: err,
|
|
|
|
}, nil)
|
|
|
|
} else {
|
|
|
|
aercThreads, count := convertThreads(threads, nil)
|
|
|
|
sort.Sort(types.ByUID(aercThreads))
|
|
|
|
imapw.worker.Logger.Printf("Found %d threaded messages", count)
|
|
|
|
imapw.seqMap = make([]uint32, count)
|
|
|
|
imapw.worker.PostMessage(&types.DirectoryThreaded{
|
|
|
|
Message: types.RespondTo(msg),
|
|
|
|
Threads: aercThreads,
|
|
|
|
}, nil)
|
2022-03-18 09:53:02 +01:00
|
|
|
imapw.worker.PostMessage(&types.Done{Message: types.RespondTo(msg)}, nil)
|
2021-11-12 18:12:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertThreads(threads []*sortthread.Thread, parent *types.Thread) ([]*types.Thread, int) {
|
|
|
|
if threads == nil {
|
|
|
|
return nil, 0
|
|
|
|
}
|
|
|
|
conv := make([]*types.Thread, len(threads))
|
|
|
|
count := 0
|
|
|
|
|
|
|
|
for i := 0; i < len(threads); i++ {
|
|
|
|
t := threads[i]
|
|
|
|
conv[i] = &types.Thread{
|
|
|
|
Uid: t.Id,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the first child node
|
|
|
|
children, childCount := convertThreads(t.Children, conv[i])
|
|
|
|
if len(children) > 0 {
|
|
|
|
conv[i].FirstChild = children[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the parent node
|
|
|
|
if parent != nil {
|
|
|
|
conv[i].Parent = parent
|
|
|
|
|
|
|
|
// elements of threads are siblings
|
|
|
|
if i > 0 {
|
|
|
|
conv[i].PrevSibling = conv[i-1]
|
|
|
|
conv[i-1].NextSibling = conv[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
count += childCount + 1
|
|
|
|
}
|
|
|
|
return conv, count
|
|
|
|
}
|