| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02: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" | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 	"net/http" | 
					
						
							|  |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							|  |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							|  |  |  | 	"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 15:19:53 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/uris" | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	confirmEmailPath = "/" + uris.ConfirmEmailPath | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	tokenParam       = "token" | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	usernameKey      = "username" | 
					
						
							|  |  |  | 	statusIDKey      = "status" | 
					
						
							|  |  |  | 	profilePath      = "/@:" + usernameKey | 
					
						
							|  |  |  | 	statusPath       = profilePath + "/statuses/:" + statusIDKey | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | // Module implements the api.ClientModule interface for web pages. | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | type Module struct { | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	processor      processing.Processor | 
					
						
							|  |  |  | 	assetsPath     string | 
					
						
							|  |  |  | 	adminPath      string | 
					
						
							|  |  |  | 	defaultAvatars []string | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | // New returns a new api.ClientModule for web pages. | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | func New(processor processing.Processor) (api.ClientModule, error) { | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	assetsBaseDir := config.GetWebAssetBaseDir() | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02: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 14:33:01 +02: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 19:46:10 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02: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 19:46:10 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (m *Module) baseHandler(c *gin.Context) { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	l := logrus.WithField("func", "BaseGETHandler") | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 	l.Trace("serving index html") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	host := config.GetHost() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	instance, err := m.processor.InstanceGet(c.Request.Context(), host) | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02: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 14:45:33 +02:00
										 |  |  | 		"instance": instance, | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | // NotFoundHandler serves a 404 html page instead of a blank 404 error. | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02:00
										 |  |  | func (m *Module) NotFoundHandler(c *gin.Context) { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	l := logrus.WithField("func", "404") | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02:00
										 |  |  | 	l.Trace("serving 404 html") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	host := config.GetHost() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	instance, err := m.processor.InstanceGet(c.Request.Context(), host) | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02: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 19:46:10 +02:00
										 |  |  | // Route satisfies the RESTAPIModule interface | 
					
						
							|  |  |  | func (m *Module) Route(s router.Router) error { | 
					
						
							| 
									
										
										
										
											2022-03-13 18:35:26 +01:00
										 |  |  | 	// serve static files from assets dir at /assets | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	s.AttachStaticFS("/assets", fileSystem{http.Dir(m.assetsPath)}) | 
					
						
							| 
									
										
										
										
											2021-07-14 17:22:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-13 18:35:26 +01:00
										 |  |  | 	// serve admin panel from within assets dir at /admin/ | 
					
						
							|  |  |  | 	// and redirect /admin to /admin/ | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	s.AttachStaticFS("/admin/", fileSystem{http.Dir(m.adminPath)}) | 
					
						
							| 
									
										
										
										
											2022-03-13 18:35:26 +01:00
										 |  |  | 	s.AttachHandler(http.MethodGet, "/admin", func(c *gin.Context) { | 
					
						
							|  |  |  | 		c.Redirect(http.StatusMovedPermanently, "/admin/") | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// serve front-page | 
					
						
							|  |  |  | 	s.AttachHandler(http.MethodGet, "/", m.baseHandler) | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	// serve profile pages at /@username | 
					
						
							|  |  |  | 	s.AttachHandler(http.MethodGet, profilePath, m.profileTemplateHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 	// serve statuses | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, statusPath, m.threadTemplateHandler) | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	// serve email confirmation page at /confirm_email?token=whatever | 
					
						
							|  |  |  | 	s.AttachHandler(http.MethodGet, confirmEmailPath, m.confirmEmailGETHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 21:08:02 +02:00
										 |  |  | 	// 404 handler | 
					
						
							|  |  |  | 	s.AttachNoRouteHandler(m.NotFoundHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } |