Files
ai-agent/internal/services/login_session_service.go
T
mlogclub 5d7c10aeab refactor: rename agent widget references to AI agent for consistency
- Updated runtime configuration to use __CS_AI_AGENT_WIDGET_CONFIG__ instead of __CS_AGENT_WIDGET_CONFIG__.
- Changed message types in support host bridge from "cs-agent" to "cs-ai-agent".
- Minified SDK script updated to reflect new AI agent naming conventions.
- Adjusted scrollbar styles in main.scss to use .cs-ai-agent-scrollbar instead of .cs-agent-scrollbar.
2026-05-30 21:19:36 +08:00

95 lines
2.9 KiB
Go

package services
import (
"cs-ai-agent/internal/models"
"cs-ai-agent/internal/pkg/errorsx"
"cs-ai-agent/internal/repositories"
"time"
"cs-ai-agent/internal/pkg/httpx/params"
"github.com/mlogclub/simple/sqls"
)
var LoginSessionService = newLoginSessionService()
func newLoginSessionService() *loginSessionService {
return &loginSessionService{}
}
type loginSessionService struct {
}
func (s *loginSessionService) Get(id int64) *models.LoginSession {
return repositories.LoginSessionRepository.Get(sqls.DB(), id)
}
func (s *loginSessionService) Take(where ...interface{}) *models.LoginSession {
return repositories.LoginSessionRepository.Take(sqls.DB(), where...)
}
func (s *loginSessionService) Find(cnd *sqls.Cnd) []models.LoginSession {
return repositories.LoginSessionRepository.Find(sqls.DB(), cnd)
}
func (s *loginSessionService) FindOne(cnd *sqls.Cnd) *models.LoginSession {
return repositories.LoginSessionRepository.FindOne(sqls.DB(), cnd)
}
func (s *loginSessionService) FindPageByParams(params *params.QueryParams) (list []models.LoginSession, paging *sqls.Paging) {
return repositories.LoginSessionRepository.FindPageByParams(sqls.DB(), params)
}
func (s *loginSessionService) FindPageByCnd(cnd *sqls.Cnd) (list []models.LoginSession, paging *sqls.Paging) {
return repositories.LoginSessionRepository.FindPageByCnd(sqls.DB(), cnd)
}
func (s *loginSessionService) Count(cnd *sqls.Cnd) int64 {
return repositories.LoginSessionRepository.Count(sqls.DB(), cnd)
}
func (s *loginSessionService) Create(t *models.LoginSession) error {
return repositories.LoginSessionRepository.Create(sqls.DB(), t)
}
func (s *loginSessionService) Update(t *models.LoginSession) error {
return repositories.LoginSessionRepository.Update(sqls.DB(), t)
}
func (s *loginSessionService) Updates(id int64, columns map[string]interface{}) error {
return repositories.LoginSessionRepository.Updates(sqls.DB(), id, columns)
}
func (s *loginSessionService) UpdateColumn(id int64, name string, value interface{}) error {
return repositories.LoginSessionRepository.UpdateColumn(sqls.DB(), id, name, value)
}
func (s *loginSessionService) Delete(id int64) {
repositories.LoginSessionRepository.Delete(sqls.DB(), id)
}
func (s *loginSessionService) Revoke(id int64, operatorID int64, operatorName string) error {
session := s.Get(id)
if session == nil {
return errorsx.InvalidParam("会话不存在")
}
now := time.Now()
return s.Updates(id, map[string]any{
"revoked_at": now,
"update_user_id": operatorID,
"update_user_name": operatorName,
"updated_at": now,
})
}
func (s *loginSessionService) RevokeByUser(userID int64, operatorID int64, operatorName string) error {
now := time.Now()
return sqls.DB().Model(&models.LoginSession{}).
Where("user_id = ? AND revoked_at IS NULL", userID).
Updates(map[string]any{
"revoked_at": now,
"update_user_id": operatorID,
"update_user_name": operatorName,
"updated_at": now,
}).Error
}