Forms are dependent on models and therefore should be in services. This PR also removes the old auth. aliasing Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			116 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package routes
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 	"path"
 | |
| 
 | |
| 	"code.gitea.io/gitea/modules/log"
 | |
| 	"code.gitea.io/gitea/modules/public"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/modules/templates"
 | |
| 	"code.gitea.io/gitea/modules/web"
 | |
| 	"code.gitea.io/gitea/modules/web/middleware"
 | |
| 	"code.gitea.io/gitea/routers"
 | |
| 	"code.gitea.io/gitea/services/forms"
 | |
| 
 | |
| 	"gitea.com/go-chi/session"
 | |
| )
 | |
| 
 | |
| func installRecovery() func(next http.Handler) http.Handler {
 | |
| 	var rnd = templates.HTMLRenderer()
 | |
| 	return func(next http.Handler) http.Handler {
 | |
| 		return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
 | |
| 			defer func() {
 | |
| 				// Why we need this? The first recover will try to render a beautiful
 | |
| 				// error page for user, but the process can still panic again, then
 | |
| 				// we have to just recover twice and send a simple error page that
 | |
| 				// should not panic any more.
 | |
| 				defer func() {
 | |
| 					if err := recover(); err != nil {
 | |
| 						combinedErr := fmt.Sprintf("PANIC: %v\n%s", err, string(log.Stack(2)))
 | |
| 						log.Error(combinedErr)
 | |
| 						if setting.IsProd() {
 | |
| 							http.Error(w, http.StatusText(500), 500)
 | |
| 						} else {
 | |
| 							http.Error(w, combinedErr, 500)
 | |
| 						}
 | |
| 					}
 | |
| 				}()
 | |
| 
 | |
| 				if err := recover(); err != nil {
 | |
| 					combinedErr := fmt.Sprintf("PANIC: %v\n%s", err, string(log.Stack(2)))
 | |
| 					log.Error("%v", combinedErr)
 | |
| 
 | |
| 					lc := middleware.Locale(w, req)
 | |
| 					var store = dataStore{
 | |
| 						Data: templates.Vars{
 | |
| 							"Language":       lc.Language(),
 | |
| 							"CurrentURL":     setting.AppSubURL + req.URL.RequestURI(),
 | |
| 							"i18n":           lc,
 | |
| 							"SignedUserID":   int64(0),
 | |
| 							"SignedUserName": "",
 | |
| 						},
 | |
| 					}
 | |
| 
 | |
| 					w.Header().Set(`X-Frame-Options`, `SAMEORIGIN`)
 | |
| 
 | |
| 					if !setting.IsProd() {
 | |
| 						store.Data["ErrorMsg"] = combinedErr
 | |
| 					}
 | |
| 					err = rnd.HTML(w, 500, "status/500", templates.BaseVars().Merge(store.Data))
 | |
| 					if err != nil {
 | |
| 						log.Error("%v", err)
 | |
| 					}
 | |
| 				}
 | |
| 			}()
 | |
| 
 | |
| 			next.ServeHTTP(w, req)
 | |
| 		})
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // InstallRoutes registers the install routes
 | |
| func InstallRoutes() *web.Route {
 | |
| 	r := web.NewRoute()
 | |
| 	for _, middle := range commonMiddlewares() {
 | |
| 		r.Use(middle)
 | |
| 	}
 | |
| 
 | |
| 	r.Use(session.Sessioner(session.Options{
 | |
| 		Provider:       setting.SessionConfig.Provider,
 | |
| 		ProviderConfig: setting.SessionConfig.ProviderConfig,
 | |
| 		CookieName:     setting.SessionConfig.CookieName,
 | |
| 		CookiePath:     setting.SessionConfig.CookiePath,
 | |
| 		Gclifetime:     setting.SessionConfig.Gclifetime,
 | |
| 		Maxlifetime:    setting.SessionConfig.Maxlifetime,
 | |
| 		Secure:         setting.SessionConfig.Secure,
 | |
| 		Domain:         setting.SessionConfig.Domain,
 | |
| 	}))
 | |
| 
 | |
| 	r.Use(installRecovery())
 | |
| 
 | |
| 	r.Use(public.Custom(
 | |
| 		&public.Options{
 | |
| 			SkipLogging: setting.DisableRouterLog,
 | |
| 		},
 | |
| 	))
 | |
| 	r.Use(public.Static(
 | |
| 		&public.Options{
 | |
| 			Directory:   path.Join(setting.StaticRootPath, "public"),
 | |
| 			SkipLogging: setting.DisableRouterLog,
 | |
| 		},
 | |
| 	))
 | |
| 
 | |
| 	r.Use(routers.InstallInit)
 | |
| 	r.Get("/", routers.Install)
 | |
| 	r.Post("/", web.Bind(forms.InstallForm{}), routers.InstallPost)
 | |
| 	r.NotFound(func(w http.ResponseWriter, req *http.Request) {
 | |
| 		http.Redirect(w, req, setting.AppURL, 302)
 | |
| 	})
 | |
| 	return r
 | |
| }
 |