2018-11-21 13:47:46 +08:00
|
|
|
package hub
|
|
|
|
|
|
|
|
import (
|
2020-05-28 12:13:05 +08:00
|
|
|
"github.com/Dreamacro/clash/config"
|
2018-11-21 13:47:46 +08:00
|
|
|
"github.com/Dreamacro/clash/hub/executor"
|
|
|
|
"github.com/Dreamacro/clash/hub/route"
|
2023-02-23 23:30:53 +08:00
|
|
|
"github.com/Dreamacro/clash/log"
|
2018-11-21 13:47:46 +08:00
|
|
|
)
|
|
|
|
|
2020-04-27 22:23:09 +08:00
|
|
|
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 WithSecret(secret string) Option {
|
|
|
|
return func(cfg *config.Config) {
|
|
|
|
cfg.General.Secret = secret
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
// Parse call at the beginning of clash
|
2020-04-27 22:23:09 +08:00
|
|
|
func Parse(options ...Option) error {
|
2018-11-21 13:47:46 +08:00
|
|
|
cfg, err := executor.Parse()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-04-27 22:23:09 +08:00
|
|
|
for _, option := range options {
|
|
|
|
option(cfg)
|
|
|
|
}
|
|
|
|
|
2018-12-20 01:29:13 +08:00
|
|
|
if cfg.General.ExternalUI != "" {
|
|
|
|
route.SetUIPath(cfg.General.ExternalUI)
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:47:46 +08:00
|
|
|
if cfg.General.ExternalController != "" {
|
2023-01-14 21:08:06 +08:00
|
|
|
go route.Start(cfg.General.ExternalController, cfg.General.ExternalControllerTLS,
|
2023-03-12 15:00:59 +08:00
|
|
|
cfg.General.Secret, cfg.TLS.Certificate, cfg.TLS.PrivateKey, cfg.General.LogLevel == log.DEBUG)
|
2018-11-21 13:47:46 +08:00
|
|
|
}
|
|
|
|
|
2018-11-30 17:42:40 +08:00
|
|
|
executor.ApplyConfig(cfg, true)
|
2018-11-21 13:47:46 +08:00
|
|
|
return nil
|
|
|
|
}
|