mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix recovery middleware to render gitea style page. (#13857)
* Some changes to fix recovery * Move Recovery to middlewares * Remove trace code * Fix lint * add session middleware and remove dependent on macaron for sso * Fix panic 500 page rendering * Fix bugs * Fix fmt * Fix vendor * recover unnecessary change * Fix lint and addd some comments about the copied codes. * Use util.StatDir instead of com.StatDir Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
		| @@ -5,10 +5,9 @@ | ||||
| package sso | ||||
|  | ||||
| import ( | ||||
| 	"code.gitea.io/gitea/models" | ||||
| 	"net/http" | ||||
|  | ||||
| 	"gitea.com/macaron/macaron" | ||||
| 	"gitea.com/macaron/session" | ||||
| 	"code.gitea.io/gitea/models" | ||||
| ) | ||||
|  | ||||
| // Ensure the struct implements the interface. | ||||
| @@ -40,7 +39,7 @@ func (s *Session) IsEnabled() bool { | ||||
| // VerifyAuthData checks if there is a user uid stored in the session and returns the user | ||||
| // object for that uid. | ||||
| // Returns nil if there is no user uid stored in the session. | ||||
| func (s *Session) VerifyAuthData(ctx *macaron.Context, sess session.Store) *models.User { | ||||
| func (s *Session) VerifyAuthData(req *http.Request, store DataStore, sess SessionStore) *models.User { | ||||
| 	user := SessionUser(sess) | ||||
| 	if user != nil { | ||||
| 		return user | ||||
|   | ||||
		Reference in New Issue
	
	Block a user