package initialize import ( "context" "encoding/json" "github.com/perfect-panel/server/pkg/logger" "github.com/perfect-panel/server/internal/config" "github.com/perfect-panel/server/internal/model/auth" "github.com/perfect-panel/server/internal/svc" "github.com/perfect-panel/server/pkg/tool" ) func Mobile(ctx *svc.ServiceContext) { logger.Debug("Mobile config initialization") method, err := ctx.AuthModel.FindOneByMethod(context.Background(), "mobile") if err != nil { panic(err) } var cfg config.MobileConfig var mobileConfig auth.MobileAuthConfig mobileConfig.Unmarshal(method.Config) tool.DeepCopy(&cfg, mobileConfig) cfg.Enable = *method.Enabled value, _ := json.Marshal(mobileConfig.PlatformConfig) cfg.PlatformConfig = string(value) ctx.Config.Mobile = cfg }