clash/config/initial.go

51 lines
1.3 KiB
Go
Raw Normal View History

package config
import (
2018-11-21 05:47:46 +00:00
"fmt"
2022-03-15 14:25:33 +00:00
"github.com/Dreamacro/clash/component/geodata"
"os"
C "github.com/Dreamacro/clash/constant"
2019-12-20 09:22:24 +00:00
"github.com/Dreamacro/clash/log"
)
// Init prepare necessary files
2018-11-21 05:47:46 +00:00
func Init(dir string) error {
2018-10-14 13:22:58 +00:00
// initial homedir
2018-11-21 05:47:46 +00:00
if _, err := os.Stat(dir); os.IsNotExist(err) {
2021-10-10 15:44:09 +00:00
if err := os.MkdirAll(dir, 0o777); err != nil {
2020-08-25 14:19:59 +00:00
return fmt.Errorf("can't create config directory %s: %s", dir, err.Error())
2018-10-14 13:22:58 +00:00
}
}
// initial config.yaml
2018-10-14 13:22:58 +00:00
if _, err := os.Stat(C.Path.Config()); os.IsNotExist(err) {
2020-02-18 05:48:15 +00:00
log.Infoln("Can't find config, create a initial config file")
2021-10-10 15:44:09 +00:00
f, err := os.OpenFile(C.Path.Config(), os.O_CREATE|os.O_WRONLY, 0o644)
2020-02-18 05:48:15 +00:00
if err != nil {
2020-08-25 14:19:59 +00:00
return fmt.Errorf("can't create file %s: %s", C.Path.Config(), err.Error())
2020-02-18 05:48:15 +00:00
}
f.Write([]byte(`mixed-port: 7890`))
2020-02-18 05:48:15 +00:00
f.Close()
}
2022-03-16 13:47:00 +00:00
buf, _ := os.ReadFile(C.Path.Config())
rawCfg, err := UnmarshalRawConfig(buf)
if err != nil {
log.Errorln(err.Error())
fmt.Printf("configuration file %s test failed\n", C.Path.Config())
os.Exit(1)
}
if !C.GeodataMode {
C.GeodataMode = rawCfg.GeodataMode
}
2022-05-27 04:16:04 +00:00
C.GeoIpUrl = rawCfg.GeoXUrl.GeoIp
C.GeoSiteUrl = rawCfg.GeoXUrl.GeoSite
C.MmdbUrl = rawCfg.GeoXUrl.Mmdb
// initial GeoIP
2023-01-09 13:07:31 +00:00
if err := geodata.InitGeoIP(); err != nil {
return fmt.Errorf("can't initial GeoIP: %w", err)
}
2021-11-17 08:03:47 +00:00
2018-11-21 05:47:46 +00:00
return nil
}