2021-06-21 18:46:10 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-06-21 18:46:10 +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 web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/sirupsen/logrus"
|
2021-12-07 12:31:39 +00:00
|
|
|
"github.com/spf13/viper"
|
2021-06-21 18:46:10 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/processing"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/router"
|
2021-12-20 14:19:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/uris"
|
2021-10-31 14:46:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-12-20 14:19:53 +00:00
|
|
|
confirmEmailPath = "/" + uris.ConfirmEmailPath
|
2021-10-31 14:46:23 +00:00
|
|
|
tokenParam = "token"
|
2021-06-21 18:46:10 +01:00
|
|
|
)
|
|
|
|
|
2021-09-30 10:16:23 +01:00
|
|
|
// Module implements the api.ClientModule interface for web pages.
|
2021-06-21 18:46:10 +01:00
|
|
|
type Module struct {
|
|
|
|
processor processing.Processor
|
|
|
|
}
|
|
|
|
|
2021-09-30 10:16:23 +01:00
|
|
|
// New returns a new api.ClientModule for web pages.
|
2021-12-07 12:31:39 +00:00
|
|
|
func New(processor processing.Processor) api.ClientModule {
|
2021-06-21 18:46:10 +01:00
|
|
|
return &Module{
|
|
|
|
processor: processor,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Module) baseHandler(c *gin.Context) {
|
2021-10-11 13:37:33 +01:00
|
|
|
l := logrus.WithField("func", "BaseGETHandler")
|
2021-06-21 18:46:10 +01:00
|
|
|
l.Trace("serving index html")
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
host := viper.GetString(config.Keys.Host)
|
|
|
|
instance, err := m.processor.InstanceGet(c.Request.Context(), host)
|
2021-06-21 18:46:10 +01:00
|
|
|
if err != nil {
|
|
|
|
l.Debugf("error getting instance from processor: %s", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "internal server error"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.HTML(http.StatusOK, "index.tmpl", gin.H{
|
2021-09-13 13:45:33 +01:00
|
|
|
"instance": instance,
|
2021-06-21 18:46:10 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-09-30 10:16:23 +01:00
|
|
|
// NotFoundHandler serves a 404 html page instead of a blank 404 error.
|
2021-06-21 20:08:02 +01:00
|
|
|
func (m *Module) NotFoundHandler(c *gin.Context) {
|
2021-10-11 13:37:33 +01:00
|
|
|
l := logrus.WithField("func", "404")
|
2021-06-21 20:08:02 +01:00
|
|
|
l.Trace("serving 404 html")
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
host := viper.GetString(config.Keys.Host)
|
|
|
|
instance, err := m.processor.InstanceGet(c.Request.Context(), host)
|
2021-06-21 20:08:02 +01:00
|
|
|
if err != nil {
|
|
|
|
l.Debugf("error getting instance from processor: %s", err)
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "internal server error"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.HTML(404, "404.tmpl", gin.H{
|
|
|
|
"instance": instance,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-06-21 18:46:10 +01:00
|
|
|
// Route satisfies the RESTAPIModule interface
|
|
|
|
func (m *Module) Route(s router.Router) error {
|
2022-03-13 17:35:26 +00:00
|
|
|
// serve static files from assets dir at /assets
|
|
|
|
assetBaseDir := viper.GetString(config.Keys.WebAssetBaseDir)
|
|
|
|
if assetBaseDir == "" {
|
|
|
|
return fmt.Errorf("%s cannot be empty and must be a relative or absolute path", config.Keys.WebAssetBaseDir)
|
|
|
|
}
|
|
|
|
assetPath, err := filepath.Abs(assetBaseDir)
|
2021-06-21 18:46:10 +01:00
|
|
|
if err != nil {
|
2022-03-13 17:35:26 +00:00
|
|
|
return fmt.Errorf("error getting absolute path of %s: %s", assetBaseDir, err)
|
2021-06-21 18:46:10 +01:00
|
|
|
}
|
2021-09-30 10:16:23 +01:00
|
|
|
s.AttachStaticFS("/assets", fileSystem{http.Dir(assetPath)})
|
2021-07-14 16:22:51 +01:00
|
|
|
|
2022-03-13 17:35:26 +00:00
|
|
|
// serve admin panel from within assets dir at /admin/
|
|
|
|
// and redirect /admin to /admin/
|
|
|
|
adminPath := filepath.Join(assetPath, "admin")
|
|
|
|
s.AttachStaticFS("/admin/", fileSystem{http.Dir(adminPath)})
|
|
|
|
s.AttachHandler(http.MethodGet, "/admin", func(c *gin.Context) {
|
|
|
|
c.Redirect(http.StatusMovedPermanently, "/admin/")
|
|
|
|
})
|
2021-06-21 18:46:10 +01:00
|
|
|
|
|
|
|
// serve front-page
|
|
|
|
s.AttachHandler(http.MethodGet, "/", m.baseHandler)
|
2021-06-21 20:08:02 +01:00
|
|
|
|
2021-09-13 13:45:33 +01:00
|
|
|
// serve statuses
|
|
|
|
s.AttachHandler(http.MethodGet, "/:user/statuses/:id", m.threadTemplateHandler)
|
|
|
|
|
2021-10-31 14:46:23 +00:00
|
|
|
// serve email confirmation page at /confirm_email?token=whatever
|
|
|
|
s.AttachHandler(http.MethodGet, confirmEmailPath, m.confirmEmailGETHandler)
|
|
|
|
|
2021-06-21 20:08:02 +01:00
|
|
|
// 404 handler
|
|
|
|
s.AttachNoRouteHandler(m.NotFoundHandler)
|
|
|
|
|
2021-06-21 18:46:10 +01:00
|
|
|
return nil
|
|
|
|
}
|