animeic-cd 1 vuosi sitten
vanhempi
commit
60ae8dce7c
5 muutettua tiedostoa jossa 25 lisäystä ja 31 poistoa
  1. 0 11
      db.json
  2. 9 12
      main.go
  3. 12 0
      readme.md
  4. 3 3
      utils/file.go
  5. 1 5
      utils/utils.go

+ 0 - 11
db.json

@@ -1,11 +0,0 @@
-{
-    "label": "Queenter.鲲特",
-    "name": "queenter",
-    "icon": "https://lancher.obs.cn-east-3.myhuaweicloud.com/assets/icon_queenter.png",
-    "type": "智能录入",
-    "version": "1.1.1",
-    "sizeM": 153,
-    "url": "https://lancher.obs.cn-east-3.myhuaweicloud.com/queenter/queenter-v1.1.1.2-windows.zip",
-    "platform": "windows-amd64",
-    "thumbnail": "https://lancher.obs.cn-east-3.myhuaweicloud.com/assets/fm_qr.png"
-}

+ 9 - 12
main.go

@@ -51,24 +51,21 @@ func main() {
 		fmt.Println("读取配置文件错误")
 		return
 	}
-	uploadConf, err := utils.ReadConfig()
+	uploadConf, err := utils.ReadUpConf()
 	if err != nil {
 		fmt.Println("读取配置文件错误")
 		return
 	}
-	dest := ""
-	copyFiles := []string{}
-	// 需要修改版本的文件
-	modify := ""
-	// 复制文件到对应目录
-	switch appConf.Key {
-	case "queenter":
-		dest = uploadConf.Queenter.Dest
-		copyFiles = uploadConf.Queenter.Files
-		modify = uploadConf.Queenter.Modify
-	default:
+
+	if _, ok := uploadConf[appConf.Key]; !ok {
+		fmt.Println("未找到该配置项")
 		return
 	}
+	// 复制文件到对应目录
+	dest := uploadConf[appConf.Key].Dest
+	copyFiles := uploadConf[appConf.Key].Files
+	modify := uploadConf[appConf.Key].Modify
+
 	// 复制文件到目标目录中
 	for _, file := range copyFiles {
 		err := utils.Copy(file, fmt.Sprintf("%s/%s", dest, file))

+ 12 - 0
readme.md

@@ -0,0 +1,12 @@
+# 压缩上传工具
+
+## 压缩上传
+
+1. 编辑uploader.json 确定需要移动的文件和目标文件夹
+2. 运行app-uploader.exe
+3. 会生成output文件夹,里面包括db.json,数据库需要变动的数据和压缩包
+
+## 解压
+
+1. windows下软件解压会出现文件名不正确
+2. 使用`.\app-uploader.exe -d output/queenter-v1.1.2-amd64-windows.zip`解压得到正确文件

+ 3 - 3
utils/file.go

@@ -28,7 +28,7 @@ func GetVersion() (string, error) {
 	return packConf["version"].(string), nil
 }
 
-func ReadConfig() (*Uploader, error) {
+func ReadUpConf() (map[string]*UpConfItem, error) {
 	conf, err := os.Open(ConfigPath)
 	if err != nil {
 		fmt.Println(err)
@@ -36,8 +36,8 @@ func ReadConfig() (*Uploader, error) {
 	}
 	reader := bufio.NewReader(conf)
 	decoder := json.NewDecoder(reader)
-	config := &Uploader{}
-	err = decoder.Decode(config)
+	config := make(map[string]*UpConfItem)
+	err = decoder.Decode(&config)
 	if err != nil {
 		return nil, errors.New("解析失败")
 	}

+ 1 - 5
utils/utils.go

@@ -5,11 +5,7 @@ var ConfigPath = "uploader.json"
 var OutputDb = "db.json"
 var AppConfPath = "app.json"
 
-type Uploader struct {
-	Queenter QueenterUp
-}
-
-type QueenterUp struct {
+type UpConfItem struct {
 	Files    []string
 	Modify   string
 	PackName string