123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /*
- * MIT License
- *
- * Copyright (c) 2020 Alexey Edelev <semlanik@gmail.com>
- *
- * This file is part of gostfix project https://git.semlanik.org/semlanik/gostfix
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of this
- * software and associated documentation files (the "Software"), to deal in the Software
- * without restriction, including without limitation the rights to use, copy, modify,
- * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
- * to permit persons to whom the Software is furnished to do so, subject to the following
- * conditions:
- *
- * The above copyright notice and this permission notice shall be included in all copies
- * or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
- * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
- * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
- package scanner
- import (
- "bufio"
- "bytes"
- "encoding/base64"
- "encoding/hex"
- "fmt"
- "io/ioutil"
- "log"
- "mime/quotedprintable"
- "os"
- "strings"
- "net/mail"
- "git.semlanik.org/semlanik/gostfix/common"
- "git.semlanik.org/semlanik/gostfix/config"
- utils "git.semlanik.org/semlanik/gostfix/utils"
- "github.com/google/uuid"
- enmime "github.com/jhillyerd/enmime"
- )
- const (
- StateHeaderScan = iota
- StateBodyScan
- )
- const (
- AtLeastOneHeaderMask = 1 << iota
- FromHeaderMask
- DateHeaderMask
- ToHeaderMask
- AllHeaderMask = 15
- )
- type parseData struct {
- state int
- mandatoryHeaders int
- previousHeader *string
- email *common.Mail
- contentTransferEncoding string
- bodyContentType string
- bodyData string
- activeBoundary string
- }
- func (pd *parseData) reset() {
- *pd = parseData{
- state: StateHeaderScan,
- previousHeader: nil,
- mandatoryHeaders: 0,
- email: common.NewMail(),
- bodyContentType: "plain/text",
- bodyData: "",
- activeBoundary: "",
- }
- }
- func parseFile(file *utils.LockedFile) []*common.Mail {
- log.Println("Parse file")
- defer log.Println("Exit parse")
- var emails []*common.Mail
- pd := &parseData{}
- pd.reset()
- scanner := bufio.NewScanner(file)
- for scanner.Scan() {
- currentText := scanner.Text()
- if utils.RegExpUtilsInstance().MailIndicator.MatchString(currentText) {
- if pd.mandatoryHeaders == AllHeaderMask {
- pd.parseBody()
- emails = append(emails, pd.email)
- }
- pd.reset()
- continue
- }
- switch pd.state {
- case StateHeaderScan:
- if currentText == "" {
- if pd.mandatoryHeaders&AtLeastOneHeaderMask == AtLeastOneHeaderMask { //Cause we read at least one header
- pd.previousHeader = nil
- boundaryCapture := utils.RegExpUtilsInstance().BoundaryFinder.FindStringSubmatch(pd.bodyContentType)
- if len(boundaryCapture) == 2 {
- pd.activeBoundary = boundaryCapture[1]
- } else {
- pd.activeBoundary = ""
- }
- pd.state = StateBodyScan
- //Header postprocessing
- address, err := mail.ParseAddress(pd.email.Header.From)
- if err == nil {
- pd.email.Header.From = address.Address
- if len(address.Name) > 0 {
- pd.email.Header.From = fmt.Sprintf("\"%s\" <%s>", address.Name, address.Address)
- }
- } else {
- fmt.Printf("Unable to parse from email: %s", err)
- }
- }
- } else {
- pd.parseHeader(currentText)
- }
- case StateBodyScan:
- pd.bodyData += currentText + "\n"
- capture := utils.RegExpUtilsInstance().BoundaryEndFinder.FindStringSubmatch(currentText)
- if len(capture) == 2 && pd.activeBoundary == capture[1] {
- pd.state = StateBodyScan
- pd.activeBoundary = ""
- }
- }
- }
- if pd.state == StateBodyScan {
- if pd.mandatoryHeaders == AllHeaderMask {
- pd.parseBody()
- emails = append(emails, pd.email)
- }
- pd.reset()
- }
- return emails
- }
- func (pd *parseData) parseHeader(headerRaw string) {
- capture := utils.RegExpUtilsInstance().HeaderFinder.FindStringSubmatch(headerRaw)
- encoded := false
- //Parse header
- if len(capture) == 3 {
- // fmt.Printf("capture Header %s : %s\n", strings.ToLower(capture[0]), strings.ToLower(capture[1]))
- header := strings.ToLower(capture[1])
- pd.mandatoryHeaders |= AtLeastOneHeaderMask
- switch header {
- case "from":
- pd.previousHeader = &pd.email.Header.From
- pd.mandatoryHeaders |= FromHeaderMask
- case "to":
- pd.previousHeader = &pd.email.Header.To
- pd.mandatoryHeaders |= ToHeaderMask
- case "x-original-to":
- if pd.email.Header.To == "" {
- pd.previousHeader = &pd.email.Header.To
- pd.mandatoryHeaders |= ToHeaderMask
- }
- case "cc":
- pd.previousHeader = &pd.email.Header.Cc
- case "bcc":
- pd.previousHeader = &pd.email.Header.Bcc
- pd.mandatoryHeaders |= ToHeaderMask
- case "subject":
- encoded = true
- pd.previousHeader = &pd.email.Header.Subject
- case "date":
- pd.previousHeader = nil
- unixTime, err := mail.ParseDate(strings.Trim(capture[2], " \t"))
- if err == nil {
- pd.email.Header.Date = unixTime.Unix()
- pd.mandatoryHeaders |= DateHeaderMask
- } else {
- log.Printf("Unable to parse message: %s\n", err)
- }
- case "content-transfer-encoding":
- pd.previousHeader = &pd.contentTransferEncoding
- case "content-type":
- pd.previousHeader = &pd.bodyContentType
- default:
- pd.previousHeader = nil
- }
- if pd.previousHeader != nil {
- *pd.previousHeader = strings.Trim(capture[2], " \t")
- if encoded {
- *pd.previousHeader = decodeEncoded(*pd.previousHeader)
- }
- }
- return
- }
- //Parse folding
- capture = utils.RegExpUtilsInstance().FoldingFinder.FindStringSubmatch(headerRaw)
- if len(capture) == 2 && pd.previousHeader != nil {
- *pd.previousHeader += decodeEncoded(strings.Trim(capture[1], " \t"))
- }
- }
- func (pd *parseData) parseBody() {
- buffer := bytes.NewBufferString("content-transfer-encoding: " + pd.contentTransferEncoding + "\ncontent-type: " + pd.bodyContentType + "\n\n" + pd.bodyData)
- en, err := enmime.ReadEnvelope(buffer)
- if err != nil {
- log.Printf("Unable to read mail body %s\n\nBody content: %s\n\n", err, pd.bodyData)
- return
- }
- pd.email.Body = &common.MailBody{}
- pd.email.Body.PlainText = en.Text
- pd.email.Body.RichText = en.HTML
- for _, attachment := range en.Attachments {
- uuid := uuid.New()
- fileName := hex.EncodeToString(uuid[:])
- attachmentFile, err := os.Create(config.ConfigInstance().AttachmentsPath + "/" + fileName)
- log.Printf("Attachment found %s\n", fileName)
- if err != nil {
- log.Printf("Unable to save attachment %s %s\n", fileName, err)
- continue
- }
- pd.email.Body.Attachments = append(pd.email.Body.Attachments, &common.AttachmentHeader{
- Id: fileName,
- FileName: attachment.FileName,
- ContentType: attachment.ContentType,
- })
- attachmentFile.Write(attachment.Content)
- }
- }
- func decodeEncoded(dataEncoded string) string {
- dataParts := utils.RegExpUtilsInstance().EncodedStringFinder.FindAllString(dataEncoded, -1)
- if len(dataParts) <= 0 {
- return dataEncoded
- }
- var decodedBuffer []byte
- for _, headerPart := range dataParts {
- headerPart = headerPart[2 : len(headerPart)-2]
- headerPartParts := strings.Split(headerPart, "?")
- if len(headerPartParts) == 3 {
- switch strings.ToLower(headerPartParts[1]) {
- case "b":
- fmt.Printf("Decode base64: %s\n", headerPartParts[2])
- decodedBase64, err := base64.StdEncoding.DecodeString(headerPartParts[2])
- if err == nil {
- decodedBuffer = append(decodedBuffer, decodedBase64...)
- }
- case "q":
- decodedQuotedPrintable, err := ioutil.ReadAll(quotedprintable.NewReader(strings.NewReader(headerPartParts[2])))
- if err == nil {
- decodedBuffer = append(decodedBuffer, decodedQuotedPrintable...)
- }
- default:
- }
- }
- }
- if len(decodedBuffer) > 0 {
- //TODO: check encoding here
- return string(decodedBuffer)
- }
- return dataEncoded
- }
|