| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +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 router | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2021-07-08 11:32:31 +02:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 	"net/url" | 
					
						
							| 
									
										
										
										
											2022-06-03 15:40:38 +02:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-contrib/sessions" | 
					
						
							|  |  |  | 	"github.com/gin-contrib/sessions/memstore" | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2022-06-03 15:40:38 +02:00
										 |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2022-04-16 13:09:42 +02:00
										 |  |  | 	"golang.org/x/net/idna" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-07 11:04:31 +00:00
										 |  |  | // SessionOptions returns the standard set of options to use for each session. | 
					
						
							|  |  |  | func SessionOptions() sessions.Options { | 
					
						
							| 
									
										
										
										
											2022-06-03 15:40:38 +02:00
										 |  |  | 	var samesite http.SameSite | 
					
						
							|  |  |  | 	switch strings.TrimSpace(strings.ToLower(config.GetAdvancedCookiesSamesite())) { | 
					
						
							|  |  |  | 	case "lax": | 
					
						
							|  |  |  | 		samesite = http.SameSiteLaxMode | 
					
						
							|  |  |  | 	case "strict": | 
					
						
							|  |  |  | 		samesite = http.SameSiteStrictMode | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		logrus.Warnf("%s set to %s which is not recognized, defaulting to 'lax'", config.AdvancedCookiesSamesiteFlag(), config.GetAdvancedCookiesSamesite()) | 
					
						
							|  |  |  | 		samesite = http.SameSiteLaxMode | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-23 10:36:28 +02:00
										 |  |  | 	return sessions.Options{ | 
					
						
							| 
									
										
										
										
											2022-06-03 15:40:38 +02:00
										 |  |  | 		Path:   "/", | 
					
						
							|  |  |  | 		Domain: config.GetHost(), | 
					
						
							|  |  |  | 		// 2 minutes | 
					
						
							|  |  |  | 		MaxAge: 120, | 
					
						
							|  |  |  | 		// only set secure over https | 
					
						
							|  |  |  | 		Secure: config.GetProtocol() == "https", | 
					
						
							|  |  |  | 		// forbid javascript from inspecting cookie | 
					
						
							|  |  |  | 		HttpOnly: true, | 
					
						
							|  |  |  | 		// https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-same-site-00#section-4.1.1 | 
					
						
							|  |  |  | 		SameSite: samesite, | 
					
						
							| 
									
										
										
										
											2021-07-23 10:36:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | // SessionName is a utility function that derives an appropriate session name from the hostname. | 
					
						
							|  |  |  | func SessionName() (string, error) { | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 	// parse the protocol + host | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	protocol := config.GetProtocol() | 
					
						
							|  |  |  | 	host := config.GetHost() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	u, err := url.Parse(fmt.Sprintf("%s://%s", protocol, host)) | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return "", err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// take the hostname without any port attached | 
					
						
							|  |  |  | 	strippedHostname := u.Hostname() | 
					
						
							|  |  |  | 	if strippedHostname == "" { | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 		return "", fmt.Errorf("could not derive hostname without port from %s://%s", protocol, host) | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-16 13:09:42 +02:00
										 |  |  | 	// make sure IDNs are converted to punycode or the cookie library breaks: | 
					
						
							|  |  |  | 	// see https://en.wikipedia.org/wiki/Punycode | 
					
						
							|  |  |  | 	punyHostname, err := idna.New().ToASCII(strippedHostname) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return "", fmt.Errorf("could not convert %s to punycode: %s", strippedHostname, err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return fmt.Sprintf("gotosocial-%s", punyHostname), nil | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | func useSession(ctx context.Context, sessionDB db.Session, engine *gin.Engine) error { | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	// check if we have a saved router session already | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	rs, err := sessionDB.GetSession(ctx) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-08-26 18:55:39 +02:00
										 |  |  | 		return fmt.Errorf("error using session: %s", err) | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-08-26 18:55:39 +02:00
										 |  |  | 	if rs == nil || rs.Auth == nil || rs.Crypt == nil { | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 		return errors.New("router session was nil") | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	store := memstore.NewStore(rs.Auth, rs.Crypt) | 
					
						
							| 
									
										
										
										
											2022-02-07 11:04:31 +00:00
										 |  |  | 	store.Options(SessionOptions()) | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	sessionName, err := SessionName() | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	engine.Use(sessions.Sessions(sessionName, store)) | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |