mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-12 18:11:34 +08:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/eolinker/go-common/store"
|
|
|
|
"github.com/eolinker/go-common/utils"
|
|
|
|
system_dto "github.com/APIParkLab/APIPark/module/system/dto"
|
|
"github.com/APIParkLab/APIPark/service/setting"
|
|
)
|
|
|
|
var (
|
|
_ ISettingModule = (*imlSettingModule)(nil)
|
|
)
|
|
|
|
type imlSettingModule struct {
|
|
settingService setting.ISettingService `autowired:""`
|
|
transaction store.ITransaction `autowired:""`
|
|
}
|
|
|
|
func (i *imlSettingModule) Get(ctx context.Context) *system_dto.Setting {
|
|
v, err := i.settingService.All(ctx)
|
|
if err != nil {
|
|
return &system_dto.Setting{}
|
|
}
|
|
return system_dto.MapStringToStruct[system_dto.Setting](v)
|
|
}
|
|
|
|
func (i *imlSettingModule) Set(ctx context.Context, input *system_dto.InputSetting) error {
|
|
err := input.Validate()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return i.transaction.Transaction(ctx, func(ctx context.Context) error {
|
|
keyMap := system_dto.ToKeyMap(input)
|
|
userId := utils.UserId(ctx)
|
|
for k, v := range keyMap {
|
|
err = i.settingService.Set(ctx, k, v, userId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
}
|