wp-go/route/route.go

80 lines
2.5 KiB
Go
Raw Normal View History

2022-09-01 02:31:11 +00:00
package route
import (
2022-10-07 15:48:42 +00:00
"github.com/gin-contrib/gzip"
2022-09-24 09:52:06 +00:00
"github.com/gin-contrib/pprof"
2022-09-18 03:57:43 +00:00
"github.com/gin-contrib/sessions"
"github.com/gin-contrib/sessions/cookie"
2022-09-01 02:31:11 +00:00
"github.com/gin-gonic/gin"
2022-09-18 04:34:48 +00:00
"github/fthvgb1/wp-go/actions"
2022-09-29 09:23:02 +00:00
"github/fthvgb1/wp-go/helper"
2022-09-14 05:28:31 +00:00
"github/fthvgb1/wp-go/middleware"
2022-09-13 03:23:28 +00:00
"github/fthvgb1/wp-go/static"
2022-09-14 13:30:59 +00:00
"github/fthvgb1/wp-go/templates"
2022-10-07 15:48:42 +00:00
"github/fthvgb1/wp-go/vars"
2022-09-13 03:23:28 +00:00
"html/template"
"net/http"
2022-09-14 05:28:31 +00:00
"time"
2022-09-01 02:31:11 +00:00
)
func SetupRouter() *gin.Engine {
// Disable Console Color
// gin.DisableConsoleColor()
2022-09-29 09:23:02 +00:00
r := gin.New()
2022-10-09 15:22:18 +00:00
if len(vars.Conf.TrustIps) > 0 {
err := r.SetTrustedProxies(vars.Conf.TrustIps)
if err != nil {
panic(err)
}
}
2022-09-19 04:44:54 +00:00
r.HTMLRender = templates.NewFsTemplate(template.FuncMap{
2022-09-20 14:37:31 +00:00
"unescaped": func(s string) any {
2022-09-14 05:28:31 +00:00
return template.HTML(s)
},
2022-09-20 14:37:31 +00:00
"dateCh": func(t time.Time) any {
2022-09-18 14:06:27 +00:00
return t.Format("2006年 01月 02日")
2022-09-14 05:28:31 +00:00
},
2022-09-19 04:45:41 +00:00
}).SetTemplate()
2022-10-10 13:07:39 +00:00
r.Use(
middleware.ValidateServerNames(),
gin.Logger(),
2022-10-17 12:04:29 +00:00
middleware.RecoverAndSendMail(gin.DefaultErrorWriter),
2022-10-14 09:15:43 +00:00
middleware.FlowLimit(vars.Conf.MaxRequestSleepNum, vars.Conf.MaxRequestNum, vars.Conf.SleepTime),
2022-10-10 13:07:39 +00:00
middleware.SetStaticFileCache,
)
2022-09-17 13:57:45 +00:00
//gzip 因为一般会用nginx做反代时自动使用gzip,所以go这边本身可以不用
2022-10-07 15:48:42 +00:00
if vars.Conf.Gzip {
r.Use(gzip.Gzip(gzip.DefaultCompression, gzip.WithExcludedPaths([]string{
"/wp-includes/", "/wp-content/",
})))
}
2022-09-13 03:23:28 +00:00
f := static.Fs{FS: static.FsEx, Path: "wp-includes"}
2022-09-22 13:59:33 +00:00
r.StaticFileFS("/favicon.ico", "favicon.ico", http.FS(static.FsEx))
2022-09-13 03:23:28 +00:00
r.StaticFS("/wp-includes", http.FS(f))
r.StaticFS("/wp-content", http.FS(static.Fs{
FS: static.FsEx,
Path: "wp-content",
}))
2022-09-18 03:57:43 +00:00
store := cookie.NewStore([]byte("secret"))
r.Use(sessions.Sessions("go-wp", store))
2022-10-14 09:15:43 +00:00
r.GET("/", middleware.SearchLimit(vars.Conf.SingleIpSearchNum), actions.Index)
2022-09-18 04:34:48 +00:00
r.GET("/page/:page", actions.Index)
r.GET("/p/category/:category", actions.Index)
r.GET("/p/category/:category/page/:page", actions.Index)
r.GET("/p/tag/:tag", actions.Index)
r.GET("/p/tag/:tag/page/:page", actions.Index)
r.GET("/p/date/:year/:month", actions.Index)
r.GET("/p/date/:year/:month/page/:page", actions.Index)
r.POST("/login", actions.Login)
r.GET("/p/:id", actions.Detail)
2022-10-07 14:27:34 +00:00
r.GET("/p/:id/feed", actions.PostFeed)
r.GET("/feed", actions.Feed)
2022-10-08 06:01:05 +00:00
r.GET("/comments/feed", actions.CommentsFeed)
r.POST("/comment", middleware.FlowLimit(vars.Conf.MaxRequestSleepNum, 5, vars.Conf.SleepTime), actions.PostComment)
2022-09-29 09:23:02 +00:00
if helper.IsContainInArr(gin.Mode(), []string{gin.DebugMode, gin.TestMode}) {
pprof.Register(r, "dev/pprof")
}
2022-09-01 02:31:11 +00:00
return r
}