Feat: group options in database scheme

pull/247/head
HFO4 5 years ago
parent 2b25b9d315
commit ba34a092d1

@ -16,9 +16,17 @@ type Group struct {
Aria2Option string Aria2Option string
Color string Color string
SpeedLimit int SpeedLimit int
Options string `json:"-",gorm:"size:4096"`
// 数据库忽略字段 // 数据库忽略字段
PolicyList []uint `gorm:"-"` PolicyList []uint `gorm:"-"`
OptionsSerialized GroupOption `gorm:"-"`
}
// GroupOption 用户组其他配置
type GroupOption struct {
ArchiveDownloadEnabled bool `json:"archive_download"`
ArchiveTaskEnabled bool `json:"archive_task"`
} }
// GetAria2Option 获取用户离线下载设备 // GetAria2Option 获取用户离线下载设备
@ -42,8 +50,19 @@ func GetGroupByID(ID interface{}) (Group, error) {
// AfterFind 找到用户组后的钩子处理Policy列表 // AfterFind 找到用户组后的钩子处理Policy列表
func (group *Group) AfterFind() (err error) { func (group *Group) AfterFind() (err error) {
// 解析用户设置到OptionsSerialized // 解析用户组策略列表
if group.Policies != "" {
err = json.Unmarshal([]byte(group.Policies), &group.PolicyList) err = json.Unmarshal([]byte(group.Policies), &group.PolicyList)
}
if err != nil {
return err
}
// 解析用户组设置
if group.Options != "" {
err = json.Unmarshal([]byte(group.Options), &group.OptionsSerialized)
}
return err return err
} }
@ -53,9 +72,16 @@ func (group *Group) BeforeSave() (err error) {
return err return err
} }
//SerializePolicyList 将序列后的可选策略列表写入数据库字段 //SerializePolicyList 将序列后的可选策略列表、配置写入数据库字段
// TODO 完善测试
func (group *Group) SerializePolicyList() (err error) { func (group *Group) SerializePolicyList() (err error) {
optionsValue, err := json.Marshal(&group.PolicyList) policies, err := json.Marshal(&group.PolicyList)
group.Policies = string(optionsValue) group.Policies = string(policies)
if err != nil {
return err
}
optionsValue, err := json.Marshal(&group.OptionsSerialized)
group.Options = string(optionsValue)
return err return err
} }

@ -17,6 +17,20 @@ import (
"strconv" "strconv"
) )
func ArchiveAndDownload(c *gin.Context) {
// 创建上下文
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
var service explorer.ItemService
if err := c.ShouldBindJSON(&service); err == nil {
res := service.ArchiveAndDownload(ctx, c)
c.JSON(200, res)
} else {
c.JSON(200, ErrorResponse(err))
}
}
// AnonymousGetContent 匿名获取文件资源 // AnonymousGetContent 匿名获取文件资源
func AnonymousGetContent(c *gin.Context) { func AnonymousGetContent(c *gin.Context) {
// 创建上下文 // 创建上下文

@ -101,6 +101,8 @@ func InitRouter() *gin.Engine {
file.GET("thumb/:id", controllers.Thumb) file.GET("thumb/:id", controllers.Thumb)
// 取得文件外链 // 取得文件外链
file.GET("source/:id", controllers.GetSource) file.GET("source/:id", controllers.GetSource)
// 测试用:压缩文件和目录并下載
file.POST("archive", controllers.ArchiveAndDownload)
} }
// 目录 // 目录

@ -26,6 +26,13 @@ type ItemService struct {
Dirs []uint `json:"dirs" binding:"exists"` Dirs []uint `json:"dirs" binding:"exists"`
} }
// ArchiveAndDownload 创建归档并下載文件
func (service *ItemService) ArchiveAndDownload(ctx context.Context, c *gin.Context) serializer.Response {
return serializer.Response{
Code: 0,
}
}
// Delete 删除对象 // Delete 删除对象
func (service *ItemService) Delete(ctx context.Context, c *gin.Context) serializer.Response { func (service *ItemService) Delete(ctx context.Context, c *gin.Context) serializer.Response {
// 创建文件系统 // 创建文件系统

Loading…
Cancel
Save