mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-03-18 21:30:01 +08:00
### What problem does this PR solve? 1. Fix go server date precision 2. Use API_SCHEME_PROXY to control the web API route ### Type of change - [x] New Feature (non-breaking change which adds functionality) --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com>
189 lines
5.4 KiB
Go
189 lines
5.4 KiB
Go
//
|
|
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package dao
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"ragflow/internal/model"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// SystemSettingsDAO system settings data access object
|
|
type SystemSettingsDAO struct{}
|
|
|
|
// NewSystemSettingsDAO create system settings DAO instance
|
|
func NewSystemSettingsDAO() *SystemSettingsDAO {
|
|
return &SystemSettingsDAO{}
|
|
}
|
|
|
|
// GetAll get all system settings
|
|
// Returns all system settings records from database
|
|
func (d *SystemSettingsDAO) GetAll() ([]model.SystemSettings, error) {
|
|
var settings []model.SystemSettings
|
|
err := DB.Find(&settings).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return settings, nil
|
|
}
|
|
|
|
// GetByName get system settings by name
|
|
// Returns settings records that match the given name
|
|
func (d *SystemSettingsDAO) GetByName(name string) ([]model.SystemSettings, error) {
|
|
var settings []model.SystemSettings
|
|
err := DB.Where("name = ?", name).Find(&settings).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return settings, nil
|
|
}
|
|
|
|
// UpdateByName update system settings by name
|
|
// Updates the setting with the given name using the provided data
|
|
func (d *SystemSettingsDAO) UpdateByName(name string, setting *model.SystemSettings) error {
|
|
now := time.Now().Unix()
|
|
nowDate := time.Now().Truncate(time.Second)
|
|
|
|
return DB.Model(&model.SystemSettings{}).
|
|
Where("name = ?", name).
|
|
Updates(map[string]interface{}{
|
|
"value": setting.Value,
|
|
"source": setting.Source,
|
|
"data_type": setting.DataType,
|
|
"update_time": now,
|
|
"update_date": nowDate,
|
|
}).Error
|
|
}
|
|
|
|
// Create create a new system setting
|
|
// Inserts a new system setting record into database
|
|
func (d *SystemSettingsDAO) Create(setting *model.SystemSettings) error {
|
|
now := time.Now().Unix()
|
|
nowDate := time.Now().Truncate(time.Second)
|
|
|
|
setting.CreateTime = &now
|
|
setting.CreateDate = &nowDate
|
|
setting.UpdateTime = &now
|
|
setting.UpdateDate = &nowDate
|
|
|
|
return DB.Create(setting).Error
|
|
}
|
|
|
|
// SaveOrCreate update existing setting or create new one
|
|
// If setting exists, updates it; otherwise creates a new record
|
|
func (d *SystemSettingsDAO) SaveOrCreate(name string, value string, source string, dataType string) error {
|
|
settings, err := d.GetByName(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(settings) == 1 {
|
|
setting := &settings[0]
|
|
setting.Value = value
|
|
return d.UpdateByName(name, setting)
|
|
} else if len(settings) > 1 {
|
|
return errors.New("can't update more than 1 setting: " + name)
|
|
}
|
|
|
|
newSetting := &model.SystemSettings{
|
|
Name: name,
|
|
Value: value,
|
|
Source: source,
|
|
DataType: dataType,
|
|
}
|
|
return d.Create(newSetting)
|
|
}
|
|
|
|
// Count get total count of system settings
|
|
func (d *SystemSettingsDAO) Count() (int64, error) {
|
|
var count int64
|
|
err := DB.Model(&model.SystemSettings{}).Count(&count).Error
|
|
return count, err
|
|
}
|
|
|
|
// DeleteByName delete system setting by name
|
|
func (d *SystemSettingsDAO) DeleteByName(name string) error {
|
|
return DB.Where("name = ?", name).Delete(&model.SystemSettings{}).Error
|
|
}
|
|
|
|
// Exists check if setting exists by name
|
|
func (d *SystemSettingsDAO) Exists(name string) (bool, error) {
|
|
var count int64
|
|
err := DB.Model(&model.SystemSettings{}).Where("name = ?", name).Count(&count).Error
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return count > 0, nil
|
|
}
|
|
|
|
// GetBySource get system settings by source
|
|
func (d *SystemSettingsDAO) GetBySource(source string) ([]model.SystemSettings, error) {
|
|
var settings []model.SystemSettings
|
|
err := DB.Where("source = ?", source).Find(&settings).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return settings, nil
|
|
}
|
|
|
|
// GetByDataType get system settings by data type
|
|
func (d *SystemSettingsDAO) GetByDataType(dataType string) ([]model.SystemSettings, error) {
|
|
var settings []model.SystemSettings
|
|
err := DB.Where("data_type = ?", dataType).Find(&settings).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return settings, nil
|
|
}
|
|
|
|
// Transaction execute operations in a transaction
|
|
func (d *SystemSettingsDAO) Transaction(fn func(tx *gorm.DB) error) error {
|
|
return DB.Transaction(fn)
|
|
}
|
|
|
|
// CreateWithTx create setting within transaction
|
|
func (d *SystemSettingsDAO) CreateWithTx(tx *gorm.DB, setting *model.SystemSettings) error {
|
|
now := time.Now().Unix()
|
|
nowDate := time.Now().Truncate(time.Second)
|
|
|
|
setting.CreateTime = &now
|
|
setting.CreateDate = &nowDate
|
|
setting.UpdateTime = &now
|
|
setting.UpdateDate = &nowDate
|
|
|
|
return tx.Create(setting).Error
|
|
}
|
|
|
|
// UpdateByNameWithTx update setting within transaction
|
|
func (d *SystemSettingsDAO) UpdateByNameWithTx(tx *gorm.DB, name string, setting *model.SystemSettings) error {
|
|
now := time.Now().Unix()
|
|
nowDate := time.Now().Truncate(time.Second)
|
|
|
|
return tx.Model(&model.SystemSettings{}).
|
|
Where("name = ?", name).
|
|
Updates(map[string]interface{}{
|
|
"value": setting.Value,
|
|
"source": setting.Source,
|
|
"data_type": setting.DataType,
|
|
"update_time": now,
|
|
"update_date": nowDate,
|
|
}).Error
|
|
}
|