wp-go/internal/wpconfig/options.go
2023-01-19 14:12:59 +08:00

38 lines
793 B
Go

package wpconfig
import (
"context"
"github.com/fthvgb1/wp-go/internal/pkg/models"
"github.com/fthvgb1/wp-go/model"
"github.com/fthvgb1/wp-go/safety"
"strings"
)
var Options safety.Map[string, string]
func InitOptions() error {
ctx := context.Background()
ops, err := model.SimpleFind[models.Options](ctx, model.SqlBuilder{{"autoload", "yes"}}, "option_name, option_value")
if err != nil {
return err
}
if len(ops) == 0 {
ops, err = model.SimpleFind[models.Options](ctx, nil, "option_name, option_value")
if err != nil {
return err
}
}
for _, options := range ops {
Options.Store(options.OptionName, options.OptionValue)
}
return nil
}
func GetLang() string {
s, ok := Options.Load("WPLANG")
if !ok {
s = "zh-CN"
}
return strings.Replace(s, "_", "-", 1)
}