// // Copyright 2026 The InfiniFlow Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // package config import "github.com/spf13/viper" type AuthenticationConfig struct { DisablePasswordLogin bool `mapstructure:"disable_password_login"` RegisterEnabled bool `mapstructure:"register_enabled"` } type APIServerConfig struct { Host string `mapstructure:"host"` HTTPPort int `mapstructure:"http_port"` Authentication AuthenticationConfig `mapstructure:"authentication"` } func (c *Config) ParseAPIServerConfig(v *viper.Viper) error { // Default Admin config c.apiServer.Host = "localhost" c.apiServer.HTTPPort = 9384 if !v.IsSet("ragflow") { return nil } sub := v.Sub("ragflow") if sub == nil { return nil } if sub.IsSet("host") { c.apiServer.Host = sub.GetString("host") } if sub.IsSet("http_port") { c.apiServer.HTTPPort = sub.GetInt("http_port") } if c.apiServer.HTTPPort == 9380 { c.apiServer.HTTPPort = 9384 } c.parseAuthenticationConfig(v) return nil } func (c *Config) parseAuthenticationConfig(v *viper.Viper) { apiServerConfig := &c.apiServer apiServerConfig.Authentication.DisablePasswordLogin = false apiServerConfig.Authentication.RegisterEnabled = true if !v.IsSet("authentication") { return } sub := v.Sub("authentication") if sub == nil { return } if sub.IsSet("disable_password_login") { apiServerConfig.Authentication.DisablePasswordLogin = sub.GetBool("disable_password_login") } if sub.IsSet("enable_register") { apiServerConfig.Authentication.RegisterEnabled = sub.GetBool("enable_register") } } func (c *Config) DisablePasswordLogin() bool { return c.apiServer.Authentication.DisablePasswordLogin } func (c *Config) RegisterEnabled() bool { return c.apiServer.Authentication.RegisterEnabled } func (c *Config) GetAPIServerConfig() APIServerConfig { return c.apiServer }