Files
ai-agent/internal/repositories/conversation_repository.go
T
mlogclub 34051a4631 feat: Enhance AI Agent and Channel Management
- Updated labels in the AI Agents dashboard for clarity, changing "流程状态" to "Playbook 状态" and "未发布流程" to "未发布 Playbook".
- Introduced AI Agent rollout percentage management in channel editing, allowing users to set and rollback rollout percentages.
- Added new API endpoints for rolling back AI Agent rollout and fetching agent run metrics.
- Implemented new UI components for displaying agent run details, including status, duration, and input/output tokens.
- Enhanced type definitions for AdminChannel and AIAgent to include rollout percentages and runtime modes.
- Updated navigation to include a section for agent runs.
- Added new translations for agent run features in both English and Chinese.
2026-07-25 12:04:06 +08:00

132 lines
3.7 KiB
Go

package repositories
import (
"agent-desk/internal/models"
"agent-desk/internal/pkg/httpx/params"
"github.com/mlogclub/simple/sqls"
"gorm.io/gorm"
)
var ConversationRepository = newConversationRepository()
func newConversationRepository() *conversationRepository {
return &conversationRepository{}
}
type conversationRepository struct {
}
func (r *conversationRepository) Get(db *gorm.DB, id int64) *models.Conversation {
ret := &models.Conversation{}
if err := db.First(ret, "id = ?", id).Error; err != nil {
return nil
}
return ret
}
func (r *conversationRepository) Take(db *gorm.DB, where ...interface{}) *models.Conversation {
ret := &models.Conversation{}
if err := db.Take(ret, where...).Error; err != nil {
return nil
}
return ret
}
func (r *conversationRepository) Find(db *gorm.DB, cnd *sqls.Cnd) (list []models.Conversation) {
cnd.Find(db, &list)
return
}
func (r *conversationRepository) FindOne(db *gorm.DB, cnd *sqls.Cnd) *models.Conversation {
ret := &models.Conversation{}
if err := cnd.FindOne(db, &ret); err != nil {
return nil
}
return ret
}
func (r *conversationRepository) FindPageByParams(db *gorm.DB, params *params.QueryParams) (list []models.Conversation, paging *sqls.Paging) {
return r.FindPageByCnd(db, &params.Cnd)
}
func (r *conversationRepository) FindPageByCnd(db *gorm.DB, cnd *sqls.Cnd) (list []models.Conversation, paging *sqls.Paging) {
cnd.Find(db, &list)
count := cnd.Count(db, &models.Conversation{})
paging = &sqls.Paging{
Page: cnd.Paging.Page,
Limit: cnd.Paging.Limit,
Total: count,
}
return
}
func (r *conversationRepository) FindBySql(db *gorm.DB, sqlStr string, paramArr ...interface{}) (list []models.Conversation) {
db.Raw(sqlStr, paramArr...).Scan(&list)
return
}
func (r *conversationRepository) CountBySql(db *gorm.DB, sqlStr string, paramArr ...interface{}) (count int64) {
db.Raw(sqlStr, paramArr...).Count(&count)
return
}
func (r *conversationRepository) Count(db *gorm.DB, cnd *sqls.Cnd) int64 {
return cnd.Count(db, &models.Conversation{})
}
func (r *conversationRepository) CountByAIAgentID(db *gorm.DB, aiAgentID int64) int64 {
query := db.Model(&models.Conversation{})
if aiAgentID > 0 {
query = query.Where("ai_agent_id = ?", aiAgentID)
}
var count int64
if err := query.Count(&count).Error; err != nil {
return 0
}
return count
}
func (r *conversationRepository) CountHandoffByAIAgentID(db *gorm.DB, aiAgentID int64) int64 {
query := db.Model(&models.Conversation{}).Where("handoff_at IS NOT NULL")
if aiAgentID > 0 {
query = query.Where("ai_agent_id = ?", aiAgentID)
}
var count int64
if err := query.Count(&count).Error; err != nil {
return 0
}
return count
}
func (r *conversationRepository) Create(db *gorm.DB, t *models.Conversation) (err error) {
err = db.Create(t).Error
return
}
func (r *conversationRepository) Update(db *gorm.DB, t *models.Conversation) (err error) {
err = db.Save(t).Error
return
}
func (r *conversationRepository) Updates(db *gorm.DB, id int64, columns map[string]interface{}) (err error) {
err = db.Model(&models.Conversation{}).Where("id = ?", id).Updates(columns).Error
return
}
func (r *conversationRepository) UpdatesByCustomerID(db *gorm.DB, customerID int64, columns map[string]interface{}) (err error) {
err = db.Model(&models.Conversation{}).Where("customer_id = ?", customerID).Updates(columns).Error
return
}
func (r *conversationRepository) UpdateColumn(db *gorm.DB, id int64, name string, value interface{}) (err error) {
err = db.Model(&models.Conversation{}).Where("id = ?", id).UpdateColumn(name, value).Error
return
}
func (r *conversationRepository) Delete(db *gorm.DB, id int64) {
db.Delete(&models.Conversation{}, "id = ?", id)
}