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 (
|
2022-06-08 19:38:03 +01:00
|
|
|
"errors"
|
2021-06-21 18:46:10 +01:00
|
|
|
"fmt"
|
2022-04-15 13:33:01 +01:00
|
|
|
"io/ioutil"
|
2021-06-21 18:46:10 +01:00
|
|
|
"net/http"
|
|
|
|
"path/filepath"
|
2022-04-15 13:33:01 +01:00
|
|
|
"strings"
|
2021-06-21 18:46:10 +01:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-06-21 18:46:10 +01:00
|
|
|
"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"
|
2022-04-15 13:33:01 +01:00
|
|
|
usernameKey = "username"
|
|
|
|
statusIDKey = "status"
|
|
|
|
profilePath = "/@:" + usernameKey
|
|
|
|
statusPath = profilePath + "/statuses/:" + statusIDKey
|
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 {
|
2022-04-15 13:33:01 +01:00
|
|
|
processor processing.Processor
|
|
|
|
assetsPath string
|
|
|
|
adminPath string
|
|
|
|
defaultAvatars []string
|
2021-06-21 18:46:10 +01:00
|
|
|
}
|
|
|
|
|
2021-09-30 10:16:23 +01:00
|
|
|
// New returns a new api.ClientModule for web pages.
|
2022-04-15 13:33:01 +01:00
|
|
|
func New(processor processing.Processor) (api.ClientModule, error) {
|
2022-05-30 13:41:24 +01:00
|
|
|
assetsBaseDir := config.GetWebAssetBaseDir()
|
2022-04-15 13:33:01 +01:00
|
|
|
if assetsBaseDir == "" {
|
2022-05-30 13:41:24 +01:00
|
|
|
return nil, fmt.Errorf("%s cannot be empty and must be a relative or absolute path", config.WebAssetBaseDirFlag())
|
2022-04-15 13:33:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
assetsPath, err := filepath.Abs(assetsBaseDir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting absolute path of %s: %s", assetsBaseDir, err)
|
2021-06-21 18:46:10 +01:00
|
|
|
}
|
2022-04-15 13:33:01 +01:00
|
|
|
|
|
|
|
defaultAvatarsPath := filepath.Join(assetsPath, "default_avatars")
|
|
|
|
defaultAvatarFiles, err := ioutil.ReadDir(defaultAvatarsPath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error reading default avatars at %s: %s", defaultAvatarsPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultAvatars := []string{}
|
|
|
|
for _, f := range defaultAvatarFiles {
|
|
|
|
// ignore directories
|
|
|
|
if f.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore files bigger than 50kb
|
|
|
|
if f.Size() > 50000 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
extension := strings.TrimPrefix(strings.ToLower(filepath.Ext(f.Name())), ".")
|
|
|
|
|
|
|
|
// take only files with simple extensions
|
|
|
|
switch extension {
|
|
|
|
case "svg", "jpeg", "jpg", "gif", "png":
|
|
|
|
defaultAvatarPath := fmt.Sprintf("/assets/default_avatars/%s", f.Name())
|
|
|
|
defaultAvatars = append(defaultAvatars, defaultAvatarPath)
|
|
|
|
default:
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Module{
|
|
|
|
processor: processor,
|
|
|
|
assetsPath: assetsPath,
|
|
|
|
adminPath: filepath.Join(assetsPath, "admin"),
|
|
|
|
defaultAvatars: defaultAvatars,
|
|
|
|
}, nil
|
2021-06-21 18:46:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Module) baseHandler(c *gin.Context) {
|
2022-05-30 13:41:24 +01:00
|
|
|
host := config.GetHost()
|
2021-12-07 12:31:39 +00:00
|
|
|
instance, err := m.processor.InstanceGet(c.Request.Context(), host)
|
2021-06-21 18:46:10 +01:00
|
|
|
if err != nil {
|
2022-06-09 11:51:19 +01:00
|
|
|
api.ErrorHandler(c, gtserror.NewErrorInternalError(err), m.processor.InstanceGet)
|
2021-06-21 18:46:10 +01:00
|
|
|
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
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-06-09 11:51:19 +01:00
|
|
|
// TODO: abstract the {admin, user}panel handlers in some way
|
|
|
|
func (m *Module) AdminPanelHandler(c *gin.Context) {
|
|
|
|
host := config.GetHost()
|
|
|
|
instance, err := m.processor.InstanceGet(c.Request.Context(), host)
|
|
|
|
if err != nil {
|
|
|
|
api.ErrorHandler(c, gtserror.NewErrorInternalError(err), m.processor.InstanceGet)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.HTML(http.StatusOK, "frontend.tmpl", gin.H{
|
|
|
|
"instance": instance,
|
|
|
|
"stylesheets": []string{
|
|
|
|
"/assets/Fork-Awesome/css/fork-awesome.min.css",
|
|
|
|
"/assets/dist/panels-admin-style.css",
|
|
|
|
},
|
|
|
|
"javascript": []string{
|
|
|
|
"/assets/dist/bundle.js",
|
|
|
|
"/assets/dist/admin-panel.js",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Module) UserPanelHandler(c *gin.Context) {
|
|
|
|
host := config.GetHost()
|
|
|
|
instance, err := m.processor.InstanceGet(c.Request.Context(), host)
|
|
|
|
if err != nil {
|
|
|
|
api.ErrorHandler(c, gtserror.NewErrorInternalError(err), m.processor.InstanceGet)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.HTML(http.StatusOK, "frontend.tmpl", gin.H{
|
|
|
|
"instance": instance,
|
|
|
|
"stylesheets": []string{
|
|
|
|
"/assets/Fork-Awesome/css/fork-awesome.min.css",
|
|
|
|
"/assets/dist/_colors.css",
|
|
|
|
"/assets/dist/base.css",
|
|
|
|
"/assets/dist/panels-user-style.css",
|
|
|
|
},
|
|
|
|
"javascript": []string{
|
|
|
|
"/assets/dist/bundle.js",
|
|
|
|
"/assets/dist/user-panel.js",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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
|
2022-04-15 13:33:01 +01:00
|
|
|
s.AttachStaticFS("/assets", fileSystem{http.Dir(m.assetsPath)})
|
2021-07-14 16:22:51 +01:00
|
|
|
|
2022-06-09 11:51:19 +01:00
|
|
|
s.AttachHandler(http.MethodGet, "/admin", m.AdminPanelHandler)
|
|
|
|
// redirect /admin/ to /admin
|
|
|
|
s.AttachHandler(http.MethodGet, "/admin/", func(c *gin.Context) {
|
|
|
|
c.Redirect(http.StatusMovedPermanently, "/admin")
|
|
|
|
})
|
|
|
|
|
|
|
|
s.AttachHandler(http.MethodGet, "/user", m.UserPanelHandler)
|
|
|
|
// redirect /settings/ to /settings
|
|
|
|
s.AttachHandler(http.MethodGet, "/user/", func(c *gin.Context) {
|
|
|
|
c.Redirect(http.StatusMovedPermanently, "/user")
|
2022-03-13 17:35:26 +00:00
|
|
|
})
|
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
|
|
|
|
2022-04-15 13:33:01 +01:00
|
|
|
// serve profile pages at /@username
|
2022-06-08 19:38:03 +01:00
|
|
|
s.AttachHandler(http.MethodGet, profilePath, m.profileGETHandler)
|
2022-04-15 13:33:01 +01:00
|
|
|
|
2021-09-13 13:45:33 +01:00
|
|
|
// serve statuses
|
2022-06-08 19:38:03 +01:00
|
|
|
s.AttachHandler(http.MethodGet, statusPath, m.threadGETHandler)
|
2021-09-13 13:45:33 +01:00
|
|
|
|
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
|
2022-06-08 19:38:03 +01:00
|
|
|
s.AttachNoRouteHandler(func(c *gin.Context) {
|
|
|
|
api.ErrorHandler(c, gtserror.NewErrorNotFound(errors.New(http.StatusText(http.StatusNotFound))), m.processor.InstanceGet)
|
|
|
|
})
|
2021-06-21 20:08:02 +01:00
|
|
|
|
2021-06-21 18:46:10 +01:00
|
|
|
return nil
|
|
|
|
}
|