| 
									
										
										
										
											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" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"path/filepath" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							|  |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	"github.com/spf13/viper" | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02: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 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" | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							|  |  |  | 	processor processing.Processor | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | // New returns a new api.ClientModule for web pages. | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | func New(processor processing.Processor) api.ClientModule { | 
					
						
							| 
									
										
										
										
											2021-06-21 19:46:10 +02:00
										 |  |  | 	return &Module{ | 
					
						
							|  |  |  | 		processor: processor, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	host := viper.GetString(config.Keys.Host) | 
					
						
							|  |  |  | 	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") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	host := viper.GetString(config.Keys.Host) | 
					
						
							|  |  |  | 	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 { | 
					
						
							|  |  |  | 	// serve static files from /assets | 
					
						
							|  |  |  | 	cwd, err := os.Getwd() | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return fmt.Errorf("error getting current working directory: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	assetBaseDir := viper.GetString(config.Keys.WebAssetBaseDir) | 
					
						
							|  |  |  | 	assetPath := filepath.Join(cwd, assetBaseDir) | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 	s.AttachStaticFS("/assets", fileSystem{http.Dir(assetPath)}) | 
					
						
							| 
									
										
										
										
											2021-07-14 17:22:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Admin panel route, if it exists | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	adminPath := filepath.Join(cwd, assetBaseDir, "/admin") | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 	s.AttachStaticFS("/admin", fileSystem{http.Dir(adminPath)}) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 	// serve statuses | 
					
						
							|  |  |  | 	s.AttachHandler(http.MethodGet, "/:user/statuses/:id", m.threadTemplateHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | } |