mirror of
https://github.com/1f349/lotus.git
synced 2024-11-14 16:01:33 +00:00
40 lines
905 B
Go
40 lines
905 B
Go
package marshal
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/1f349/lotus/utils"
|
|
"github.com/emersion/go-imap"
|
|
)
|
|
|
|
var _, _ json.Marshaler = &MessageSliceJson{}, &MessageJson{}
|
|
|
|
type MessageSliceJson []*imap.Message
|
|
|
|
func (m MessageSliceJson) MarshalJSON() ([]byte, error) {
|
|
a := make([]MessageJson, len(m))
|
|
for i := range a {
|
|
a[i] = MessageJson(*m[i])
|
|
}
|
|
return json.Marshal(a)
|
|
}
|
|
|
|
type MessageJson imap.Message
|
|
|
|
func (m MessageJson) MarshalJSON() ([]byte, error) {
|
|
body := make(map[string]imap.Literal, len(m.Body))
|
|
for k, v := range m.Body {
|
|
body[string(k.FetchItem())] = v
|
|
}
|
|
return json.Marshal(map[string]any{
|
|
"SeqNum": m.SeqNum,
|
|
"Items": utils.MapKeys(m.Items),
|
|
"Envelope": m.Envelope,
|
|
"BodyStructure": m.BodyStructure,
|
|
"Flags": m.Flags,
|
|
"InternalDate": m.InternalDate,
|
|
"Size": m.Size,
|
|
"Uid": m.Uid,
|
|
"$Body": body,
|
|
})
|
|
}
|