You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package controller
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/taoshihan1991/imaptool/tools"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
func Index(c *gin.Context) {
|
|
|
|
c.Redirect(302,"/index")
|
|
|
|
}
|
|
|
|
//首页跳转
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|