answer/internal/cli/install.go

97 lines
2.7 KiB
Go
Raw Normal View History

2022-09-28 16:24:33 +08:00
package cli
import (
"fmt"
2022-10-12 20:20:26 +08:00
"path/filepath"
2022-09-28 16:24:33 +08:00
"github.com/answerdev/answer/configs"
"github.com/answerdev/answer/i18n"
"github.com/answerdev/answer/pkg/dir"
"github.com/answerdev/answer/pkg/writer"
2022-09-28 16:24:33 +08:00
)
2022-10-12 11:12:04 +08:00
const (
DefaultConfigFileName = "config.yaml"
)
var (
ConfigFilePath = "/conf/"
UploadFilePath = "/upfiles/"
I18nPath = "/i18n/"
2022-10-12 11:12:04 +08:00
)
2022-09-28 16:24:33 +08:00
2022-10-12 11:12:04 +08:00
// InstallAllInitialEnvironment install all initial environment
func InstallAllInitialEnvironment(dataDirPath string) {
ConfigFilePath = filepath.Join(dataDirPath, ConfigFilePath)
UploadFilePath = filepath.Join(dataDirPath, UploadFilePath)
I18nPath = filepath.Join(dataDirPath, I18nPath)
2022-10-12 11:12:04 +08:00
installUploadDir()
installI18nBundle()
fmt.Println("install all initial environment done")
}
2022-09-28 16:24:33 +08:00
2022-11-03 20:09:04 +08:00
func InstallConfigFile(configFilePath string) error {
if len(configFilePath) == 0 {
configFilePath = filepath.Join(ConfigFilePath, DefaultConfigFileName)
}
fmt.Println("[config-file] try to create at ", configFilePath)
2022-10-12 20:20:26 +08:00
// if config file already exists do nothing.
2022-11-03 20:09:04 +08:00
if CheckConfigFile(configFilePath) {
fmt.Printf("[config-file] %s already exists\n", configFilePath)
return nil
2022-09-28 16:24:33 +08:00
}
2022-10-12 20:20:26 +08:00
if err := dir.CreateDirIfNotExist(ConfigFilePath); err != nil {
2022-10-12 20:20:26 +08:00
fmt.Printf("[config-file] create directory fail %s\n", err.Error())
2022-11-03 20:09:04 +08:00
return fmt.Errorf("create directory fail %s", err.Error())
2022-10-12 20:20:26 +08:00
}
2022-11-03 20:09:04 +08:00
fmt.Printf("[config-file] create directory success, config file is %s\n", configFilePath)
2022-10-12 20:20:26 +08:00
if err := writer.WriteFile(configFilePath, string(configs.Config)); err != nil {
2022-10-12 11:12:04 +08:00
fmt.Printf("[config-file] install fail %s\n", err.Error())
2022-11-03 20:09:04 +08:00
return fmt.Errorf("write file failed %s", err)
2022-09-28 16:24:33 +08:00
}
2022-10-12 20:20:26 +08:00
fmt.Printf("[config-file] install success\n")
2022-11-03 20:09:04 +08:00
return nil
2022-10-12 11:12:04 +08:00
}
func installUploadDir() {
fmt.Println("[upload-dir] try to install...")
if err := dir.CreateDirIfNotExist(UploadFilePath); err != nil {
2022-10-12 11:12:04 +08:00
fmt.Printf("[upload-dir] install fail %s\n", err.Error())
} else {
fmt.Printf("[upload-dir] install success, upload directory is %s\n", UploadFilePath)
2022-10-12 11:12:04 +08:00
}
}
func installI18nBundle() {
fmt.Println("[i18n] try to install i18n bundle...")
if err := dir.CreateDirIfNotExist(I18nPath); err != nil {
2022-09-28 16:24:33 +08:00
fmt.Println(err.Error())
2022-10-12 11:12:04 +08:00
return
2022-09-28 16:24:33 +08:00
}
2022-10-12 11:12:04 +08:00
2022-09-28 16:41:51 +08:00
i18nList, err := i18n.I18n.ReadDir(".")
2022-09-28 16:24:33 +08:00
if err != nil {
fmt.Println(err.Error())
2022-10-12 11:12:04 +08:00
return
2022-09-28 16:24:33 +08:00
}
2022-10-12 11:12:04 +08:00
fmt.Printf("[i18n] find i18n bundle %d\n", len(i18nList))
2022-09-28 16:24:33 +08:00
for _, item := range i18nList {
path := filepath.Join(I18nPath, item.Name())
2022-09-28 16:41:51 +08:00
content, err := i18n.I18n.ReadFile(item.Name())
2022-09-28 16:24:33 +08:00
if err != nil {
continue
}
2022-10-12 11:12:04 +08:00
fmt.Printf("[i18n] install %s bundle...\n", item.Name())
err = writer.WriteFile(path, string(content))
2022-10-12 11:12:04 +08:00
if err != nil {
fmt.Printf("[i18n] install %s bundle fail: %s\n", item.Name(), err.Error())
} else {
fmt.Printf("[i18n] install %s bundle success\n", item.Name())
}
2022-09-28 16:24:33 +08:00
}
}