Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config.go49
1 files changed, 49 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go
index 70be5ae6..942de7fb 100644
--- a/config/config.go
+++ b/config/config.go
@@ -3,6 +3,7 @@ package config
import (
_ "embed"
"fmt"
+ "log"
"os"
"strings"
)
@@ -62,7 +63,55 @@ func GetDBFolderPath() string {
return dbFolderPath
}
+// DatabaseConfig holds the database configuration
+type DatabaseConfig struct {
+ Connection string
+ Host string
+ Port string
+ Database string
+ Username string
+ Password string
+}
+
+// GetDatabaseConfig returns the database configuration from environment variables
+func GetDatabaseConfig() (*DatabaseConfig, error) {
+ config := &DatabaseConfig{
+ Connection: strings.ToLower(os.Getenv("XUI_DB_CONNECTION")),
+ Host: os.Getenv("XUI_DB_HOST"),
+ Port: os.Getenv("XUI_DB_PORT"),
+ Database: os.Getenv("XUI_DB_DATABASE"),
+ Username: os.Getenv("XUI_DB_USERNAME"),
+ Password: os.Getenv("XUI_DB_PASSWORD"),
+ }
+
+ if config.Connection == "mysql" {
+ if config.Host == "" || config.Database == "" || config.Username == "" {
+ return nil, fmt.Errorf("missing required MySQL configuration: host, database, and username are required")
+ }
+ if config.Port == "" {
+ config.Port = "3306"
+ }
+ }
+
+ return config, nil
+}
+
func GetDBPath() string {
+ config, err := GetDatabaseConfig()
+ if err != nil {
+ log.Fatalf("Error getting database config: %v", err)
+ }
+
+ if config.Connection == "mysql" {
+ return fmt.Sprintf("%s:%s@tcp(%s:%s)/%s?charset=utf8&parseTime=True&loc=Local",
+ config.Username,
+ config.Password,
+ config.Host,
+ config.Port,
+ config.Database)
+ }
+
+ // Connection is sqlite
return fmt.Sprintf("%s/%s.db", GetDBFolderPath(), GetName())
}