| 
									
										
										
										
											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-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
										 |  |  | 	logger      *logrus.Logger | 
					
						
							|  |  |  | 	engine      *gin.Engine | 
					
						
							|  |  |  | 	srv         *http.Server | 
					
						
							|  |  |  | 	config      *config.Config | 
					
						
							|  |  |  | 	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-05-09 11:25:13 +02:00
										 |  |  | 	if r.config.LetsEncryptConfig.Enabled { | 
					
						
							| 
									
										
										
										
											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-07-24 18:55:24 +02:00
										 |  |  | 			if err := http.ListenAndServe(fmt.Sprintf(":%d", r.config.LetsEncryptConfig.Port), r.certManager.HTTPHandler(http.HandlerFunc(httpsRedirect))); err != nil && err != http.ErrServerClosed { | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 				r.logger.Fatalf("listen: %s", err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							|  |  |  | 				r.logger.Fatalf("listen: %s", err) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 	} 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 { | 
					
						
							|  |  |  | 				r.logger.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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // New returns a new Router with the specified configuration, using the given logrus logger. | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  | func New(cfg *config.Config, db db.DB, logger *logrus.Logger) (Router, error) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// gin has different log modes; for convenience, we match the gin log mode to | 
					
						
							|  |  |  | 	// whatever log mode has been set for logrus | 
					
						
							|  |  |  | 	lvl, err := logrus.ParseLevel(cfg.LogLevel) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		return nil, fmt.Errorf("couldn't parse log level %s to set router level: %s", cfg.LogLevel, err) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	switch lvl { | 
					
						
							|  |  |  | 	case logrus.TraceLevel, logrus.DebugLevel: | 
					
						
							|  |  |  | 		gin.SetMode(gin.DebugMode) | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		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-04-19 19:42:19 +02:00
										 |  |  | 	engine := gin.Default() | 
					
						
							| 
									
										
										
										
											2021-05-15 11:58:11 +02:00
										 |  |  | 	engine.MaxMultipartMemory = 8 << 20 // 8 MiB | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	// enable cors on the engine | 
					
						
							|  |  |  | 	if err := useCors(cfg, engine); err != nil { | 
					
						
							|  |  |  | 		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 | 
					
						
							|  |  |  | 	if err := loadTemplates(cfg, engine); err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// enable session store middleware on the engine | 
					
						
							|  |  |  | 	if err := useSession(cfg, db, engine); err != nil { | 
					
						
							|  |  |  | 		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-05-09 20:34:27 +02:00
										 |  |  | 	s := &http.Server{ | 
					
						
							| 
									
										
										
										
											2021-07-24 18:55:24 +02:00
										 |  |  | 		Addr:              fmt.Sprintf(":%d", cfg.Port), | 
					
						
							| 
									
										
										
										
											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-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	var m *autocert.Manager | 
					
						
							|  |  |  | 	if cfg.LetsEncryptConfig.Enabled { | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		// le IS enabled, so roll up an autocert manager for handling letsencrypt requests | 
					
						
							|  |  |  | 		m = &autocert.Manager{ | 
					
						
							|  |  |  | 			Prompt:     autocert.AcceptTOS, | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 			HostPolicy: autocert.HostWhitelist(cfg.Host), | 
					
						
							|  |  |  | 			Cache:      autocert.DirCache(cfg.LetsEncryptConfig.CertDir), | 
					
						
							|  |  |  | 			Email:      cfg.LetsEncryptConfig.EmailAddress, | 
					
						
							| 
									
										
										
										
											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{ | 
					
						
							|  |  |  | 		logger:      logger, | 
					
						
							|  |  |  | 		engine:      engine, | 
					
						
							|  |  |  | 		srv:         s, | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 		config:      cfg, | 
					
						
							| 
									
										
										
										
											2021-05-09 11:25:13 +02:00
										 |  |  | 		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) | 
					
						
							|  |  |  | } |