You cannot 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-zero/example/http/demo/main.go

71 lines
1.4 KiB
Go

4 years ago
package main
import (
"flag"
"net/http"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/core/service"
"github.com/tal-tech/go-zero/rest"
"github.com/tal-tech/go-zero/rest/httpx"
4 years ago
)
var (
port = flag.Int("port", 3333, "the port to listen")
timeout = flag.Int64("timeout", 0, "timeout of milliseconds")
)
type Request struct {
User string `form:"user,options=a|b"`
}
func first(next http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
w.Header().Add("X-Middleware", "first")
next(w, r)
}
}
func second(next http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
w.Header().Add("X-Middleware", "second")
next(w, r)
}
}
func handle(w http.ResponseWriter, r *http.Request) {
var req Request
err := httpx.Parse(r, &req)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
httpx.OkJson(w, "helllo, "+req.User)
}
func main() {
flag.Parse()
engine := rest.MustNewServer(rest.RestConf{
4 years ago
ServiceConf: service.ServiceConf{
Log: logx.LogConf{
Mode: "console",
},
},
Port: *port,
Timeout: *timeout,
MaxConns: 500,
}, rest.WithNotAllowedHandler(rest.CorsHandler()))
4 years ago
defer engine.Stop()
engine.Use(first)
engine.Use(second)
engine.AddRoute(rest.Route{
4 years ago
Method: http.MethodGet,
Path: "/",
Handler: handle,
})
engine.Start()
}