28e53d90fc
- 统一 OpenAI 兼容 /v1 中继 + 渠道/额度/令牌/流水 - 各领域包:relay 模型网关、model 数据层、controller 管理 API
52 lines
1.5 KiB
Go
52 lines
1.5 KiB
Go
package service
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/QuantumNous/new-api/common"
|
|
"github.com/QuantumNous/new-api/model"
|
|
)
|
|
|
|
const authArtifactCleanupInterval = time.Hour
|
|
|
|
// StartAuthArtifactCleanup removes expired dashboard Sessions and old
|
|
// one-time authentication flows. Only the master instance performs cleanup.
|
|
func StartAuthArtifactCleanup() {
|
|
if !common.IsMasterNode {
|
|
return
|
|
}
|
|
go func() {
|
|
cleanupAuthArtifacts()
|
|
ticker := time.NewTicker(authArtifactCleanupInterval)
|
|
defer ticker.Stop()
|
|
for range ticker.C {
|
|
cleanupAuthArtifacts()
|
|
}
|
|
}()
|
|
}
|
|
|
|
func cleanupAuthArtifacts() {
|
|
now := time.Now()
|
|
count, err := model.CountUserSessionsCreatedSince(0, now.Add(-time.Hour).Unix())
|
|
if err != nil {
|
|
common.SysError("failed to count hourly user session issuance: " + err.Error())
|
|
} else if count > int64(common.UserSessionHourlyAlertThreshold) {
|
|
common.SysError(fmt.Sprintf(
|
|
"hourly user session issuance exceeded alert threshold: count=%d threshold=%d window_seconds=%d",
|
|
count,
|
|
common.UserSessionHourlyAlertThreshold,
|
|
int64(time.Hour/time.Second),
|
|
))
|
|
}
|
|
if err := model.DeleteExpiredUserSessions(now.Unix()); err != nil {
|
|
common.SysError("failed to delete expired user sessions: " + err.Error())
|
|
}
|
|
if err := model.DeleteOldRevokedUserSessions(now.Unix()); err != nil {
|
|
common.SysError("failed to delete old revoked user sessions: " + err.Error())
|
|
}
|
|
if err := model.DeleteExpiredAuthFlows(now); err != nil {
|
|
common.SysError("failed to delete expired authentication flows: " + err.Error())
|
|
}
|
|
}
|