123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /*
- * 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 (
- "fmt"
- template "html/template"
- "log"
- "net/http"
- "strings"
- "git.semlanik.org/semlanik/gostfix/common"
- "git.semlanik.org/semlanik/gostfix/utils"
- )
- func (s *Server) handleMailRequest(w http.ResponseWriter, r *http.Request, user, mailId string) {
- if user == "" {
- log.Printf("User could not be empty. Invalid usage of handleMailRequest")
- panic(nil)
- }
- if mailId == "" {
- s.error(http.StatusBadRequest, "Invalid mail id requested", w)
- return
- }
- switch r.Method {
- case "GET":
- s.handleMailDetails(w, user, mailId)
- case "DELETE":
- s.handleMailDelete(w, user, mailId)
- case "PATCH":
- s.handleMailUpdate(w, r, user, mailId)
- }
- }
- func (s *Server) handleMailDetails(w http.ResponseWriter, user, mailId string) {
- mail, err := s.storage.GetMail(user, mailId)
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to read mail", w)
- return
- }
- text := mail.Mail.Body.RichText
- if text == "" {
- text = strings.Replace(mail.Mail.Body.PlainText, "\n", "</br>", -1)
- } else {
- utils.SanitizeTags(&text)
- }
- s.storage.SetRead(user, mailId, true)
- fmt.Fprint(w, s.templater.ExecuteDetails(&struct {
- From string
- To string
- Subject string
- Text template.HTML
- MailId string
- Read bool
- Trash bool
- Attachments []*common.AttachmentHeader
- }{
- From: mail.Mail.Header.From,
- To: mail.Mail.Header.To,
- Subject: mail.Mail.Header.Subject,
- Text: template.HTML(text),
- MailId: mailId,
- Read: false,
- Trash: mail.Trash ||
- mail.Folder == common.Trash, //TODO: Legacy for old databases remove soon
- Attachments: mail.Mail.Body.Attachments,
- }))
- }
- func (s *Server) handleMailUpdate(w http.ResponseWriter, r *http.Request, user, mailId string) {
- updateMap := map[string]interface{}{}
- if r.FormValue("read") == "true" {
- updateMap["read"] = true
- } else if r.FormValue("read") == "false" {
- updateMap["read"] = false
- }
- if r.FormValue("trash") == "true" {
- updateMap["trash"] = true
- } else if r.FormValue("trash") == "false" {
- updateMap["trash"] = false
- }
- if len(updateMap) == 0 {
- s.error(http.StatusBadRequest, "Unable to proccess mail", w)
- return
- }
- err := s.storage.UpdateMail(user, mailId, &updateMap)
- if err != nil {
- s.error(http.StatusInternalServerError, "Unable to proccess mail", w)
- return
- }
- w.WriteHeader(http.StatusOK)
- w.Write([]byte{})
- }
- func (s *Server) handleMailDelete(w http.ResponseWriter, user, mailId string) {
- log.Printf("Delete mail")
- err := s.storage.DeleteMail(user, mailId)
- if err != nil {
- s.error(http.StatusInternalServerError, "Could not delete email", w)
- }
- }
|