This repository was archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.go
91 lines (84 loc) · 1.88 KB
/
message.go
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
package main
import (
"fmt"
"io"
"io/ioutil"
"net/mail"
"strings"
"time"
gomail "github.com/emersion/go-message/mail"
)
type Message struct {
SeqNum uint32 `hash:"ignore"`
Subject string
From []*mail.Address
To []*mail.Address
Date time.Time
Body string
Attachments []Attachment
}
type Attachment struct {
FileName string
Body []byte
}
func (msg Message) String() string {
return fmt.Sprintf(`Date: %v
From: %v
To: %v
Subject: %v
`, msg.Date, msg.From, msg.To, msg.Subject)
}
func NewMessage(seqNum uint32, mr *gomail.Reader) (msg Message, err error) {
msg.SeqNum = seqNum
msg.Subject, err = mr.Header.Subject()
if err != nil {
err = fmt.Errorf("message: could not get subject: %w", err)
return
}
msg.From, err = mr.Header.AddressList("From")
if err != nil {
err = fmt.Errorf("message: could not get from: %w", err)
return
}
msg.Date, _ = mr.Header.Date()
msg.To, _ = mr.Header.AddressList("To")
var sb strings.Builder
for {
var p *gomail.Part
p, err = mr.NextPart()
if err == io.EOF {
err = nil
break
}
if err != nil {
err = fmt.Errorf("message: could not get part: %w", err)
return
}
switch h := p.Header.(type) {
case *gomail.InlineHeader:
// The header is a message.
var b []byte
b, err = ioutil.ReadAll(p.Body)
if err != nil {
err = fmt.Errorf("message: could not read inline header: %w", err)
return
}
sb.WriteString(string(b))
case *gomail.AttachmentHeader:
// The header is an attachment.
var attachment Attachment
attachment.FileName, err = h.Filename()
if err != nil {
err = fmt.Errorf("message: could not read attachment filename: %w", err)
return
}
attachment.Body, err = ioutil.ReadAll(p.Body)
if err != nil {
err = fmt.Errorf("message: could not read attachment body: %w", err)
return
}
}
}
msg.Body = sb.String()
return
}