clash/config/initial.go

59 lines
1.4 KiB
Go
Raw Normal View History

package config
import (
2018-11-21 05:47:46 +00:00
"fmt"
"io"
"net/http"
"os"
C "github.com/Dreamacro/clash/constant"
2019-12-20 09:22:24 +00:00
"github.com/Dreamacro/clash/log"
)
func downloadMMDB(path string) (err error) {
2019-12-31 04:30:42 +00:00
resp, err := http.Get("https://github.com/Dreamacro/maxmind-geoip/releases/latest/download/Country.mmdb")
if err != nil {
return
}
defer resp.Body.Close()
2019-12-31 04:30:42 +00:00
f, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
2019-12-31 04:30:42 +00:00
return err
}
2019-12-31 04:30:42 +00:00
defer f.Close()
_, err = io.Copy(f, resp.Body)
2019-12-31 04:30:42 +00:00
return err
}
// 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) {
if err := os.MkdirAll(dir, 0777); err != nil {
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")
f, err := os.OpenFile(C.Path.Config(), os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
return fmt.Errorf("Can't create file %s: %s", C.Path.Config(), err.Error())
}
f.Write([]byte(`port: 7890`))
f.Close()
}
// initial mmdb
2018-10-14 13:22:58 +00:00
if _, err := os.Stat(C.Path.MMDB()); os.IsNotExist(err) {
2019-12-20 09:22:24 +00:00
log.Infoln("Can't find MMDB, start download")
2020-02-18 05:48:15 +00:00
if err := downloadMMDB(C.Path.MMDB()); err != nil {
2018-11-21 05:47:46 +00:00
return fmt.Errorf("Can't download MMDB: %s", err.Error())
}
}
2018-11-21 05:47:46 +00:00
return nil
}