mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-01 21:37:33 +08:00
125 lines
3.3 KiB
Go
125 lines
3.3 KiB
Go
//
|
|
// 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 DocEngineConfig struct {
|
|
ES ElasticsearchConfig `mapstructure:"es"`
|
|
Infinity InfinityConfig `mapstructure:"infinity"`
|
|
}
|
|
|
|
// ElasticsearchConfig Elasticsearch configuration
|
|
type ElasticsearchConfig struct {
|
|
Hosts string `mapstructure:"hosts"`
|
|
Username string `mapstructure:"username"`
|
|
Password string `mapstructure:"password"`
|
|
}
|
|
|
|
// InfinityConfig Infinity configuration
|
|
type InfinityConfig struct {
|
|
URI string `mapstructure:"uri"`
|
|
PostgresPort int `mapstructure:"postgres_port"`
|
|
DBName string `mapstructure:"db_name"`
|
|
MappingFileName string `mapstructure:"mapping_file_name"`
|
|
DocMetaMappingFileName string `mapstructure:"doc_meta_mapping_file_name"`
|
|
}
|
|
|
|
func (c *Config) ParseDocEngineConfig(v *viper.Viper) error {
|
|
c.parseInfinityConfig(v)
|
|
c.parseElasticsearchConfig(v)
|
|
return nil
|
|
}
|
|
|
|
func (c *Config) parseInfinityConfig(v *viper.Viper) {
|
|
// Default Infinity config
|
|
c.docEngine.Infinity.URI = "localhost:23817"
|
|
c.docEngine.Infinity.PostgresPort = 5432
|
|
c.docEngine.Infinity.DBName = "default_db"
|
|
c.docEngine.Infinity.MappingFileName = "infinity_mapping.json"
|
|
c.docEngine.Infinity.DocMetaMappingFileName = "doc_meta_infinity_mapping.json"
|
|
|
|
if !v.IsSet("infinity") {
|
|
return
|
|
}
|
|
sub := v.Sub("infinity")
|
|
if sub == nil {
|
|
return
|
|
}
|
|
|
|
if sub.IsSet("uri") {
|
|
c.docEngine.Infinity.URI = sub.GetString("uri")
|
|
}
|
|
|
|
if sub.IsSet("postgres_port") {
|
|
c.docEngine.Infinity.PostgresPort = sub.GetInt("postgres_port")
|
|
}
|
|
|
|
if sub.IsSet("db_name") {
|
|
c.docEngine.Infinity.DBName = sub.GetString("db_name")
|
|
}
|
|
|
|
if sub.IsSet("mapping_file_name") {
|
|
c.docEngine.Infinity.MappingFileName = sub.GetString("mapping_file_name")
|
|
}
|
|
|
|
if sub.IsSet("doc_meta_mapping_file_name") {
|
|
c.docEngine.Infinity.DocMetaMappingFileName = sub.GetString("doc_meta_mapping_file_name")
|
|
}
|
|
}
|
|
|
|
func (c *Config) parseElasticsearchConfig(v *viper.Viper) {
|
|
// Default Elasticsearch config
|
|
c.docEngine.ES.Hosts = "http://localhost:1200"
|
|
c.docEngine.ES.Username = "elastic"
|
|
c.docEngine.ES.Password = "infini_rag_flow"
|
|
|
|
if !v.IsSet("es") {
|
|
return
|
|
}
|
|
sub := v.Sub("es")
|
|
if sub == nil {
|
|
return
|
|
}
|
|
|
|
if sub.IsSet("hosts") {
|
|
c.docEngine.ES.Hosts = sub.GetString("hosts")
|
|
}
|
|
|
|
if sub.IsSet("username") {
|
|
c.docEngine.ES.Username = sub.GetString("username")
|
|
}
|
|
|
|
if sub.IsSet("password") {
|
|
c.docEngine.ES.Password = sub.GetString("password")
|
|
}
|
|
}
|
|
|
|
func (c *Config) GetElasticsearchConfig() ElasticsearchConfig {
|
|
return c.docEngine.ES
|
|
}
|
|
|
|
func (c *Config) IsElasticConfigured() bool {
|
|
return c.docEngine.ES.Hosts != ""
|
|
}
|
|
|
|
func (c *Config) GetInfinityConfig() InfinityConfig {
|
|
return c.docEngine.Infinity
|
|
}
|