mirror of
https://github.com/nitezs/sub2clash.git
synced 2024-12-24 13:04:41 -05:00
8d06ab3175
fix: 修复当订阅链接有多个 clash 配置时丢失节点的问题 update: 增加检测更新 modify: 修改数据库路径 modify: 修改短链生成逻辑 modify: 统一输出信息
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
|
|
}
|