123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- /*
- * 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 web
- import (
- "crypto/md5"
- "crypto/tls"
- "encoding/hex"
- "encoding/json"
- "fmt"
- "html"
- template "html/template"
- "log"
- "net/http"
- "net/smtp"
- "strconv"
- "strings"
- "time"
- common "git.semlanik.org/semlanik/gostfix/common"
- "git.semlanik.org/semlanik/gostfix/config"
- "git.semlanik.org/semlanik/gostfix/utils"
- )
- func (s *Server) handleMailbox(w http.ResponseWriter, user, email string) {
- fmt.Fprint(w, s.templater.ExecuteIndex(&struct {
- Folders template.HTML
- MailNew template.HTML
- Version template.HTML
- }{
- MailNew: template.HTML(s.templater.ExecuteNewMail("")),
- Folders: "Folders",
- Version: common.Version,
- }))
- }
- func (s *Server) handleMailboxRequest(w http.ResponseWriter, r *http.Request, user string, urlParts []string) {
- if user == "" {
- log.Printf("User could not be empty. Invalid usage of handleMailboxRequest")
- panic(nil)
- }
- emails, err := s.storage.GetEmails(user)
- if err != nil || len(emails) <= 0 {
- s.error(http.StatusInternalServerError, "Unable to access mailbox", w)
- return
- }
- if len(urlParts) < 2 {
- http.Redirect(w, r, "/m/0", http.StatusTemporaryRedirect)
- return
- }
- mailbox, err := strconv.Atoi(urlParts[1])
- if err != nil || mailbox < 0 || len(emails) <= mailbox {
- http.Redirect(w, r, "/m/0", http.StatusTemporaryRedirect)
- return
- }
- if len(urlParts) < 3 {
- s.handleMailbox(w, user, emails[mailbox])
- return
- }
- log.Printf("Handle mailbox function %s", urlParts[2])
- switch urlParts[2] {
- case "folders":
- s.handleFolders(w, user, emails[mailbox])
- case "folderStat":
- s.handleFolderStat(w, r, user, emails[mailbox])
- case "statusLine":
- s.handleStatusLine(w, user, emails[mailbox])
- case "mailList":
- s.handleMailList(w, r, user, emails[mailbox])
- case "sendNewMail":
- s.handleNewMail(w, r, user, emails[mailbox])
- case "notifierSubscribe":
- s.notifier.handleNotifierRequest(w, r, emails[mailbox])
- default:
- http.Redirect(w, r, "/m/0", http.StatusTemporaryRedirect)
- }
- }
- func (s *Server) handleFolders(w http.ResponseWriter, user, email string) {
- folders := s.storage.GetFolders(email)
- var stats []interface{}
- for _, folder := range folders {
- stat, _ := s.storage.GetEmailStats(user, email, folder.Name)
- stats = append(stats, stat)
- }
- out, err := json.Marshal(&struct {
- Folders []*common.Folder `json:"folders"`
- Html string `json:"html"`
- Stats []interface{} `json:"stats"`
- }{
- Folders: folders,
- Html: s.templater.ExecuteFolders(s.storage.GetFolders(email)),
- Stats: stats,
- })
- if err != nil {
- s.error(http.StatusInternalServerError, "Could not fetch folder list", w)
- }
- w.Write(out)
- }
- func (s *Server) handleFolderStat(w http.ResponseWriter, r *http.Request, user, email string) {
- stat, err := s.storage.GetEmailStats(user, email, s.extractFolder(email, r))
- if err != nil {
- s.error(http.StatusInternalServerError, "Couldn't read mailbox stat", w)
- return
- }
- out, err := json.Marshal(stat)
- if err != nil {
- s.error(http.StatusInternalServerError, "Couldn't parse mailbox stat", w)
- return
- }
- w.Write(out)
- }
- func (s *Server) handleMailList(w http.ResponseWriter, r *http.Request, user, email string) {
- folder := s.extractFolder(email, r)
- page, err := strconv.Atoi(r.FormValue("page"))
- if err != nil {
- page = 0
- }
- stat, err := s.storage.GetEmailStats(user, email, folder)
- if err != nil {
- s.error(http.StatusInternalServerError, "Couldn't read email database", w)
- return
- }
- mailList, err := s.storage.GetMailList(user, email, folder, common.Frame{Skip: int32(50 * page), Limit: 50})
- if err != nil {
- s.error(http.StatusInternalServerError, "Couldn't read email database", w)
- return
- }
- out, err := json.Marshal(&struct {
- Total uint32 `json:"total"`
- Html string `json:"html"`
- }{
- Total: stat.Total,
- Html: s.templater.ExecuteMailList(mailList),
- })
- if err != nil {
- s.error(http.StatusInternalServerError, "Could not perform maillist", w)
- return
- }
- w.Write(out)
- }
- func (s *Server) handleStatusLine(w http.ResponseWriter, user, email string) {
- info, err := s.storage.GetUserInfo(user)
- if err != nil {
- s.error(http.StatusInternalServerError, "Could not read user info", w)
- return
- }
- type EmailIndexes struct {
- Index int
- Email string
- }
- emails, err := s.storage.GetEmails(user)
- emailsIndexes := []EmailIndexes{}
- k := 0
- for i, existingEmail := range emails {
- emailsIndexes = append(emailsIndexes, EmailIndexes{i, existingEmail})
- if existingEmail == email {
- k = i
- }
- }
- emailsIndexes = emailsIndexes[:k+copy(emailsIndexes[k:], emailsIndexes[k+1:])]
- if err != nil {
- s.error(http.StatusInternalServerError, "Could not read user info", w)
- return
- }
- emailHash := md5.Sum([]byte(strings.Trim(email, "\t ")))
- fmt.Fprint(w, s.templater.ExecuteStatusLine(&struct {
- Name string
- Email string
- EmailHash string
- EmailsIndexes []EmailIndexes
- }{
- Name: info.FullName,
- Email: email,
- EmailHash: hex.EncodeToString(emailHash[:]),
- EmailsIndexes: emailsIndexes,
- }))
- }
- func (s *Server) extractFolder(email string, r *http.Request) string {
- folder := r.FormValue("folder")
- folders := s.storage.GetFolders(email)
- ok := false
- for _, existFolder := range folders {
- if folder == existFolder.Name {
- ok = true
- break
- }
- }
- if !ok {
- folder = common.Inbox
- }
- return folder
- }
- func (s *Server) handleNewMail(w http.ResponseWriter, r *http.Request, user, email string) {
- rawMail := &common.Mail{
- Header: &common.MailHeader{
- From: email,
- To: r.FormValue("to"),
- Cc: r.FormValue("cc"),
- Bcc: r.FormValue("bcc"),
- Date: time.Now().Unix(),
- Subject: r.FormValue("subject"),
- },
- Body: &common.MailBody{
- PlainText: html.EscapeString(r.FormValue("body")),
- },
- }
- resultEmail := s.templater.ExecuteMail(&struct {
- From string
- Subject string
- Date template.HTML
- To string
- Body template.HTML
- }{
- From: rawMail.Header.From,
- To: rawMail.Header.To,
- Subject: rawMail.Header.Subject,
- Date: template.HTML(time.Unix(rawMail.Header.Date, 0).Format(time.RFC1123Z)),
- Body: template.HTML(rawMail.Body.PlainText),
- })
- host := config.ConfigInstance().MyDomain
- server := host + ":25"
- _, token := s.extractAuth(w, r)
- auth := smtp.PlainAuth("token", user, token, host)
- tlsconfig := &tls.Config{
- InsecureSkipVerify: true,
- ServerName: host,
- }
- client, err := smtp.Dial(server)
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Printf("Dial %s \n", err)
- return
- }
- err = client.StartTLS(tlsconfig)
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Printf("StartTLS %s \n", err)
- return
- }
- err = client.Auth(auth)
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Printf("Auth %s \n", err)
- return
- }
- err = client.Mail(email)
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Printf("Mail %s \n", err)
- return
- }
- toList := strings.Split(rawMail.Header.To, ",")
- for _, to := range toList {
- if !utils.RegExpUtilsInstance().EmailChecker.MatchString(to) {
- log.Println("Skip email " + to)
- continue
- }
- err = client.Rcpt(to)
- if err != nil {
- // s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Println(err)
- continue
- }
- }
- mailWriter, err := client.Data()
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Println(err)
- return
- }
- _, err = mailWriter.Write([]byte(resultEmail))
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Println(err)
- return
- }
- err = mailWriter.Close()
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to send message", w)
- log.Println(err)
- return
- }
- client.Quit()
- s.storage.SaveMail(email, common.Sent, rawMail, true)
- w.WriteHeader(http.StatusOK)
- w.Write([]byte{0})
- }
|