alist/model/setting.go

48 lines
990 B
Go
Raw Normal View History

2021-10-26 14:28:37 +00:00
package model
2021-10-27 10:59:03 +00:00
import (
"github.com/Xhofe/alist/conf"
)
const (
PUBLIC = iota
PRIVATE
CONST
)
2021-10-26 14:28:37 +00:00
type SettingItem struct {
Key string `json:"key" gorm:"primaryKey" validate:"required"`
Value string `json:"value"`
Description string `json:"description"`
2021-10-29 16:35:29 +00:00
Type string `json:"type"`
Group int `json:"group"`
2021-10-26 14:28:37 +00:00
}
func SaveSettings(items []SettingItem) error {
return conf.DB.Save(items).Error
}
2021-11-03 11:51:19 +00:00
func GetSettingsPublic() (*[]SettingItem, error) {
2021-10-26 14:28:37 +00:00
var items []SettingItem
2021-11-03 11:51:19 +00:00
if err := conf.DB.Where("`group` <> ?", 1).Find(&items).Error; err != nil {
2021-10-29 16:35:29 +00:00
return nil, err
}
return &items, nil
}
func GetSettings() (*[]SettingItem, error) {
var items []SettingItem
if err := conf.DB.Find(&items).Error; err != nil {
2021-10-26 14:28:37 +00:00
return nil, err
}
return &items, nil
}
2021-10-27 10:59:03 +00:00
func GetSettingByKey(key string) (*SettingItem, error) {
var items SettingItem
if err := conf.DB.Where("key = ?", key).First(&items).Error; err != nil {
return nil, err
}
return &items, nil
}