mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
Fix access log (#14475)
Fix #14121, #14478. The `AccessLog` middleware has to be after `Contexter` or `APIContexter` so that we can get `LoginUserName` if possible. And also there is a **BREAK** change that it removed internal API access log.
This commit is contained in:
@@ -88,10 +88,6 @@ func commonMiddlewares() []func(http.Handler) http.Handler {
|
||||
next.ServeHTTP(resp, req)
|
||||
})
|
||||
})
|
||||
|
||||
if setting.EnableAccessLog {
|
||||
handlers = append(handlers, accessLogger())
|
||||
}
|
||||
return handlers
|
||||
}
|
||||
|
||||
@@ -168,6 +164,10 @@ func WebRoutes() *web.Route {
|
||||
r.Use(context.Contexter())
|
||||
// Removed: SetAutoHead allow a get request redirect to head if get method is not exist
|
||||
|
||||
if setting.EnableAccessLog {
|
||||
r.Use(context.AccessLogger())
|
||||
}
|
||||
|
||||
r.Use(user.GetNotificationCount)
|
||||
r.Use(repo.GetActiveStopwatch)
|
||||
r.Use(func(ctx *context.Context) {
|
||||
|
Reference in New Issue
Block a user