2019-03-16 03:12:44 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-16 03:12:44 +00:00
|
|
|
|
|
|
|
package setting
|
|
|
|
|
2020-09-25 08:58:09 +00:00
|
|
|
import "reflect"
|
|
|
|
|
2020-05-16 23:31:38 +00:00
|
|
|
// GetCronSettings maps the cron subsection to the provided config
|
2023-07-05 03:41:32 +00:00
|
|
|
func GetCronSettings(name string, config any) (any, error) {
|
2023-02-19 16:12:01 +00:00
|
|
|
return getCronSettings(CfgProvider, name, config)
|
|
|
|
}
|
|
|
|
|
2023-07-05 03:41:32 +00:00
|
|
|
func getCronSettings(rootCfg ConfigProvider, name string, config any) (any, error) {
|
2023-02-19 16:12:01 +00:00
|
|
|
if err := rootCfg.Section("cron." + name).MapTo(config); err != nil {
|
2020-09-25 08:58:09 +00:00
|
|
|
return config, err
|
|
|
|
}
|
|
|
|
|
|
|
|
typ := reflect.TypeOf(config).Elem()
|
|
|
|
val := reflect.ValueOf(config).Elem()
|
|
|
|
|
|
|
|
for i := 0; i < typ.NumField(); i++ {
|
|
|
|
field := val.Field(i)
|
|
|
|
tpField := typ.Field(i)
|
|
|
|
if tpField.Type.Kind() == reflect.Struct && tpField.Anonymous {
|
2023-02-19 16:12:01 +00:00
|
|
|
if err := rootCfg.Section("cron." + name).MapTo(field.Addr().Interface()); err != nil {
|
2020-09-25 08:58:09 +00:00
|
|
|
return config, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
2019-03-16 03:12:44 +00:00
|
|
|
}
|