gf/net/ghttp/ghttp_server_status.go

49 lines
1.6 KiB
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package ghttp
import (
2019-06-19 09:06:52 +08:00
"fmt"
)
2020-05-09 19:19:42 +08:00
// getStatusHandler retrieves and returns the handler for given status code.
func (s *Server) getStatusHandler(status int, r *Request) []HandlerFunc {
domains := []string{r.GetHost(), DefaultDomainName}
2019-06-19 09:06:52 +08:00
for _, domain := range domains {
if f, ok := s.statusHandlerMap[s.statusHandlerKey(status, domain)]; ok {
return f
}
}
return nil
}
// addStatusHandler sets the handler for given status code.
// The parameter `pattern` is like: domain#status
func (s *Server) addStatusHandler(pattern string, handler HandlerFunc) {
if s.statusHandlerMap[pattern] == nil {
s.statusHandlerMap[pattern] = make([]HandlerFunc, 0)
}
s.statusHandlerMap[pattern] = append(s.statusHandlerMap[pattern], handler)
}
2020-05-09 19:19:42 +08:00
// statusHandlerKey creates and returns key for given status and domain.
2019-06-19 09:06:52 +08:00
func (s *Server) statusHandlerKey(status int, domain string) string {
return fmt.Sprintf("%s#%d", domain, status)
}
2020-05-09 19:19:42 +08:00
// BindStatusHandler registers handler for given status code.
2019-06-19 09:06:52 +08:00
func (s *Server) BindStatusHandler(status int, handler HandlerFunc) {
s.addStatusHandler(s.statusHandlerKey(status, DefaultDomainName), handler)
}
2020-05-09 19:19:42 +08:00
// BindStatusHandlerByMap registers handler for given status code using map.
2019-06-19 09:06:52 +08:00
func (s *Server) BindStatusHandlerByMap(handlerMap map[int]HandlerFunc) {
for k, v := range handlerMap {
s.BindStatusHandler(k, v)
}
}