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.
go-fly/server.go

87 lines
2.5 KiB

4 years ago
package main
import (
"github.com/gin-gonic/gin"
4 years ago
"github.com/taoshihan1991/imaptool/controller"
"github.com/taoshihan1991/imaptool/tmpl"
4 years ago
"golang.org/x/net/websocket"
4 years ago
"log"
"net/http"
4 years ago
"time"
4 years ago
)
4 years ago
func main() {
4 years ago
baseServer := "127.0.0.1:8080"
log.Println("start server...\r\ngohttp://" + baseServer)
engine := gin.Default()
4 years ago
engine.LoadHTMLGlob("static/html/*")
//登陆界面
4 years ago
engine.GET("/login", tmpl.PageLogin)
//咨询界面
4 years ago
engine.GET("/chat_page", tmpl.PageChat)
//登陆验证
4 years ago
engine.POST("/check", controller.LoginCheckPass)
//框架界面
engine.GET("/main", tmpl.PageMain)
//框架界面
engine.GET("/chat_main", tmpl.PageChatMain)
//验证权限
engine.GET("/check_auth", controller.MainCheckAuth)
//------------------old code-----------------------------
4 years ago
mux := &http.ServeMux{}
//根路径
4 years ago
mux.HandleFunc("/", controller.ActionIndex)
//邮件夹
4 years ago
mux.HandleFunc("/list", controller.ActionFolder)
//登陆界面
//mux.HandleFunc("/login", controller.ActionLogin)
//验证接口
4 years ago
mux.HandleFunc("/check", controller.LoginCheck)
//邮件夹接口
4 years ago
mux.HandleFunc("/folders", controller.FoldersList)
//新邮件夹接口
4 years ago
mux.HandleFunc("/folder_dirs", controller.FolderDir)
//邮件接口
4 years ago
mux.HandleFunc("/mail", controller.FolderMail)
//详情界面
4 years ago
mux.HandleFunc("/view", controller.ActionDetail)
//写信界面
4 years ago
mux.HandleFunc("/write", controller.ActionWrite)
//框架界面
4 years ago
mux.HandleFunc("/main", controller.ActionMain)
//设置界面
4 years ago
mux.HandleFunc("/setting", controller.ActionSetting)
//设置账户接口
4 years ago
mux.HandleFunc("/setting_account", controller.SettingAccount)
//发送邮件接口
4 years ago
mux.HandleFunc("/send", controller.FolderSend)
4 years ago
//聊天界面
4 years ago
mux.HandleFunc("/chat_main", controller.ActionChatMain)
//新邮件提醒服务
4 years ago
mux.HandleFunc("/push_mail", controller.PushMailServer)
//聊天界面
4 years ago
mux.HandleFunc("/chat_page", controller.ActionChatPage)
4 years ago
//聊天服务
4 years ago
mux.Handle("/chat_server", websocket.Handler(controller.ChatServer))
//获取在线用户
mux.HandleFunc("/chat_users", controller.ChatUsers)
//设置mysql
4 years ago
mux.HandleFunc("/setting_mysql", controller.ActionMysqlSet)
//后台任务
controller.TimerSessFile()
4 years ago
//监听端口
4 years ago
//http.ListenAndServe(":8080", nil)
//var myHandler http.Handler
s := &http.Server{
Addr: ":8080",
Handler: mux,
ReadTimeout: 30 * time.Second,
WriteTimeout: 30 * time.Second,
MaxHeaderBytes: 1 << 20,
}
//---------------old code end------------------
engine.Run(":8080")
4 years ago
s.ListenAndServe()
4 years ago
}