mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-25 01:44:41 -05:00
38 lines
736 B
Go
38 lines
736 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
"sub2clash/config"
|
||
|
)
|
||
|
|
||
|
func writeTemplate(path string, template string) error {
|
||
|
tPath := filepath.Join(
|
||
|
"templates", path,
|
||
|
)
|
||
|
if _, err := os.Stat(tPath); os.IsNotExist(err) {
|
||
|
file, err := os.Create(tPath)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer func(file *os.File) {
|
||
|
_ = file.Close()
|
||
|
}(file)
|
||
|
_, err = file.WriteString(template)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func WriteDefalutTemplate(templateMeta string, templateClash string) error {
|
||
|
if err := writeTemplate(config.Default.MetaTemplate, templateMeta); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if err := writeTemplate(config.Default.ClashTemplate, templateClash); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|