alps/imap.go

307 lines
6.6 KiB
Go
Raw Normal View History

package koushin
import (
2019-12-02 18:53:09 +00:00
"bufio"
"fmt"
2019-12-02 17:21:45 +00:00
"sort"
2019-12-02 18:53:09 +00:00
"strconv"
"strings"
2019-12-02 17:21:45 +00:00
"github.com/emersion/go-imap"
2019-12-03 10:12:26 +00:00
imapclient "github.com/emersion/go-imap/client"
2019-12-02 18:53:09 +00:00
"github.com/emersion/go-message"
"github.com/emersion/go-message/charset"
2019-12-02 18:53:09 +00:00
"github.com/emersion/go-message/textproto"
)
func init() {
imap.CharsetReader = charset.Reader
}
func (s *Server) connectIMAP() (*imapclient.Client, error) {
var c *imapclient.Client
var err error
if s.imap.tls {
c, err = imapclient.DialTLS(s.imap.host, nil)
if err != nil {
2019-12-03 13:48:43 +00:00
return nil, fmt.Errorf("failed to connect to IMAPS server: %v", err)
}
} else {
c, err = imapclient.Dial(s.imap.host)
if err != nil {
2019-12-03 13:48:11 +00:00
return nil, fmt.Errorf("failed to connect to IMAP server: %v", err)
}
if !s.imap.insecure {
if err := c.StartTLS(nil); err != nil {
c.Close()
2019-12-03 13:48:11 +00:00
return nil, fmt.Errorf("STARTTLS failed: %v", err)
}
}
}
return c, err
}
func listMailboxes(conn *imapclient.Client) ([]*imap.MailboxInfo, error) {
ch := make(chan *imap.MailboxInfo, 10)
done := make(chan error, 1)
2019-12-03 10:12:26 +00:00
go func() {
done <- conn.List("", "*", ch)
}()
var mailboxes []*imap.MailboxInfo
for mbox := range ch {
mailboxes = append(mailboxes, mbox)
}
if err := <-done; err != nil {
2019-12-03 13:48:11 +00:00
return nil, fmt.Errorf("failed to list mailboxes: %v", err)
}
2019-12-02 17:21:45 +00:00
sort.Slice(mailboxes, func(i, j int) bool {
return mailboxes[i].Name < mailboxes[j].Name
})
return mailboxes, nil
}
2019-12-02 17:21:45 +00:00
2019-12-02 18:53:09 +00:00
func ensureMailboxSelected(conn *imapclient.Client, mboxName string) error {
2019-12-02 17:21:45 +00:00
mbox := conn.Mailbox()
if mbox == nil || mbox.Name != mboxName {
2019-12-02 18:53:09 +00:00
if _, err := conn.Select(mboxName, false); err != nil {
2019-12-03 13:48:11 +00:00
return fmt.Errorf("failed to select mailbox: %v", err)
2019-12-02 18:53:09 +00:00
}
}
return nil
}
type imapMessage struct {
*imap.Message
}
func textPartPath(bs *imap.BodyStructure) ([]int, bool) {
if bs.Disposition != "" && !strings.EqualFold(bs.Disposition, "inline") {
return nil, false
}
if strings.EqualFold(bs.MIMEType, "text") {
return []int{1}, true
}
if !strings.EqualFold(bs.MIMEType, "multipart") {
return nil, false
}
textPartNum := -1
for i, part := range bs.Parts {
num := i + 1
if strings.EqualFold(part.MIMEType, "multipart") {
if subpath, ok := textPartPath(part); ok {
return append([]int{num}, subpath...), true
}
}
if !strings.EqualFold(part.MIMEType, "text") {
continue
}
var pick bool
switch strings.ToLower(part.MIMESubType) {
case "plain":
pick = true
case "html":
pick = textPartNum < 0
2019-12-02 17:21:45 +00:00
}
2019-12-02 18:53:09 +00:00
if pick {
textPartNum = num
}
}
if textPartNum > 0 {
return []int{textPartNum}, true
}
return nil, false
}
func (msg *imapMessage) TextPartName() string {
if msg.BodyStructure == nil {
return ""
}
path, ok := textPartPath(msg.BodyStructure)
if !ok {
return ""
}
l := make([]string, len(path))
for i, partNum := range path {
l[i] = strconv.Itoa(partNum)
}
return strings.Join(l, ".")
}
2019-12-03 10:36:53 +00:00
type IMAPPartNode struct {
2019-12-03 10:54:43 +00:00
Path []int
2019-12-03 10:36:53 +00:00
MIMEType string
2019-12-03 12:07:25 +00:00
Filename string
2019-12-03 10:36:53 +00:00
Children []IMAPPartNode
}
2019-12-03 12:07:25 +00:00
func (node IMAPPartNode) PathString() string {
2019-12-03 10:36:53 +00:00
l := make([]string, len(node.Path))
for i, partNum := range node.Path {
l[i] = strconv.Itoa(partNum)
}
return strings.Join(l, ".")
}
2019-12-03 12:07:25 +00:00
func (node IMAPPartNode) IsText() bool {
return strings.HasPrefix(strings.ToLower(node.MIMEType), "text/")
}
func (node IMAPPartNode) String() string {
if node.Filename != "" {
return fmt.Sprintf("%s (%s)", node.Filename, node.MIMEType)
} else {
return node.MIMEType
}
}
2019-12-03 10:36:53 +00:00
func imapPartTree(bs *imap.BodyStructure, path []int) *IMAPPartNode {
if !strings.EqualFold(bs.MIMEType, "multipart") && len(path) == 0 {
path = []int{1}
}
filename, _ := bs.Filename()
2019-12-03 12:07:25 +00:00
2019-12-03 10:36:53 +00:00
node := &IMAPPartNode{
2019-12-03 10:54:43 +00:00
Path: path,
2019-12-03 10:36:53 +00:00
MIMEType: strings.ToLower(bs.MIMEType + "/" + bs.MIMESubType),
2019-12-03 12:07:25 +00:00
Filename: filename,
2019-12-03 10:36:53 +00:00
Children: make([]IMAPPartNode, len(bs.Parts)),
}
for i, part := range bs.Parts {
num := i + 1
partPath := append([]int(nil), path...)
partPath = append(partPath, num)
node.Children[i] = *imapPartTree(part, partPath)
}
return node
}
func (msg *imapMessage) PartTree() *IMAPPartNode {
if msg.BodyStructure == nil {
return nil
}
return imapPartTree(msg.BodyStructure, nil)
}
func listMessages(conn *imapclient.Client, mboxName string, page int) ([]imapMessage, error) {
2019-12-02 18:53:09 +00:00
if err := ensureMailboxSelected(conn, mboxName); err != nil {
return nil, err
2019-12-02 17:21:45 +00:00
}
2019-12-02 18:53:09 +00:00
mbox := conn.Mailbox()
to := int(mbox.Messages) - page*messagesPerPage
from := to - messagesPerPage + 1
if from <= 0 {
from = 1
}
if to <= 0 {
return nil, nil
2019-12-02 17:21:45 +00:00
}
2019-12-02 17:21:45 +00:00
seqSet := new(imap.SeqSet)
seqSet.AddRange(uint32(from), uint32(to))
2019-12-02 17:21:45 +00:00
2019-12-02 18:53:09 +00:00
fetch := []imap.FetchItem{imap.FetchEnvelope, imap.FetchUid, imap.FetchBodyStructure}
2019-12-02 17:21:45 +00:00
ch := make(chan *imap.Message, 10)
done := make(chan error, 1)
go func() {
2019-12-02 18:53:09 +00:00
done <- conn.Fetch(seqSet, fetch, ch)
2019-12-02 17:21:45 +00:00
}()
msgs := make([]imapMessage, 0, to-from)
2019-12-02 17:21:45 +00:00
for msg := range ch {
2019-12-02 18:53:09 +00:00
msgs = append(msgs, imapMessage{msg})
2019-12-02 17:21:45 +00:00
}
if err := <-done; err != nil {
2019-12-03 13:48:11 +00:00
return nil, fmt.Errorf("failed to fetch message list: %v", err)
2019-12-02 17:21:45 +00:00
}
// Reverse list of messages
2019-12-03 10:12:26 +00:00
for i := len(msgs)/2 - 1; i >= 0; i-- {
opp := len(msgs) - 1 - i
2019-12-02 17:21:45 +00:00
msgs[i], msgs[opp] = msgs[opp], msgs[i]
}
return msgs, nil
}
2019-12-02 18:53:09 +00:00
2019-12-03 12:07:25 +00:00
func getMessagePart(conn *imapclient.Client, mboxName string, uid uint32, partPath []int) (*imapMessage, *message.Entity, error) {
2019-12-02 18:53:09 +00:00
if err := ensureMailboxSelected(conn, mboxName); err != nil {
2019-12-03 12:07:25 +00:00
return nil, nil, err
2019-12-02 18:53:09 +00:00
}
seqSet := new(imap.SeqSet)
seqSet.AddNum(uid)
2019-12-03 12:07:25 +00:00
var partHeaderSection imap.BodySectionName
partHeaderSection.Peek = true
2019-12-03 14:06:29 +00:00
if len(partPath) > 0 {
partHeaderSection.Specifier = imap.MIMESpecifier
} else {
partHeaderSection.Specifier = imap.HeaderSpecifier
}
2019-12-03 12:07:25 +00:00
partHeaderSection.Path = partPath
2019-12-02 18:53:09 +00:00
2019-12-03 12:07:25 +00:00
var partBodySection imap.BodySectionName
partBodySection.Peek = true
2019-12-03 14:06:29 +00:00
if len(partPath) > 0 {
partBodySection.Specifier = imap.EntireSpecifier
} else {
partBodySection.Specifier = imap.TextSpecifier
}
2019-12-03 12:07:25 +00:00
partBodySection.Path = partPath
2019-12-02 18:53:09 +00:00
fetch := []imap.FetchItem{
imap.FetchEnvelope,
imap.FetchUid,
imap.FetchBodyStructure,
2019-12-03 12:07:25 +00:00
partHeaderSection.FetchItem(),
partBodySection.FetchItem(),
2019-12-02 18:53:09 +00:00
}
ch := make(chan *imap.Message, 1)
if err := conn.UidFetch(seqSet, fetch, ch); err != nil {
2019-12-03 13:48:11 +00:00
return nil, nil, fmt.Errorf("failed to fetch message: %v", err)
2019-12-02 18:53:09 +00:00
}
msg := <-ch
if msg == nil {
2019-12-03 12:07:25 +00:00
return nil, nil, fmt.Errorf("server didn't return message")
2019-12-02 18:53:09 +00:00
}
2019-12-03 12:07:25 +00:00
headerReader := bufio.NewReader(msg.GetBody(&partHeaderSection))
2019-12-02 18:53:09 +00:00
h, err := textproto.ReadHeader(headerReader)
if err != nil {
2019-12-03 13:48:11 +00:00
return nil, nil, fmt.Errorf("failed to read part header: %v", err)
2019-12-02 18:53:09 +00:00
}
2019-12-03 12:07:25 +00:00
part, err := message.New(message.Header{h}, msg.GetBody(&partBodySection))
2019-12-02 18:53:09 +00:00
if err != nil {
2019-12-03 13:48:11 +00:00
return nil, nil, fmt.Errorf("failed to create message reader: %v", err)
2019-12-02 18:53:09 +00:00
}
2019-12-03 12:07:25 +00:00
return &imapMessage{msg}, part, nil
2019-12-02 18:53:09 +00:00
}