| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							|  |  |  |    Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    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
										 |  |  | 
 | 
					
						
							|  |  |  | 	"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
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	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) | 
					
						
							| 
									
										
										
										
											2021-07-14 17:22:51 +02:00
										 |  |  | 	// Add Gin StaticFile handler | 
					
						
							|  |  |  | 	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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-14 17:22:51 +02:00
										 |  |  | // Add Gin StaticFile handler | 
					
						
							|  |  |  | 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() { | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	keys := config.Keys | 
					
						
							|  |  |  | 	leEnabled := viper.GetBool(keys.LetsEncryptEnabled) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if leEnabled { | 
					
						
							|  |  |  | 		bindAddress := viper.GetString(keys.BindAddress) | 
					
						
							|  |  |  | 		lePort := viper.GetInt(keys.LetsEncryptPort) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 18:55:24 +02:00
										 |  |  | 		// serve the http handler on the selected letsencrypt port, for receiving letsencrypt requests and solving their devious riddles | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		go func() { | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 			listen := fmt.Sprintf("%s:%d", bindAddress, lePort) | 
					
						
							| 
									
										
										
										
											2021-11-22 10:55:52 +01:00
										 |  |  | 			if err := http.ListenAndServe(listen, r.certManager.HTTPHandler(http.HandlerFunc(httpsRedirect))); err != nil && err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 				logrus.Fatalf("listen: %s", err) | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-24 18:55:24 +02:00
										 |  |  | 		// and serve the actual TLS handler | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		go func() { | 
					
						
							|  |  |  | 			if err := r.srv.ListenAndServeTLS("", ""); err != nil && err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 				logrus.Fatalf("listen: %s", err) | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2021-07-24 18:55:24 +02:00
										 |  |  | 		// no tls required | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		go func() { | 
					
						
							|  |  |  | 			if err := r.srv.ListenAndServe(); err != nil && err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 				logrus.Fatalf("listen: %s", err) | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02: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 { | 
					
						
							|  |  |  | 	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
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 	// set template functions | 
					
						
							|  |  |  | 	loadTemplateFunctions(engine) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	// load templates onto the engine | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if err := loadTemplates(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
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | func httpsRedirect(w http.ResponseWriter, req *http.Request) { | 
					
						
							|  |  |  | 	target := "https://" + req.Host + req.URL.Path | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if len(req.URL.RawQuery) > 0 { | 
					
						
							|  |  |  | 		target += "?" + req.URL.RawQuery | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	http.Redirect(w, req, target, http.StatusTemporaryRedirect) | 
					
						
							|  |  |  | } |