2020-12-30 13:18:43 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2018-04-19 19:11:10 +08:00
|
|
|
//
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-04-19 19:11:10 +08:00
|
|
|
|
|
|
|
package ghttp
|
|
|
|
|
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
"fmt"
|
2021-11-13 23:23:55 +08:00
|
|
|
|
2021-10-11 21:41:56 +08:00
|
|
|
"github.com/gogf/gf/v2/errors/gerror"
|
2021-12-02 21:22:02 +08:00
|
|
|
"github.com/gogf/gf/v2/text/gstr"
|
2018-04-19 19:11:10 +08:00
|
|
|
)
|
|
|
|
|
2020-05-07 23:05:33 +08:00
|
|
|
// handleAccessLog handles the access logging for server.
|
2018-04-19 19:11:10 +08:00
|
|
|
func (s *Server) handleAccessLog(r *Request) {
|
2019-06-19 09:06:52 +08:00
|
|
|
if !s.IsAccessLogEnabled() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-09 21:27:02 +08:00
|
|
|
var (
|
|
|
|
scheme = "http"
|
|
|
|
proto = r.Header.Get("X-Forwarded-Proto")
|
|
|
|
)
|
|
|
|
|
|
|
|
if r.TLS != nil || gstr.Equal(proto, "https") {
|
2019-06-19 09:06:52 +08:00
|
|
|
scheme = "https"
|
|
|
|
}
|
2021-09-27 21:27:24 +08:00
|
|
|
s.Logger().File(s.config.AccessLogPattern).
|
2019-12-25 21:22:06 +08:00
|
|
|
Stdout(s.config.LogStdout).
|
|
|
|
Printf(
|
2021-09-27 21:27:24 +08:00
|
|
|
r.Context(),
|
2019-12-25 21:22:06 +08:00
|
|
|
`%d "%s %s %s %s %s" %.3f, %s, "%s", "%s"`,
|
2021-12-02 21:22:02 +08:00
|
|
|
r.Response.Status, r.Method, scheme, r.Host, r.URL.String(), r.Proto,
|
2019-12-25 21:22:06 +08:00
|
|
|
float64(r.LeaveTime-r.EnterTime)/1000,
|
|
|
|
r.GetClientIp(), r.Referer(), r.UserAgent(),
|
|
|
|
)
|
2018-04-19 19:11:10 +08:00
|
|
|
}
|
|
|
|
|
2020-05-07 23:05:33 +08:00
|
|
|
// handleErrorLog handles the error logging for server.
|
2019-09-14 22:53:28 +08:00
|
|
|
func (s *Server) handleErrorLog(err error, r *Request) {
|
2020-05-07 23:05:33 +08:00
|
|
|
// It does nothing if error logging is custom disabled.
|
2019-06-19 09:06:52 +08:00
|
|
|
if !s.IsErrorLogEnabled() {
|
|
|
|
return
|
|
|
|
}
|
2021-12-02 21:22:02 +08:00
|
|
|
var (
|
|
|
|
code = gerror.Code(err)
|
|
|
|
scheme = "http"
|
|
|
|
codeDetail = code.Detail()
|
2022-03-09 21:29:49 +08:00
|
|
|
proto = r.Header.Get("X-Forwarded-Proto")
|
2021-12-02 21:22:02 +08:00
|
|
|
codeDetailStr string
|
|
|
|
)
|
2022-03-09 21:29:49 +08:00
|
|
|
if r.TLS != nil || gstr.Equal(proto, "https") {
|
2019-05-06 09:35:39 +08:00
|
|
|
scheme = "https"
|
|
|
|
}
|
2021-12-02 21:22:02 +08:00
|
|
|
if codeDetail != nil {
|
|
|
|
codeDetailStr = gstr.Replace(fmt.Sprintf(`%+v`, codeDetail), "\n", " ")
|
|
|
|
}
|
2020-02-27 17:09:12 +08:00
|
|
|
content := fmt.Sprintf(
|
2021-12-02 21:22:02 +08:00
|
|
|
`%d "%s %s %s %s %s" %.3f, %s, "%s", "%s", %d, "%s", "%+v"`,
|
2019-11-20 18:45:09 +08:00
|
|
|
r.Response.Status, r.Method, scheme, r.Host, r.URL.String(), r.Proto,
|
2019-11-15 22:50:31 +08:00
|
|
|
float64(r.LeaveTime-r.EnterTime)/1000,
|
|
|
|
r.GetClientIp(), r.Referer(), r.UserAgent(),
|
2021-12-02 21:22:02 +08:00
|
|
|
code.Code(), code.Message(), codeDetailStr,
|
2019-11-15 22:50:31 +08:00
|
|
|
)
|
2020-04-28 15:04:07 +08:00
|
|
|
if s.config.ErrorStack {
|
|
|
|
if stack := gerror.Stack(err); stack != "" {
|
|
|
|
content += "\nStack:\n" + stack
|
|
|
|
} else {
|
|
|
|
content += ", " + err.Error()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
content += ", " + err.Error()
|
2019-11-20 18:45:09 +08:00
|
|
|
}
|
2021-09-27 21:27:24 +08:00
|
|
|
s.Logger().File(s.config.ErrorLogPattern).
|
2019-11-20 18:45:09 +08:00
|
|
|
Stdout(s.config.LogStdout).
|
2021-09-27 21:27:24 +08:00
|
|
|
Print(r.Context(), content)
|
2018-04-19 19:11:10 +08:00
|
|
|
}
|