| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |    it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |    the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |    (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |    GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |    along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package router | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 	"codeberg.org/gruf/go-debug" | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							|  |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	"github.com/spf13/viper" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 	"golang.org/x/crypto/acme/autocert" | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	readTimeout       = 60 * time.Second | 
					
						
							|  |  |  | 	writeTimeout      = 30 * time.Second | 
					
						
							|  |  |  | 	idleTimeout       = 30 * time.Second | 
					
						
							|  |  |  | 	readHeaderTimeout = 30 * time.Second | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | // Router provides the REST interface for gotosocial, using gin. | 
					
						
							|  |  |  | type Router interface { | 
					
						
							|  |  |  | 	// Attach a gin handler to the router with the given method and path | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	AttachHandler(method string, path string, f gin.HandlerFunc) | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	// Attach a gin middleware to the router that will be used globally | 
					
						
							|  |  |  | 	AttachMiddleware(handler gin.HandlerFunc) | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02:00
										 |  |  | 	// Attach 404 NoRoute handler | 
					
						
							|  |  |  | 	AttachNoRouteHandler(handler gin.HandlerFunc) | 
					
						
							| 
									
										
										
										
											2022-03-13 18:35:26 +01:00
										 |  |  | 	// Add Gin StaticFS handler | 
					
						
							| 
									
										
										
										
											2021-07-14 17:22:51 +02:00
										 |  |  | 	AttachStaticFS(relativePath string, fs http.FileSystem) | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	// Start the router | 
					
						
							|  |  |  | 	Start() | 
					
						
							|  |  |  | 	// Stop the router | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	Stop(ctx context.Context) error | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // router fulfils the Router interface using gin and logrus | 
					
						
							|  |  |  | type router struct { | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 	engine      *gin.Engine | 
					
						
							|  |  |  | 	srv         *http.Server | 
					
						
							|  |  |  | 	certManager *autocert.Manager | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-13 18:35:26 +01:00
										 |  |  | // Add Gin StaticFS handler | 
					
						
							| 
									
										
										
										
											2021-07-14 17:22:51 +02:00
										 |  |  | func (r *router) AttachStaticFS(relativePath string, fs http.FileSystem) { | 
					
						
							|  |  |  | 	r.engine.StaticFS(relativePath, fs) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 18:55:24 +02:00
										 |  |  | // Start starts the router nicely. It will serve two handlers if letsencrypt is enabled, and only the web/API handler if letsencrypt is not enabled. | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | func (r *router) Start() { | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		keys = config.Keys | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// listen is the server start function, by | 
					
						
							|  |  |  | 		// default pointing to regular HTTP listener, | 
					
						
							|  |  |  | 		// but updated to TLS if LetsEncrypt is enabled. | 
					
						
							|  |  |  | 		listen = r.srv.ListenAndServe | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if viper.GetBool(keys.LetsEncryptEnabled) { | 
					
						
							|  |  |  | 		// LetsEncrypt support is enabled | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Prepare an HTTPS-redirect handler for LetsEncrypt fallback | 
					
						
							|  |  |  | 		redirect := http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 			target := "https://" + r.Host + r.URL.Path | 
					
						
							|  |  |  | 			if len(r.URL.RawQuery) > 0 { | 
					
						
							|  |  |  | 				target += "?" + r.URL.RawQuery | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			http.Redirect(rw, r, target, http.StatusTemporaryRedirect) | 
					
						
							|  |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		go func() { | 
					
						
							| 
									
										
										
										
											2022-05-15 10:10:55 +01:00
										 |  |  | 			// Take our own copy of HTTP server | 
					
						
							|  |  |  | 			// with updated autocert manager endpoint | 
					
						
							|  |  |  | 			srv := (*r.srv) //nolint | 
					
						
							|  |  |  | 			srv.Handler = r.certManager.HTTPHandler(redirect) | 
					
						
							|  |  |  | 			srv.Addr = fmt.Sprintf("%s:%d", | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 				viper.GetString(keys.BindAddress), | 
					
						
							|  |  |  | 				viper.GetInt(keys.LetsEncryptPort), | 
					
						
							|  |  |  | 			) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-15 10:10:55 +01:00
										 |  |  | 			// Start the LetsEncrypt autocert manager HTTP server. | 
					
						
							|  |  |  | 			logrus.Infof("letsencrypt listening on %s", srv.Addr) | 
					
						
							|  |  |  | 			if err := srv.ListenAndServe(); err != nil && | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 				err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2021-12-20 10:34:57 +01:00
										 |  |  | 				logrus.Fatalf("letsencrypt: listen: %s", err) | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 		// TLS is enabled, update the listen function | 
					
						
							|  |  |  | 		listen = func() error { return r.srv.ListenAndServeTLS("", "") } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Pass the server handler through a debug pprof middleware handler. | 
					
						
							|  |  |  | 	// For standard production builds this will be a no-op, but when the | 
					
						
							|  |  |  | 	// "debug" or "debugenv" build-tag is set pprof stats will be served | 
					
						
							|  |  |  | 	// at the standard "/debug/pprof" URL. | 
					
						
							|  |  |  | 	r.srv.Handler = debug.WithPprof(r.srv.Handler) | 
					
						
							|  |  |  | 	if debug.DEBUG() { | 
					
						
							|  |  |  | 		// Profiling requires timeouts longer than 30s, so reset these. | 
					
						
							|  |  |  | 		logrus.Warn("resetting http.Server{} timeout to support profiling") | 
					
						
							|  |  |  | 		r.srv.ReadTimeout = 0 | 
					
						
							|  |  |  | 		r.srv.WriteTimeout = 0 | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Start the main listener. | 
					
						
							|  |  |  | 	go func() { | 
					
						
							|  |  |  | 		logrus.Infof("listening on %s", r.srv.Addr) | 
					
						
							|  |  |  | 		if err := listen(); err != nil && err != http.ErrServerClosed { | 
					
						
							|  |  |  | 			logrus.Fatalf("listen: %s", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Stop shuts down the router nicely | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | func (r *router) Stop(ctx context.Context) error { | 
					
						
							|  |  |  | 	return r.srv.Shutdown(ctx) | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | // New returns a new Router with the specified configuration. | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | // | 
					
						
							|  |  |  | // The given DB is only used in the New function for parsing config values, and is not otherwise | 
					
						
							|  |  |  | // pinned to the router. | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | func New(ctx context.Context, db db.DB) (Router, error) { | 
					
						
							|  |  |  | 	keys := config.Keys | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 13:26:45 +02:00
										 |  |  | 	gin.SetMode(gin.ReleaseMode) | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// create the actual engine here -- this is the core request routing handler for gts | 
					
						
							| 
									
										
										
										
											2021-08-27 13:26:45 +02:00
										 |  |  | 	engine := gin.New() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	engine.Use(gin.RecoveryWithWriter(logrus.StandardLogger().Writer())) | 
					
						
							|  |  |  | 	engine.Use(loggingMiddleware()) | 
					
						
							| 
									
										
										
										
											2021-08-27 13:26:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// 8 MiB | 
					
						
							|  |  |  | 	engine.MaxMultipartMemory = 8 << 20 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-26 16:15:36 +02:00
										 |  |  | 	// set up IP forwarding via x-forward-* headers. | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	trustedProxies := viper.GetStringSlice(keys.TrustedProxies) | 
					
						
							|  |  |  | 	if err := engine.SetTrustedProxies(trustedProxies); err != nil { | 
					
						
							| 
									
										
										
										
											2021-07-26 16:15:36 +02:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	// enable cors on the engine | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if err := useCors(engine); err != nil { | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 12:12:41 +01:00
										 |  |  | 	// enable gzip compression on the engine | 
					
						
							|  |  |  | 	if err := useGzip(engine); err != nil { | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// enable session store middleware on the engine | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if err := useSession(ctx, db, engine); err != nil { | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 12:12:41 +01:00
										 |  |  | 	// set template functions | 
					
						
							|  |  |  | 	LoadTemplateFunctions(engine) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// load templates onto the engine | 
					
						
							|  |  |  | 	if err := loadTemplates(engine); err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	// create the http server here, passing the gin engine as handler | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	bindAddress := viper.GetString(keys.BindAddress) | 
					
						
							|  |  |  | 	port := viper.GetInt(keys.Port) | 
					
						
							|  |  |  | 	listen := fmt.Sprintf("%s:%d", bindAddress, port) | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 	s := &http.Server{ | 
					
						
							| 
									
										
										
										
											2021-11-22 10:55:52 +01:00
										 |  |  | 		Addr:              listen, | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 		Handler:           engine, | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		ReadTimeout:       readTimeout, | 
					
						
							|  |  |  | 		WriteTimeout:      writeTimeout, | 
					
						
							|  |  |  | 		IdleTimeout:       idleTimeout, | 
					
						
							|  |  |  | 		ReadHeaderTimeout: readHeaderTimeout, | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// We need to spawn the underlying server slightly differently depending on whether lets encrypt is enabled or not. | 
					
						
							|  |  |  | 	// In either case, the gin engine will still be used for routing requests. | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	leEnabled := viper.GetBool(keys.LetsEncryptEnabled) | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	var m *autocert.Manager | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if leEnabled { | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		// le IS enabled, so roll up an autocert manager for handling letsencrypt requests | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 		host := viper.GetString(keys.Host) | 
					
						
							|  |  |  | 		leCertDir := viper.GetString(keys.LetsEncryptCertDir) | 
					
						
							|  |  |  | 		leEmailAddress := viper.GetString(keys.LetsEncryptEmailAddress) | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		m = &autocert.Manager{ | 
					
						
							|  |  |  | 			Prompt:     autocert.AcceptTOS, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 			HostPolicy: autocert.HostWhitelist(host), | 
					
						
							|  |  |  | 			Cache:      autocert.DirCache(leCertDir), | 
					
						
							|  |  |  | 			Email:      leEmailAddress, | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 		s.TLSConfig = m.TLSConfig() | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return &router{ | 
					
						
							|  |  |  | 		engine:      engine, | 
					
						
							|  |  |  | 		srv:         s, | 
					
						
							|  |  |  | 		certManager: m, | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	}, nil | 
					
						
							|  |  |  | } |