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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
package imap
import (
"strings"
"github.com/emersion/go-imap"
"git.sr.ht/~rjarry/aerc/lib/log"
"git.sr.ht/~rjarry/aerc/models"
"git.sr.ht/~rjarry/aerc/worker/types"
)
func (imapw *IMAPWorker) handleListDirectories(msg *types.ListDirectories) {
mailboxes := make(chan *imap.MailboxInfo)
imapw.worker.Tracef("Listing mailboxes")
done := make(chan any)
go func() {
defer log.PanicHandler()
labels := make([]string, 0)
provider := imapw.config.provider
useLabels := provider == GMail || provider == Proton
for mbox := range mailboxes {
if !canOpen(mbox) {
// no need to pass this to handlers if it can't be opened
continue
}
dir := &models.Directory{
Name: mbox.Name,
}
switch provider {
case GMail:
labels = append(labels, mbox.Name)
case Proton:
if strings.HasPrefix(mbox.Name, "Labels/") {
labels = append(labels, strings.TrimPrefix(mbox.Name, "Labels/"))
}
default:
// No label support
}
for _, attr := range mbox.Attributes {
attr = strings.TrimPrefix(attr, "\\")
attr = strings.ToLower(attr)
role, ok := models.Roles[attr]
if !ok {
continue
}
dir.Role = role
}
if mbox.Name == "INBOX" {
dir.Role = models.InboxRole
}
imapw.worker.PostMessage(&types.Directory{
Message: types.RespondTo(msg),
Dir: dir,
}, nil)
}
if useLabels {
imapw.worker.Debugf("Available labels: %s", labels)
imapw.worker.PostMessage(&types.LabelList{Labels: labels}, nil)
}
done <- nil
}()
switch {
case imapw.liststatus:
items := []imap.StatusItem{
imap.StatusMessages,
imap.StatusRecent,
imap.StatusUnseen,
}
statuses, err := imapw.client.liststatus.ListStatus(
"",
"*",
items,
mailboxes,
)
if err != nil {
<-done
imapw.worker.PostMessage(&types.Error{
Message: types.RespondTo(msg),
Error: err,
}, nil)
return
}
for _, status := range statuses {
imapw.worker.PostMessage(&types.DirectoryInfo{
Info: &models.DirectoryInfo{
Name: status.Name,
Exists: int(status.Messages),
Recent: int(status.Recent),
Unseen: int(status.Unseen),
},
}, nil)
}
default:
err := imapw.client.List("", "*", mailboxes)
if err != nil {
<-done
imapw.worker.PostMessage(&types.Error{
Message: types.RespondTo(msg),
Error: err,
}, nil)
return
}
}
<-done
imapw.worker.PostMessage(
&types.Done{Message: types.RespondTo(msg)}, nil)
}
const NonExistentAttr = "\\NonExistent"
func canOpen(mbox *imap.MailboxInfo) bool {
for _, attr := range mbox.Attributes {
if attr == imap.NoSelectAttr ||
attr == NonExistentAttr {
return false
}
}
return true
}
func (imapw *IMAPWorker) handleSearchDirectory(msg *types.SearchDirectory) {
emitError := func(err error) {
imapw.worker.PostMessage(&types.Error{
Message: types.RespondTo(msg),
Error: err,
}, nil)
}
imapw.worker.Tracef("Executing search")
criteria := translateSearch(msg.Criteria)
if msg.Context.Err() != nil {
imapw.worker.PostMessage(&types.Cancelled{
Message: types.RespondTo(msg),
}, nil)
return
}
uids, err := imapw.client.UidSearch(criteria)
if err != nil {
emitError(err)
return
}
if msg.Context.Err() != nil {
imapw.worker.PostMessage(&types.Cancelled{
Message: types.RespondTo(msg),
}, nil)
return
}
imapw.worker.PostMessage(&types.SearchResults{
Message: types.RespondTo(msg),
Uids: models.Uint32ToUidList(uids),
}, nil)
}
|