mirror of
https://gitee.com/johng/gf
synced 2026-06-24 00:40:38 +08:00
35 lines
616 B
Go
35 lines
616 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
)
|
|
|
|
func MiddlewareAuth(r *ghttp.Request) {
|
|
token := r.Get("token")
|
|
if token == "123456" {
|
|
r.Middleware.Next()
|
|
} else {
|
|
r.Response.WriteStatus(http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
func MiddlewareCORS(r *ghttp.Request) {
|
|
r.Response.CORSDefault()
|
|
r.Middleware.Next()
|
|
}
|
|
|
|
func main() {
|
|
s := g.Server()
|
|
s.Group("/api.v2", func(group *ghttp.RouterGroup) {
|
|
group.Middleware(MiddlewareAuth, MiddlewareCORS)
|
|
group.ALL("/user/list", func(r *ghttp.Request) {
|
|
r.Response.Write("list")
|
|
})
|
|
})
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|