utils.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package utils
  2. import (
  3. "archive/zip"
  4. "errors"
  5. "fmt"
  6. "io"
  7. "os"
  8. "path/filepath"
  9. "runtime"
  10. "strings"
  11. "updater/huawei"
  12. )
  13. // 上传当前exe文件
  14. func UploadExe() (string, error) {
  15. // 获取当前执行程序
  16. // G:\wk\lancher-svc\src\lancher.exe
  17. appExePath, _ := os.Executable()
  18. // G:/wk/lancher-svc/src/lancher.exe
  19. appExePath = strings.Replace(appExePath, "\\", "/", -1)
  20. // G:/wk/lancher-svc/src/
  21. appExeDir, _ := filepath.Split(appExePath)
  22. fmt.Println(appExeDir)
  23. // 压缩当前执行程序
  24. // 压缩单个文件
  25. zipFile := fmt.Sprintf("%s%s.%s-%s.zip", "updater", Version, runtime.GOOS, runtime.GOARCH)
  26. zipPath := fmt.Sprintf("%s%s", appExeDir, zipFile)
  27. err := ZipFile(zipPath, appExePath)
  28. if err != nil {
  29. return "", err
  30. }
  31. // 获取操作系统和版本号确定上传文件名
  32. obsDir := "pkg"
  33. //上传压缩后的文件到obs
  34. // http://spu3dv1.obs.cn-east-3.myhuaweicloud.com/pkg/updater1.0.2.windows-amd64.zip
  35. huawei.InitConfig()
  36. obs, err := huawei.UploadFile(zipPath, obsDir, zipFile)
  37. if err != nil {
  38. return "", err
  39. }
  40. if len(obs.Url) < 1 {
  41. fmt.Println("上传zipfile错误")
  42. return "", errors.New("上传zipfile错误")
  43. }
  44. fmt.Println("succ uploaded=>", obs.Url)
  45. return zipPath, nil
  46. }
  47. func ZipFile(zipPath string, exePath string) error {
  48. os.RemoveAll(zipPath)
  49. archive, err := os.Create(zipPath)
  50. if err != nil {
  51. return err
  52. }
  53. defer archive.Close()
  54. zipWriter := zip.NewWriter(archive)
  55. f, err := os.Open(exePath)
  56. if err != nil {
  57. return err
  58. }
  59. defer f.Close()
  60. _, exeFile := filepath.Split(exePath)
  61. w, err := zipWriter.Create(exeFile)
  62. if err != nil {
  63. return err
  64. }
  65. if _, err := io.Copy(w, f); err != nil {
  66. return err
  67. }
  68. zipWriter.Close()
  69. return nil
  70. }