| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2023-01-05 12:43:00 +01:00
										 |  |  |    Copyright (C) 2021-2023 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" | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 	"net" | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	"codeberg.org/gruf/go-bytesize" | 
					
						
							| 
									
										
										
										
											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" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											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 ( | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	readTimeout        = 60 * time.Second | 
					
						
							|  |  |  | 	writeTimeout       = 30 * time.Second | 
					
						
							|  |  |  | 	idleTimeout        = 30 * time.Second | 
					
						
							|  |  |  | 	readHeaderTimeout  = 30 * time.Second | 
					
						
							|  |  |  | 	shutdownTimeout    = 30 * time.Second | 
					
						
							|  |  |  | 	maxMultipartMemory = int64(8 * bytesize.MiB) | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | // Router provides the REST interface for gotosocial, using gin. | 
					
						
							|  |  |  | type Router interface { | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	// Attach global gin middlewares to this router. | 
					
						
							|  |  |  | 	AttachGlobalMiddleware(handlers ...gin.HandlerFunc) gin.IRoutes | 
					
						
							|  |  |  | 	// AttachGroup attaches the given handlers into a group with the given relativePath as | 
					
						
							|  |  |  | 	// base path for that group. It then returns the *gin.RouterGroup so that the caller | 
					
						
							|  |  |  | 	// can add any extra middlewares etc specific to that group, as desired. | 
					
						
							|  |  |  | 	AttachGroup(relativePath string, handlers ...gin.HandlerFunc) *gin.RouterGroup | 
					
						
							|  |  |  | 	// Attach a single gin handler to the router with the given method and path. | 
					
						
							|  |  |  | 	// To make middleware management easier, AttachGroup should be preferred where possible. | 
					
						
							|  |  |  | 	// However, this function can be used for attaching single handlers that only require | 
					
						
							|  |  |  | 	// global middlewares. | 
					
						
							|  |  |  | 	AttachHandler(method string, path string, handler gin.HandlerFunc) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02:00
										 |  |  | 	// Attach 404 NoRoute handler | 
					
						
							|  |  |  | 	AttachNoRouteHandler(handler gin.HandlerFunc) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-05-30 13:41:24 +01:00
										 |  |  | 	// 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 | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	if config.GetLetsEncryptEnabled() { | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 		// 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-05-30 13:41:24 +01:00
										 |  |  | 				config.GetBindAddress(), | 
					
						
							|  |  |  | 				config.GetLetsEncryptPort(), | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 			) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-15 10:10:55 +01:00
										 |  |  | 			// Start the LetsEncrypt autocert manager HTTP server. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 			log.Infof("letsencrypt listening on %s", srv.Addr) | 
					
						
							| 
									
										
										
										
											2022-05-15 10:10:55 +01:00
										 |  |  | 			if err := srv.ListenAndServe(); err != nil && | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 				err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 				log.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) | 
					
						
							| 
									
										
										
										
											2023-02-13 18:40:48 +00:00
										 |  |  | 	if debug.DEBUG { | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 		// Profiling requires timeouts longer than 30s, so reset these. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 		log.Warn("resetting http.Server{} timeout to support profiling") | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 		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() { | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 		log.Infof("listening on %s", r.srv.Addr) | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 		if err := listen(); err != nil && err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 			log.Fatalf("listen: %s", err) | 
					
						
							| 
									
										
										
										
											2022-04-28 13:32:53 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 	log.Infof("shutting down http router with %s grace period", shutdownTimeout) | 
					
						
							|  |  |  | 	timeout, cancel := context.WithTimeout(ctx, shutdownTimeout) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err := r.srv.Shutdown(timeout); err != nil { | 
					
						
							|  |  |  | 		return fmt.Errorf("error shutting down http router: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	log.Info("http router closed connections and shut down gracefully") | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | // New returns a new Router. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The router's Attach functions should be used *before* the router is Started. | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | // When the router's work is finished, Stop should be called on it to close connections gracefully. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The provided context will be used as the base context for all requests passing | 
					
						
							|  |  |  | // through the underlying http.Server, so this should be a long-running context. | 
					
						
							|  |  |  | func New(ctx context.Context) (Router, error) { | 
					
						
							|  |  |  | 	gin.SetMode(gin.TestMode) | 
					
						
							| 
									
										
										
										
											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() | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	engine.MaxMultipartMemory = maxMultipartMemory | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-26 16:15:36 +02:00
										 |  |  | 	// set up IP forwarding via x-forward-* headers. | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	trustedProxies := config.GetTrustedProxies() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if err := engine.SetTrustedProxies(trustedProxies); err != nil { | 
					
						
							| 
									
										
										
										
											2021-07-26 16:15:36 +02:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 12:12:41 +01:00
										 |  |  | 	// set template functions | 
					
						
							|  |  |  | 	LoadTemplateFunctions(engine) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// load templates onto the engine | 
					
						
							| 
									
										
										
										
											2022-07-12 08:32:20 +01:00
										 |  |  | 	if err := LoadTemplates(engine); err != nil { | 
					
						
							| 
									
										
										
										
											2022-02-19 12:12:41 +01:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 	// use the passed-in command context as the base context for the server, | 
					
						
							|  |  |  | 	// since we'll never want the server to live past the command anyway | 
					
						
							|  |  |  | 	baseCtx := func(_ net.Listener) context.Context { | 
					
						
							|  |  |  | 		return ctx | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	bindAddress := config.GetBindAddress() | 
					
						
							|  |  |  | 	port := config.GetPort() | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 	addr := fmt.Sprintf("%s:%d", bindAddress, port) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 20:34:27 +02:00
										 |  |  | 	s := &http.Server{ | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 		Addr:              addr, | 
					
						
							|  |  |  | 		Handler:           engine, // use gin engine as handler | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		ReadTimeout:       readTimeout, | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 		ReadHeaderTimeout: readHeaderTimeout, | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		WriteTimeout:      writeTimeout, | 
					
						
							|  |  |  | 		IdleTimeout:       idleTimeout, | 
					
						
							| 
									
										
										
										
											2022-09-19 13:43:22 +02:00
										 |  |  | 		BaseContext:       baseCtx, | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	leEnabled := config.GetLetsEncryptEnabled() | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 		host := config.GetHost() | 
					
						
							|  |  |  | 		leCertDir := config.GetLetsEncryptCertDir() | 
					
						
							|  |  |  | 		leEmailAddress := config.GetLetsEncryptEmailAddress() | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | } |