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-09-01 22:12:31 +02:00
|
|
|
"net/url"
|
2021-07-07 15:46:42 +02:00
|
|
|
|
2025-04-29 13:57:26 +00:00
|
|
|
apiutil "code.superseriousbusiness.org/gotosocial/internal/api/util"
|
2025-04-26 15:34:10 +02:00
|
|
|
"code.superseriousbusiness.org/gotosocial/internal/config"
|
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-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.
|
2025-04-29 13:57:26 +00:00
|
|
|
func SessionOptions(cookiePolicy apiutil.CookiePolicy) sessions.Options {
|
2021-07-23 10:36:28 +02:00
|
|
|
return sessions.Options{
|
2022-06-03 15:40:38 +02:00
|
|
|
Path: "/",
|
2025-04-29 13:57:26 +00:00
|
|
|
Domain: cookiePolicy.Domain,
|
2022-06-03 15:40:38 +02:00
|
|
|
// 2 minutes
|
2025-04-29 13:57:26 +00:00
|
|
|
MaxAge: 120,
|
|
|
|
|
Secure: cookiePolicy.Secure,
|
|
|
|
|
HttpOnly: cookiePolicy.HTTPOnly,
|
|
|
|
|
SameSite: cookiePolicy.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
|
|
|
}
|
|
|
|
|
|
2025-04-29 13:57:26 +00: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, cookiePolicy apiutil.CookiePolicy) gin.HandlerFunc {
|
2023-01-02 13:10:50 +01:00
|
|
|
store := memstore.NewStore(auth, crypt)
|
2025-04-29 13:57:26 +00:00
|
|
|
store.Options(SessionOptions(cookiePolicy))
|
2023-01-02 13:10:50 +01:00
|
|
|
return sessions.Sessions(sessionName, store)
|
2021-07-07 15:46:42 +02:00
|
|
|
}
|