2021-02-15 11:03:31 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-02-15 11:03:31 +05:30
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
package auth
|
2021-02-15 11:03:31 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-02-15 11:03:31 +05:30
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Session represents a session compatible for go-chi session
|
|
|
|
type Session struct {
|
|
|
|
Key string `xorm:"pk CHAR(16)"` // has to be Key to match with go-chi/session
|
2021-11-03 06:03:54 +05:30
|
|
|
Data []byte `xorm:"BLOB"` // on MySQL this has a maximum size of 64Kb - this may need to be increased
|
2021-02-15 11:03:31 +05:30
|
|
|
Expiry timeutil.TimeStamp // has to be Expiry to match with go-chi/session
|
|
|
|
}
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(Session))
|
|
|
|
}
|
|
|
|
|
2021-02-15 11:03:31 +05:30
|
|
|
// UpdateSession updates the session with provided id
|
|
|
|
func UpdateSession(key string, data []byte) error {
|
2021-09-23 21:15:36 +05:30
|
|
|
_, err := db.GetEngine(db.DefaultContext).ID(key).Update(&Session{
|
2021-02-15 11:03:31 +05:30
|
|
|
Data: data,
|
|
|
|
Expiry: timeutil.TimeStampNow(),
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadSession reads the data for the provided session
|
|
|
|
func ReadSession(key string) (*Session, error) {
|
|
|
|
session := Session{
|
|
|
|
Key: key,
|
|
|
|
}
|
2021-11-21 21:11:00 +05:30
|
|
|
|
2022-11-13 01:48:50 +05:30
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-21 21:11:00 +05:30
|
|
|
if err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-21 21:11:00 +05:30
|
|
|
defer committer.Close()
|
2021-02-15 11:03:31 +05:30
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
if has, err := db.GetByBean(ctx, &session); err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
session.Expiry = timeutil.TimeStampNow()
|
2021-11-21 21:11:00 +05:30
|
|
|
if err := db.Insert(ctx, &session); err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
return &session, committer.Commit()
|
2021-02-15 11:03:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// ExistSession checks if a session exists
|
|
|
|
func ExistSession(key string) (bool, error) {
|
|
|
|
session := Session{
|
|
|
|
Key: key,
|
|
|
|
}
|
2021-09-23 21:15:36 +05:30
|
|
|
return db.GetEngine(db.DefaultContext).Get(&session)
|
2021-02-15 11:03:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// DestroySession destroys a session
|
|
|
|
func DestroySession(key string) error {
|
2021-09-23 21:15:36 +05:30
|
|
|
_, err := db.GetEngine(db.DefaultContext).Delete(&Session{
|
2021-02-15 11:03:31 +05:30
|
|
|
Key: key,
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegenerateSession regenerates a session from the old id
|
|
|
|
func RegenerateSession(oldKey, newKey string) (*Session, error) {
|
2022-11-13 01:48:50 +05:30
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-21 21:11:00 +05:30
|
|
|
if err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-21 21:11:00 +05:30
|
|
|
defer committer.Close()
|
2021-02-15 11:03:31 +05:30
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
if has, err := db.GetByBean(ctx, &Session{
|
2021-02-15 11:03:31 +05:30
|
|
|
Key: newKey,
|
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if has {
|
|
|
|
return nil, fmt.Errorf("session Key: %s already exists", newKey)
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
if has, err := db.GetByBean(ctx, &Session{
|
2021-02-15 11:03:31 +05:30
|
|
|
Key: oldKey,
|
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
2021-11-21 21:11:00 +05:30
|
|
|
if err := db.Insert(ctx, &Session{
|
2021-02-15 11:03:31 +05:30
|
|
|
Key: oldKey,
|
|
|
|
Expiry: timeutil.TimeStampNow(),
|
2021-11-21 21:11:00 +05:30
|
|
|
}); err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
if _, err := db.Exec(ctx, "UPDATE "+db.TableName(&Session{})+" SET `key` = ? WHERE `key`=?", newKey, oldKey); err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
s := Session{
|
|
|
|
Key: newKey,
|
|
|
|
}
|
2021-11-21 21:11:00 +05:30
|
|
|
if _, err := db.GetByBean(ctx, &s); err != nil {
|
2021-02-15 11:03:31 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-21 21:11:00 +05:30
|
|
|
return &s, committer.Commit()
|
2021-02-15 11:03:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// CountSessions returns the number of sessions
|
|
|
|
func CountSessions() (int64, error) {
|
2021-09-23 21:15:36 +05:30
|
|
|
return db.GetEngine(db.DefaultContext).Count(&Session{})
|
2021-02-15 11:03:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// CleanupSessions cleans up expired sessions
|
|
|
|
func CleanupSessions(maxLifetime int64) error {
|
2021-09-23 21:15:36 +05:30
|
|
|
_, err := db.GetEngine(db.DefaultContext).Where("expiry <= ?", timeutil.TimeStampNow().Add(-maxLifetime)).Delete(&Session{})
|
2021-02-15 11:03:31 +05:30
|
|
|
return err
|
|
|
|
}
|