parent
ea9d8fc457
commit
2c1fae79b7
@ -0,0 +1,138 @@
|
|||||||
|
package controller
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/taoshihan1991/imaptool/tmpl"
|
||||||
|
"github.com/taoshihan1991/imaptool/tools"
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
"strconv"
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
const PageSize = 20
|
||||||
|
//输出列表
|
||||||
|
func ActionFolder(w http.ResponseWriter, r *http.Request){
|
||||||
|
fid:=tools.GetUrlArg(r,"fid")
|
||||||
|
currentPage, _ :=strconv.Atoi(tools.GetUrlArg(r,"page"))
|
||||||
|
if fid == "" {
|
||||||
|
fid = "INBOX"
|
||||||
|
}
|
||||||
|
if currentPage == 0 {
|
||||||
|
currentPage = 1
|
||||||
|
}
|
||||||
|
render := new(tools.IndexData)
|
||||||
|
render.CurrentPage = currentPage
|
||||||
|
render.Fid = fid
|
||||||
|
tmpl.RenderList(w, render)
|
||||||
|
}
|
||||||
|
//获取邮件夹接口
|
||||||
|
func FolderDir(w http.ResponseWriter, r *http.Request){
|
||||||
|
fid:=tools.GetUrlArg(r,"fid")
|
||||||
|
|
||||||
|
if fid == "" {
|
||||||
|
fid = "INBOX"
|
||||||
|
}
|
||||||
|
|
||||||
|
mailServer := tools.GetMailServerFromCookie(r)
|
||||||
|
w.Header().Set("content-type", "text/json;charset=utf-8;")
|
||||||
|
|
||||||
|
if mailServer == nil {
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "验证失败"})
|
||||||
|
w.Write(msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
result := make(map[string]interface{})
|
||||||
|
folders := tools.GetFolders(mailServer.Server, mailServer.Email, mailServer.Password, fid)
|
||||||
|
result["folders"] = folders
|
||||||
|
result["total"] = folders[fid]
|
||||||
|
result["fid"] = fid
|
||||||
|
msg, _ := json.Marshal(tools.JsonFolders{
|
||||||
|
JsonResult: tools.JsonResult{Code: 200, Msg: "获取成功"},
|
||||||
|
Result: result,
|
||||||
|
})
|
||||||
|
w.Write(msg)
|
||||||
|
}
|
||||||
|
//邮件夹接口
|
||||||
|
func FoldersList(w http.ResponseWriter, r *http.Request) {
|
||||||
|
fid:=tools.GetUrlArg(r,"fid")
|
||||||
|
currentPage, _ :=strconv.Atoi(tools.GetUrlArg(r,"page"))
|
||||||
|
|
||||||
|
if fid == "" {
|
||||||
|
fid = "INBOX"
|
||||||
|
}
|
||||||
|
if currentPage == 0 {
|
||||||
|
currentPage = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
mailServer := tools.GetMailServerFromCookie(r)
|
||||||
|
w.Header().Set("content-type", "text/json;charset=utf-8;")
|
||||||
|
|
||||||
|
if mailServer == nil {
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "验证失败"})
|
||||||
|
w.Write(msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
wg.Add(2)
|
||||||
|
result := make(map[string]interface{})
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
folders := tools.GetFolders(mailServer.Server, mailServer.Email, mailServer.Password, fid)
|
||||||
|
result["folders"] = folders
|
||||||
|
result["total"] = folders[fid]
|
||||||
|
}()
|
||||||
|
go func() {
|
||||||
|
defer wg.Done()
|
||||||
|
mails := tools.GetFolderMail(mailServer.Server, mailServer.Email, mailServer.Password, fid, currentPage, PageSize)
|
||||||
|
result["mails"] = mails
|
||||||
|
}()
|
||||||
|
wg.Wait()
|
||||||
|
result["pagesize"] = PageSize
|
||||||
|
result["fid"] = fid
|
||||||
|
|
||||||
|
msg, _ := json.Marshal(tools.JsonFolders{
|
||||||
|
JsonResult: tools.JsonResult{Code: 200, Msg: "获取成功"},
|
||||||
|
Result: result,
|
||||||
|
})
|
||||||
|
w.Write(msg)
|
||||||
|
}
|
||||||
|
//发送邮件接口
|
||||||
|
func FolderSend(w http.ResponseWriter, r *http.Request){
|
||||||
|
w.Header().Set("content-type", "text/json;charset=utf-8;")
|
||||||
|
mailServer := tools.GetMailServerFromCookie(r)
|
||||||
|
|
||||||
|
if mailServer == nil {
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "验证失败"})
|
||||||
|
w.Write(msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
bodyBytes,err:=ioutil.ReadAll(r.Body)
|
||||||
|
if err!=nil{
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "操作失败,"+err.Error()})
|
||||||
|
w.Write(msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var sendData tools.SmtpBody
|
||||||
|
err = json.Unmarshal(bodyBytes, &sendData)
|
||||||
|
if err!=nil{
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "操作失败,"+err.Error()})
|
||||||
|
w.Write(msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
smtpServer:=sendData.Smtp
|
||||||
|
smtpFrom:=mailServer.Email
|
||||||
|
smtpTo:=sendData.To
|
||||||
|
smtpBody:=sendData.Body
|
||||||
|
smtpPass:=mailServer.Password
|
||||||
|
smtpSubject:=sendData.Subject
|
||||||
|
err=tools.Send(smtpServer,smtpFrom,smtpPass,smtpTo,smtpSubject,smtpBody)
|
||||||
|
if err!=nil{
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: err.Error()})
|
||||||
|
w.Write(msg)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 200, Msg: "发送成功!"})
|
||||||
|
w.Write(msg)
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
package controller
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/taoshihan1991/imaptool/tools"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
//首页跳转
|
||||||
|
func ActionIndex(w http.ResponseWriter, r *http.Request){
|
||||||
|
if r.URL.RequestURI() == "/favicon.ico" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
mailServer := tools.GetMailServerFromCookie(r)
|
||||||
|
if mailServer == nil {
|
||||||
|
http.Redirect(w, r, "/login", 302)
|
||||||
|
} else {
|
||||||
|
res := tools.CheckEmailPassword(mailServer.Server, mailServer.Email, mailServer.Password)
|
||||||
|
if res {
|
||||||
|
http.Redirect(w, r, "/main", 302)
|
||||||
|
} else {
|
||||||
|
http.Redirect(w, r, "/login", 302)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
package controller
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
|
"github.com/taoshihan1991/imaptool/tools"
|
||||||
|
"html/template"
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
//登陆界面
|
||||||
|
func ActionLogin(w http.ResponseWriter, r *http.Request){
|
||||||
|
html := tools.FileGetContent("html/login.html")
|
||||||
|
t, _ := template.New("login").Parse(html)
|
||||||
|
t.Execute(w, nil)
|
||||||
|
}
|
||||||
|
//验证接口
|
||||||
|
func LoginCheck(w http.ResponseWriter, r *http.Request) {
|
||||||
|
email := r.PostFormValue("email")
|
||||||
|
server := r.PostFormValue("server")
|
||||||
|
password := r.PostFormValue("password")
|
||||||
|
msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "验证失败"})
|
||||||
|
|
||||||
|
w.Header().Set("content-type", "text/json;charset=utf-8;")
|
||||||
|
if email != "" && server != "" && password != "" {
|
||||||
|
res := tools.CheckEmailPassword(server, email, password)
|
||||||
|
if res {
|
||||||
|
msg, _ = json.Marshal(tools.JsonResult{Code: 200, Msg: "验证成功,正在跳转..."})
|
||||||
|
auth := fmt.Sprintf("%s|%s|%s", server, email, password)
|
||||||
|
tools.SetCookie("auth", auth, &w)
|
||||||
|
w.Write(msg)
|
||||||
|
} else {
|
||||||
|
w.Write(msg)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
w.Write(msg)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue