2021-03-22 21:26:54 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-03-22 21:26:54 +00: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 19:46:45 +01:00
|
|
|
"context"
|
2021-03-22 21:26:54 +00:00
|
|
|
"fmt"
|
2021-04-01 19:46:45 +01:00
|
|
|
"net/http"
|
2021-05-09 19:34:27 +01:00
|
|
|
"time"
|
2021-03-22 21:26:54 +00:00
|
|
|
|
2022-04-28 13:32:53 +01:00
|
|
|
"codeberg.org/gruf/go-debug"
|
2021-03-22 21:26:54 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/sirupsen/logrus"
|
2021-04-01 19:46:45 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2021-07-07 14:46:42 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-05-09 10:25:13 +01:00
|
|
|
"golang.org/x/crypto/acme/autocert"
|
2021-03-22 21:26:54 +00:00
|
|
|
)
|
|
|
|
|
2022-04-28 13:32:53 +01:00
|
|
|
const (
|
2021-07-07 14:46:42 +01:00
|
|
|
readTimeout = 60 * time.Second
|
|
|
|
writeTimeout = 30 * time.Second
|
|
|
|
idleTimeout = 30 * time.Second
|
|
|
|
readHeaderTimeout = 30 * time.Second
|
|
|
|
)
|
|
|
|
|
2021-03-22 21:26:54 +00: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 19:46:45 +01:00
|
|
|
AttachHandler(method string, path string, f gin.HandlerFunc)
|
2021-03-22 21:26:54 +00:00
|
|
|
// Attach a gin middleware to the router that will be used globally
|
|
|
|
AttachMiddleware(handler gin.HandlerFunc)
|
2021-06-21 20:08:02 +01:00
|
|
|
// Attach 404 NoRoute handler
|
|
|
|
AttachNoRouteHandler(handler gin.HandlerFunc)
|
2022-03-13 17:35:26 +00:00
|
|
|
// Add Gin StaticFS handler
|
2021-07-14 16:22:51 +01:00
|
|
|
AttachStaticFS(relativePath string, fs http.FileSystem)
|
2021-03-22 21:26:54 +00:00
|
|
|
// Start the router
|
|
|
|
Start()
|
|
|
|
// Stop the router
|
2021-04-01 19:46:45 +01:00
|
|
|
Stop(ctx context.Context) error
|
2021-03-22 21:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// router fulfils the Router interface using gin and logrus
|
|
|
|
type router struct {
|
2021-05-09 10:25:13 +01:00
|
|
|
engine *gin.Engine
|
|
|
|
srv *http.Server
|
|
|
|
certManager *autocert.Manager
|
2021-03-22 21:26:54 +00:00
|
|
|
}
|
|
|
|
|
2022-03-13 17:35:26 +00:00
|
|
|
// Add Gin StaticFS handler
|
2021-07-14 16:22:51 +01:00
|
|
|
func (r *router) AttachStaticFS(relativePath string, fs http.FileSystem) {
|
|
|
|
r.engine.StaticFS(relativePath, fs)
|
|
|
|
}
|
|
|
|
|
2021-07-24 17:55:24 +01: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 19:46:45 +01: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 12:31:39 +00:00
|
|
|
|
2021-05-09 10:25:13 +01: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.
|
|
|
|
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 09:34:57 +00:00
|
|
|
logrus.Fatalf("letsencrypt: listen: %s", err)
|
2021-05-09 10:25:13 +01: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 10:25:13 +01: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 21:26:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop shuts down the router nicely
|
2021-04-01 19:46:45 +01:00
|
|
|
func (r *router) Stop(ctx context.Context) error {
|
|
|
|
return r.srv.Shutdown(ctx)
|
2021-03-22 21:26:54 +00:00
|
|
|
}
|
|
|
|
|
2021-10-11 13:37:33 +01:00
|
|
|
// New returns a new Router with the specified configuration.
|
2021-07-07 14:46:42 +01: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 12:31:39 +00:00
|
|
|
func New(ctx context.Context, db db.DB) (Router, error) {
|
2021-08-27 12:26:45 +01:00
|
|
|
gin.SetMode(gin.ReleaseMode)
|
2021-05-09 10:25:13 +01:00
|
|
|
|
|
|
|
// create the actual engine here -- this is the core request routing handler for gts
|
2021-08-27 12:26:45 +01:00
|
|
|
engine := gin.New()
|
|
|
|
|
2021-10-11 13:37:33 +01:00
|
|
|
engine.Use(gin.RecoveryWithWriter(logrus.StandardLogger().Writer()))
|
|
|
|
engine.Use(loggingMiddleware())
|
2021-08-27 12:26:45 +01:00
|
|
|
|
|
|
|
// 8 MiB
|
|
|
|
engine.MaxMultipartMemory = 8 << 20
|
2021-03-22 21:26:54 +00:00
|
|
|
|
2021-07-26 15:15:36 +01:00
|
|
|
// set up IP forwarding via x-forward-* headers.
|
2022-05-30 13:41:24 +01:00
|
|
|
trustedProxies := config.GetTrustedProxies()
|
2021-12-07 12:31:39 +00:00
|
|
|
if err := engine.SetTrustedProxies(trustedProxies); err != nil {
|
2021-07-26 15:15:36 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-07-07 14:46:42 +01:00
|
|
|
// enable cors on the engine
|
2021-12-07 12:31:39 +00:00
|
|
|
if err := useCors(engine); err != nil {
|
2021-07-07 14:46:42 +01:00
|
|
|
return nil, err
|
2021-03-22 21:26:54 +00:00
|
|
|
}
|
|
|
|
|
2022-02-19 11:12:41 +00:00
|
|
|
// enable gzip compression on the engine
|
|
|
|
if err := useGzip(engine); err != nil {
|
2021-07-07 14:46:42 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// enable session store middleware on the engine
|
2021-12-07 12:31:39 +00:00
|
|
|
if err := useSession(ctx, db, engine); err != nil {
|
2021-07-07 14:46:42 +01:00
|
|
|
return nil, err
|
2021-03-22 21:26:54 +00:00
|
|
|
}
|
|
|
|
|
2022-02-19 11:12:41 +00:00
|
|
|
// set template functions
|
|
|
|
LoadTemplateFunctions(engine)
|
|
|
|
|
|
|
|
// load templates onto the engine
|
|
|
|
if err := loadTemplates(engine); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-07-07 14:46:42 +01:00
|
|
|
// create the http server here, passing the gin engine as handler
|
2022-05-30 13:41:24 +01:00
|
|
|
bindAddress := config.GetBindAddress()
|
|
|
|
port := config.GetPort()
|
2021-12-07 12:31:39 +00:00
|
|
|
listen := fmt.Sprintf("%s:%d", bindAddress, port)
|
2021-05-09 19:34:27 +01:00
|
|
|
s := &http.Server{
|
2021-11-22 09:55:52 +00:00
|
|
|
Addr: listen,
|
2021-05-09 19:34:27 +01:00
|
|
|
Handler: engine,
|
2021-07-07 14:46:42 +01:00
|
|
|
ReadTimeout: readTimeout,
|
|
|
|
WriteTimeout: writeTimeout,
|
|
|
|
IdleTimeout: idleTimeout,
|
|
|
|
ReadHeaderTimeout: readHeaderTimeout,
|
2021-05-09 19:34:27 +01:00
|
|
|
}
|
2021-05-09 10:25:13 +01: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 14:46:42 +01:00
|
|
|
|
|
|
|
var m *autocert.Manager
|
2021-12-07 12:31:39 +00:00
|
|
|
if leEnabled {
|
2021-05-09 10:25:13 +01: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 10:25:13 +01:00
|
|
|
m = &autocert.Manager{
|
|
|
|
Prompt: autocert.AcceptTOS,
|
2021-12-07 12:31:39 +00:00
|
|
|
HostPolicy: autocert.HostWhitelist(host),
|
|
|
|
Cache: autocert.DirCache(leCertDir),
|
|
|
|
Email: leEmailAddress,
|
2021-05-09 10:25:13 +01:00
|
|
|
}
|
2021-05-09 19:34:27 +01:00
|
|
|
s.TLSConfig = m.TLSConfig()
|
2021-05-09 10:25:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return &router{
|
|
|
|
engine: engine,
|
|
|
|
srv: s,
|
|
|
|
certManager: m,
|
2021-03-22 21:26:54 +00:00
|
|
|
}, nil
|
|
|
|
}
|