mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
package hub
|
|
|
|
import (
|
|
"github.com/metacubex/mihomo/config"
|
|
"github.com/metacubex/mihomo/hub/executor"
|
|
"github.com/metacubex/mihomo/hub/route"
|
|
"github.com/metacubex/mihomo/log"
|
|
)
|
|
|
|
type Option func(*config.Config)
|
|
|
|
func WithExternalUI(externalUI string) Option {
|
|
return func(cfg *config.Config) {
|
|
cfg.General.ExternalUI = externalUI
|
|
}
|
|
}
|
|
|
|
func WithExternalController(externalController string) Option {
|
|
return func(cfg *config.Config) {
|
|
cfg.General.ExternalController = externalController
|
|
}
|
|
}
|
|
|
|
func WithExternalControllerUnix(externalControllerUnix string) Option {
|
|
return func(cfg *config.Config) {
|
|
cfg.General.ExternalControllerUnix = externalControllerUnix
|
|
}
|
|
}
|
|
|
|
func WithSecret(secret string) Option {
|
|
return func(cfg *config.Config) {
|
|
cfg.General.Secret = secret
|
|
}
|
|
}
|
|
|
|
// Parse call at the beginning of mihomo
|
|
func Parse(options ...Option) error {
|
|
cfg, err := executor.Parse()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, option := range options {
|
|
option(cfg)
|
|
}
|
|
|
|
if cfg.General.ExternalUI != "" {
|
|
route.SetUIPath(cfg.General.ExternalUI)
|
|
}
|
|
|
|
if cfg.General.ExternalController != "" {
|
|
go route.Start(cfg.General.ExternalController, cfg.General.ExternalControllerTLS,
|
|
cfg.General.Secret, cfg.TLS.Certificate, cfg.TLS.PrivateKey, cfg.General.ExternalDohServer,
|
|
cfg.General.LogLevel == log.DEBUG)
|
|
}
|
|
|
|
if cfg.General.ExternalControllerUnix != "" {
|
|
go route.StartUnix(cfg.General.ExternalControllerUnix, cfg.General.ExternalDohServer, cfg.General.LogLevel == log.DEBUG)
|
|
}
|
|
|
|
executor.ApplyConfig(cfg, true)
|
|
return nil
|
|
}
|