mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Refactor web package and context package (#25298)
1. The "web" package shouldn't depends on "modules/context" package, instead, let each "web context" register themselves to the "web" package. 2. The old Init/Free doesn't make sense, so simplify it * The ctx in "Init(ctx)" is never used, and shouldn't be used that way * The "Free" is never called and shouldn't be called because the SSPI instance is shared --------- Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		@@ -8,8 +8,8 @@ import (
 | 
			
		||||
	"strings"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"code.gitea.io/gitea/modules/context"
 | 
			
		||||
	"code.gitea.io/gitea/modules/log"
 | 
			
		||||
	"code.gitea.io/gitea/modules/web/types"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// NewLoggerHandler is a handler that will log routing to the router log taking account of
 | 
			
		||||
@@ -86,8 +86,8 @@ func logPrinter(logger log.Logger) func(trigger Event, record *requestRecord) {
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		var status int
 | 
			
		||||
		if v, ok := record.responseWriter.(context.ResponseWriter); ok {
 | 
			
		||||
			status = v.Status()
 | 
			
		||||
		if v, ok := record.responseWriter.(types.ResponseStatusProvider); ok {
 | 
			
		||||
			status = v.WrittenStatus()
 | 
			
		||||
		}
 | 
			
		||||
		logf := log.Info
 | 
			
		||||
		if strings.HasPrefix(req.RequestURI, "/assets/") {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user