| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // 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/>. | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | package middleware | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"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" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											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: | 
					
						
							| 
									
										
										
										
											2023-02-17 12:02:29 +01:00
										 |  |  | 		log.Warnf(nil, "%s set to %s which is not recognized, defaulting to 'lax'", config.AdvancedCookiesSamesiteFlag(), config.GetAdvancedCookiesSamesite()) | 
					
						
							| 
									
										
										
										
											2022-06-03 15:40:38 +02:00
										 |  |  | 		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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | // Session returns a new gin middleware that implements session cookies using the given | 
					
						
							|  |  |  | // sessionName, authentication key, and encryption key. Session name can be derived from the | 
					
						
							|  |  |  | // SessionName utility function in this package. | 
					
						
							|  |  |  | func Session(sessionName string, auth []byte, crypt []byte) gin.HandlerFunc { | 
					
						
							|  |  |  | 	store := memstore.NewStore(auth, crypt) | 
					
						
							| 
									
										
										
										
											2022-02-07 11:04:31 +00:00
										 |  |  | 	store.Options(SessionOptions()) | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	return sessions.Sessions(sessionName, store) | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | } |