liuxiaolong
2020-06-05 7c811247ecf143e08c576986a884bedadc57dd66
service/SysService.go
@@ -1,13 +1,15 @@
package service
import (
   "basic.com/valib/logger.git"
   "bufio"
   "errors"
   "fmt"
   "io/ioutil"
   "mime/multipart"
   "os"
   "os/exec"
   "strconv"
   "path"
   "strings"
   "webserver/extend/config"
   "webserver/extend/util"
@@ -66,7 +68,8 @@
      return true
   }
   //判断分块文件是否存在
   chunkFilePath := fileTmpPath+"/"+arg.Identifier+"_"+strconv.Itoa(arg.ChunkNumber)
   chunkAlignNum := util.FormatNum(arg.TotalChunks, arg.ChunkNumber)
   chunkFilePath := fileTmpPath+"/"+arg.Identifier+"_"+chunkAlignNum
   if !util.Exists(chunkFilePath) {
      return false
   }
@@ -74,19 +77,15 @@
      dirFiles, _ := ioutil.ReadDir(fileTmpPath)
      if dirFiles != nil && len(dirFiles) == arg.TotalChunks {
         //表示所有分块都上传了,需要merge
         if sv.MergeChunks(fileTmpPath, mergedFilePath) {
            if util.ZipCheck(mergedFilePath) {
               if !updatePatch(arg.Identifier, subfix) {
                  return false
               }
            }
         if !MergeChunks(fileTmpPath, mergedFilePath) {
            return false
         }
      }
   }
   return true
}
func (sv SysService) PatchUpload(arg *FileUploadVo) bool {
func (sv SysService) PatchUpload(arg *FileUploadVo) (bool,bool) {
   configPatchPath := ""
   if config.Server.PatchPath != "" {
      configPatchPath = config.Server.PatchPath
@@ -95,33 +94,32 @@
   }
   defer (*arg.File).Close()
   if !util.CreateDirectory(configPatchPath) {
      return false
      return false, false
   }
   index := strings.LastIndex(arg.Header.Filename, ".")
   if index < 0 {
      return false
   }
   subfix := arg.Header.Filename[index:]
   filenameWithSuffix := path.Base(arg.Header.Filename)
   subfix := path.Ext(filenameWithSuffix)
   MD5Str := arg.Identifier
   logger.Debug("Identifier:",MD5Str)
   fileTmpPath := configPatchPath + "/"+MD5Str
   if !util.Exists(fileTmpPath) {
      if !util.CreateDirectory(fileTmpPath) {
         return false
         return false, false
      }
   }
   fileSavePath := fileTmpPath+"/"+MD5Str+"_"+strconv.Itoa(arg.ChunkNumber)
   chunkAlignNum := util.FormatNum(arg.TotalChunks, arg.ChunkNumber)
   fileSavePath := fileTmpPath+"/"+MD5Str+"_"+chunkAlignNum
   if util.Exists(fileSavePath) {
      rmErr := os.Remove(fileSavePath)
      if rmErr != nil {
         logger.Debug("rmErr:",rmErr)
         return false
         return false, false
      }
   }
   file, e := os.Create(fileSavePath)
   if e !=nil {
      logger.Debug("os.Create err:",e,"fileSavePath:",fileSavePath)
      return false
      return false, false
   }
   defer file.Close()
   writer := bufio.NewWriter(file)
@@ -129,12 +127,15 @@
   n, err := (*arg.File).ReadAt(chunkData, 0)
   if n ==0 || err !=nil {
      logger.Debug("read chunkData err:",err,"n:",n)
      return false
      return false, false
   }
   nn, err2 := writer.Write(chunkData)
   if nn ==0 || err2 !=nil {
      logger.Debug("write chunkData err:",err2,"nn:",nn)
      return false
      return false, false
   }
   if err = writer.Flush(); err != nil {
      logger.Debug("write flush err:",err)
   }
   isComplete := false
   dirFiles, _ := ioutil.ReadDir(fileTmpPath)
@@ -142,14 +143,72 @@
      isComplete = true
   }
   if isComplete {
      if sv.MergeChunks(fileTmpPath,fileTmpPath + subfix) {
      if MergeChunks(fileTmpPath,fileTmpPath + subfix) {
         logger.Debug("merge all chunks success,identifier:",MD5Str,"fileName:",arg.FileName)
         if util.ZipCheck(fileTmpPath + subfix) {
            if !updatePatch(arg.Identifier, subfix) {
               return false
            }
         }
      } else {
         return false, isComplete
      }
   }
   return true, isComplete
}
//upgrade
func (sv SysService) Upgrade(identifier string,filename string) (bool,error) {
   if !bakBeforeUpgrade() {
      return false,errors.New("更新前备份失败")
   }
   configPatchPath := ""
   if config.Server.PatchPath != "" {
      configPatchPath = config.Server.PatchPath
   } else {
      configPatchPath = "/opt/vasystem/patch"
   }
   filenameWithSuffix := path.Base(filename)
   ext := path.Ext(filenameWithSuffix)
   zipFilePath := configPatchPath + "/"+identifier+ext
   if util.Exists(zipFilePath) {
      //校验md5
      strMd5, e := util.FileMd5(zipFilePath)
      if e !=nil || strMd5 == "" {
         return false,errors.New("获取升级压缩包md5失败")
      }
      if strMd5 == identifier {
         if !updatePatch(identifier, ext) {
            return false,errors.New("执行升级过程异常,请确定上传的补丁是tar.gz格式")
         }
         return true,nil
      } else {
         logger.Debug("strMd5 is", strMd5,"identifier is",identifier,"not equal")
         return false,errors.New("校验升级文件失败")
      }
   } else {
      return false,errors.New("升级文件已丢失,请重新上传")
   }
}
func bakBeforeUpgrade() bool {
   configBakPath := ""
   if config.Server.BakPath != "" {
      configBakPath = config.Server.BakPath
   } else {
      configBakPath = "/opt/vasystem/bak"
   }
   if util.Exists(configBakPath) {
      //只保留最新的版本
      if err := os.RemoveAll(configBakPath);err != nil {
         return false
      }
   }
   if !util.CreateDirectory(configBakPath) {
      return false
   }
   b, err := ExecCmd("cp -r /opt/vasystem/bin /opt/vasystem/bak")
   if err != nil {
      logger.Debug("bakBeforeUpgrade result:",string(b),"err:",err)
      return false
   }
   return true
}
@@ -163,40 +222,65 @@
      configPatchPath = "/opt/vasystem/patch"
   }
   //1.解压缩更新包
   unZipPath := configPatchPath+"/"+identifier+"_basic/"
   if util.Exists(unZipPath) {
   unPackPath := configPatchPath+"/"+identifier+"_basic/"
   if util.Exists(unPackPath) {
      //此版本已经更新过
      return true
   } else {
      if !util.CreateDirectory(unZipPath) {
      rmErr := os.RemoveAll(unPackPath)
      if rmErr !=nil {
         return false
      }
   }
   err := util.UnZip(configPatchPath+"/"+identifier+ext, unZipPath)
   if err !=nil {
      logger.Debug("UnZip err:",err,"zipFile:",configPatchPath+"/"+identifier+ext)
   if !util.CreateDirectory(unPackPath) {
      return false
   }
   //2.更新系统
   var cmd *exec.Cmd
   updateCmd := fmt.Sprintf("setsid updatePatch.sh %s",unZipPath)
   cmd = exec.Command("/bin/sh","-c", updateCmd)
   logger.Debug("called sh updatePatch.sh,updateCmd:",updateCmd)
   if b, err := cmd.Output(); err != nil {
      logger.Debug("updatePatch err:",err,"result:",string(b))
   unPackFilePath := configPatchPath+"/"+identifier+ext
   err := util.UnTarGz(unPackFilePath, unPackPath)
   if err !=nil {
      logger.Debug("UnPack err:",err,"unPackFile:",unPackFilePath)
      return false
   }
   //如果通用脚本有更新,则更新通用脚本
   if util.Exists(unPackPath+"updatePatch.sh") {
      cpStr := fmt.Sprintf("cp %s /opt/vasystem/bin",unPackPath+"updatePatch.sh")
      b, err := ExecCmd(cpStr)
      if err != nil {
         logger.Debug("cp updatePatch.sh to bin err:",err,"result:",string(b))
         return false
      }
   }
   //判断更新包里是否有补丁脚本,如果有则执行,否则执行updatePatch.sh
   updateCmd := fmt.Sprintf("./updatePatch.sh %s %s %s &",unPackPath,unPackFilePath,configPatchPath+"/"+identifier)
   if util.Exists(unPackPath+"upgrade.sh") {
      updateCmd = fmt.Sprintf("%supgrade.sh %s %s %s &",unPackPath,unPackPath,unPackFilePath,configPatchPath+"/"+identifier)
   }
   //2.更新系统
   b,err := ExecCmd(updateCmd)
   if err != nil {
      logger.Debug("upgrade err:",err,"result:",string(b),"cmd:",updateCmd)
      return false
   } else {
      logger.Debug("upgrade result:",string(b),"cmd:",updateCmd)
   }
   return true
}
func (sv SysService) MergeChunks(chunkPath string, storePath string) bool {
func MergeChunks(chunkPath string, storePath string) bool {
   var cmd *exec.Cmd
   cmd = exec.Command("/bin/sh", "-c", fmt.Sprintf("./mergeAll.sh %s %s", chunkPath, storePath))
   logger.Debug("called sh mergeAll.sh ", chunkPath, storePath)
   if b, err := cmd.Output(); err != nil {
      logger.Debug("mergeChunks err:", err, "result:", string(b))
      return false
   } else {
      logger.Debug("mergeChunks result:",string(b),"cmd: ./mergeAll.sh ", chunkPath, storePath)
      return true
   }
}
func ExecCmd(cmdStr string) ([]byte,error) {
   var cmd *exec.Cmd
   cmd = exec.Command("/bin/sh", "-c",cmdStr)
   return cmd.Output()
}