forked from Silverfish/proton-bridge
refactor: remove dead code
This commit is contained in:
@ -22,15 +22,9 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
pmmime "github.com/ProtonMail/proton-bridge/pkg/mime"
|
||||
"github.com/ProtonMail/proton-bridge/pkg/pmapi"
|
||||
"github.com/emersion/go-imap"
|
||||
"github.com/jhillyerd/enmime"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
const textPlain = "text/plain"
|
||||
|
||||
func GetBoundary(m *pmapi.Message) string {
|
||||
// The boundary needs to be deterministic because messages are not supposed to
|
||||
// change.
|
||||
@ -43,85 +37,6 @@ func GetRelatedBoundary(m *pmapi.Message) string {
|
||||
return fmt.Sprintf("%x", sha512.Sum512_256([]byte(m.ID+m.ID)))
|
||||
}
|
||||
|
||||
func GetBodyStructure(m *pmapi.Message) (bs *imap.BodyStructure) { //nolint[funlen]
|
||||
bs = &imap.BodyStructure{
|
||||
MIMEType: "multipart",
|
||||
MIMESubType: "mixed",
|
||||
Params: map[string]string{"boundary": GetBoundary(m)},
|
||||
}
|
||||
var inlineParts []*imap.BodyStructure
|
||||
var attParts []*imap.BodyStructure
|
||||
|
||||
for _, att := range m.Attachments {
|
||||
typeParts := strings.SplitN(att.MIMEType, "/", 2)
|
||||
if len(typeParts) != 2 {
|
||||
continue
|
||||
}
|
||||
|
||||
if typeParts[0] == "application" && typeParts[1] == "pgp-encrypted" {
|
||||
typeParts[1] = "octet-stream"
|
||||
}
|
||||
|
||||
part := &imap.BodyStructure{
|
||||
MIMEType: typeParts[0],
|
||||
MIMESubType: typeParts[1],
|
||||
Params: map[string]string{"name": att.Name},
|
||||
Encoding: "base64",
|
||||
}
|
||||
|
||||
if strings.Contains(att.Header.Get("Content-Disposition"), "inline") {
|
||||
part.Disposition = "inline"
|
||||
inlineParts = append(inlineParts, part)
|
||||
} else {
|
||||
part.Disposition = "attachment"
|
||||
attParts = append(attParts, part)
|
||||
}
|
||||
}
|
||||
|
||||
if len(inlineParts) > 0 {
|
||||
// Set to multipart-related for inline attachments.
|
||||
relatedPart := &imap.BodyStructure{
|
||||
MIMEType: "multipart",
|
||||
MIMESubType: "related",
|
||||
Params: map[string]string{"boundary": GetRelatedBoundary(m)},
|
||||
}
|
||||
|
||||
subType := "html"
|
||||
|
||||
if m.MIMEType == textPlain {
|
||||
subType = "plain"
|
||||
}
|
||||
|
||||
relatedPart.Parts = append(relatedPart.Parts, &imap.BodyStructure{
|
||||
MIMEType: "text",
|
||||
MIMESubType: subType,
|
||||
Params: map[string]string{"charset": "utf-8"},
|
||||
Encoding: "quoted-printable",
|
||||
Disposition: "inline",
|
||||
})
|
||||
|
||||
bs.Parts = append(bs.Parts, relatedPart)
|
||||
} else {
|
||||
subType := "html"
|
||||
|
||||
if m.MIMEType == textPlain {
|
||||
subType = "plain"
|
||||
}
|
||||
|
||||
bs.Parts = append(bs.Parts, &imap.BodyStructure{
|
||||
MIMEType: "text",
|
||||
MIMESubType: subType,
|
||||
Params: map[string]string{"charset": "utf-8"},
|
||||
Encoding: "quoted-printable",
|
||||
Disposition: "inline",
|
||||
})
|
||||
}
|
||||
|
||||
bs.Parts = append(bs.Parts, attParts...)
|
||||
|
||||
return bs
|
||||
}
|
||||
|
||||
func SeparateInlineAttachments(m *pmapi.Message) (atts, inlines []*pmapi.Attachment) {
|
||||
for _, att := range m.Attachments {
|
||||
if strings.Contains(att.Header.Get("Content-Disposition"), "inline") {
|
||||
@ -132,57 +47,3 @@ func SeparateInlineAttachments(m *pmapi.Message) (atts, inlines []*pmapi.Attachm
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
func GetMIMEBodyStructure(m *pmapi.Message, parsedMsg *enmime.Envelope) (bs *imap.BodyStructure, err error) {
|
||||
// We recursively look through the MIME structure.
|
||||
root := parsedMsg.Root
|
||||
if root == nil {
|
||||
return GetBodyStructure(m), nil
|
||||
}
|
||||
|
||||
mediaType, params, err := pmmime.ParseMediaType(root.ContentType)
|
||||
if err != nil {
|
||||
log.Warnf("Cannot parse Content-Type '%v': %v", root.ContentType, err)
|
||||
err = nil
|
||||
mediaType = textPlain
|
||||
}
|
||||
|
||||
typeParts := strings.SplitN(mediaType, "/", 2)
|
||||
|
||||
bs = &imap.BodyStructure{
|
||||
MIMEType: typeParts[0],
|
||||
Params: params,
|
||||
}
|
||||
|
||||
if len(typeParts) > 1 {
|
||||
bs.MIMESubType = typeParts[1]
|
||||
}
|
||||
|
||||
bs.Parts = getChildrenParts(root)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func getChildrenParts(root *enmime.Part) (parts []*imap.BodyStructure) {
|
||||
for child := root.FirstChild; child != nil; child = child.NextSibling {
|
||||
mediaType, params, err := pmmime.ParseMediaType(child.ContentType)
|
||||
if err != nil {
|
||||
log.Warnf("Cannot parse Content-Type '%v': %v", child.ContentType, err)
|
||||
mediaType = textPlain
|
||||
}
|
||||
typeParts := strings.SplitN(mediaType, "/", 2)
|
||||
childrenParts := getChildrenParts(child)
|
||||
part := &imap.BodyStructure{
|
||||
MIMEType: typeParts[0],
|
||||
Params: params,
|
||||
Encoding: child.Charset,
|
||||
Disposition: child.Disposition,
|
||||
Parts: childrenParts,
|
||||
}
|
||||
if len(typeParts) > 1 {
|
||||
part.MIMESubType = typeParts[1]
|
||||
}
|
||||
parts = append(parts, part)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
@ -347,14 +347,6 @@ func (bs *BodyStructure) GetSectionHeader(sectionPath []int) (header textproto.M
|
||||
return
|
||||
}
|
||||
|
||||
func (bs *BodyStructure) Size() uint32 {
|
||||
info, err := bs.getInfo([]int{})
|
||||
if err != nil {
|
||||
return uint32(0)
|
||||
}
|
||||
return uint32(info.size)
|
||||
}
|
||||
|
||||
func (bs *BodyStructure) IMAPBodyStructure(currentPart []int) (imapBS *imap.BodyStructure, err error) {
|
||||
var info *sectionInfo
|
||||
if info, err = bs.getInfo(currentPart); err != nil {
|
||||
|
||||
Reference in New Issue
Block a user