Clash.Meta/config/initial.go

33 lines
778 B
Go
Raw Normal View History

package config
import (
2018-11-21 13:47:46 +08:00
"fmt"
"os"
2023-11-03 21:01:45 +08:00
C "github.com/metacubex/mihomo/constant"
"github.com/metacubex/mihomo/log"
)
// Init prepare necessary files
2018-11-21 13:47:46 +08:00
func Init(dir string) error {
2018-10-14 21:22:58 +08:00
// initial homedir
2018-11-21 13:47:46 +08:00
if _, err := os.Stat(dir); os.IsNotExist(err) {
2021-10-10 23:44:09 +08:00
if err := os.MkdirAll(dir, 0o777); err != nil {
2020-08-25 22:19:59 +08:00
return fmt.Errorf("can't create config directory %s: %s", dir, err.Error())
2018-10-14 21:22:58 +08:00
}
}
// initial config.yaml
2018-10-14 21:22:58 +08:00
if _, err := os.Stat(C.Path.Config()); os.IsNotExist(err) {
2020-02-18 13:48:15 +08:00
log.Infoln("Can't find config, create a initial config file")
2021-10-10 23:44:09 +08:00
f, err := os.OpenFile(C.Path.Config(), os.O_CREATE|os.O_WRONLY, 0o644)
2020-02-18 13:48:15 +08:00
if err != nil {
2020-08-25 22:19:59 +08:00
return fmt.Errorf("can't create file %s: %s", C.Path.Config(), err.Error())
2020-02-18 13:48:15 +08:00
}
f.Write([]byte(`mixed-port: 7890`))
2020-02-18 13:48:15 +08:00
f.Close()
}
2021-11-17 16:03:47 +08:00
2018-11-21 13:47:46 +08:00
return nil
}