answer/internal/cli/install.go

115 lines
2.9 KiB
Go
Raw Normal View History

2022-09-28 16:24:33 +08:00
package cli
import (
"bufio"
"fmt"
"os"
2022-10-12 20:20:26 +08:00
"path/filepath"
2022-09-28 16:24:33 +08:00
"github.com/segmentfault/answer/configs"
2022-09-28 16:41:51 +08:00
"github.com/segmentfault/answer/i18n"
2022-09-28 16:24:33 +08:00
"github.com/segmentfault/answer/pkg/dir"
)
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
installConfigFile()
installUploadDir()
installI18nBundle()
fmt.Println("install all initial environment done")
return
}
2022-09-28 16:24:33 +08:00
2022-10-12 11:12:04 +08:00
func installConfigFile() {
fmt.Println("[config-file] try to install...")
defaultConfigFile := filepath.Join(ConfigFilePath, DefaultConfigFileName)
2022-10-12 20:20:26 +08:00
// if config file already exists do nothing.
if CheckConfigFile(defaultConfigFile) {
fmt.Printf("[config-file] %s already exists\n", defaultConfigFile)
2022-10-12 11:12:04 +08:00
return
2022-09-28 16:24:33 +08:00
}
2022-10-12 20:20:26 +08:00
if _, err := dir.CreatePathIsNotExist(ConfigFilePath); err != nil {
2022-10-12 20:20:26 +08:00
fmt.Printf("[config-file] create directory fail %s\n", err.Error())
return
}
fmt.Printf("[config-file] create directory success, config file is %s\n", defaultConfigFile)
2022-10-12 20:20:26 +08:00
if err := writerFile(defaultConfigFile, string(configs.Config)); err != nil {
2022-10-12 11:12:04 +08:00
fmt.Printf("[config-file] install fail %s\n", err.Error())
2022-10-12 20:20:26 +08:00
return
2022-09-28 16:24:33 +08:00
}
2022-10-12 20:20:26 +08:00
fmt.Printf("[config-file] install success\n")
2022-10-12 11:12:04 +08:00
}
func installUploadDir() {
fmt.Println("[upload-dir] try to install...")
if _, err := dir.CreatePathIsNotExist(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.CreatePathIsNotExist(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 = writerFile(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
}
}
func writerFile(filePath, content string) error {
2022-09-28 16:24:33 +08:00
file, err := os.OpenFile(filePath, os.O_WRONLY|os.O_CREATE, 0666)
if err != nil {
return err
}
2022-10-12 11:49:28 +08:00
defer func() {
_ = file.Close()
}()
2022-10-12 11:12:04 +08:00
writer := bufio.NewWriter(file)
if _, err := writer.WriteString(content); err != nil {
return err
}
if err := writer.Flush(); err != nil {
2022-09-28 16:24:33 +08:00
return err
}
return nil
}