update.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /**
  2. * @Author: zou.yingbin
  3. * @Create : 2021/10/20 15:20
  4. * @Modify : 2021/10/20 15:20
  5. * @Note : 生成用于内网升级的.sh脚本
  6. */
  7. package other
  8. import (
  9. _ "embed"
  10. "github.com/gin-gonic/gin"
  11. "mtp2_if/logger"
  12. "net/http"
  13. "os"
  14. "os/exec"
  15. "path/filepath"
  16. "regexp"
  17. "runtime"
  18. "strings"
  19. )
  20. //go:embed upmtpgo.sh
  21. var strShell string
  22. var IsUpdateing = false
  23. // MakeUpdateScript 生成脚本
  24. func MakeUpdateScript(c *gin.Context) {
  25. if IsUpdateing {
  26. c.String(http.StatusOK, "正在升级中...")
  27. return
  28. }
  29. if runtime.GOOS == "windows" {
  30. c.String(http.StatusOK, "windows不支持, 仅支持linux下执行")
  31. return
  32. }
  33. logger.GetLogger().Debug("*********************auto update*******************************")
  34. IsUpdateing = true
  35. defer func() {
  36. IsUpdateing = false
  37. }()
  38. filename := c.DefaultQuery("filename", "")
  39. if createsh() {
  40. c.String(http.StatusOK, "正在执行升级, 升级会保留原有的config.xml和cfg.json,且重启服务。稍后请在日志页面查看版本信息, 请勿刷新本页面。")
  41. rx := regexp.MustCompile(`mtp2_queryservice_r[\d_]*\.zip`)
  42. names := rx.FindStringSubmatch(filename)
  43. // 正则表达式检查文件名是否符合规范
  44. if len(names) > 0 && names[0] == filename {
  45. _ = exec.Command("sh", "./update.sh", filename).Run()
  46. } else {
  47. _ = exec.Command("sh", "./update.sh").Run()
  48. }
  49. } else {
  50. c.String(http.StatusBadRequest, "创建脚本失败, 可能是权限不足")
  51. }
  52. }
  53. // 生成update.sh文件
  54. func createsh() bool {
  55. dir := ""
  56. if str, err := filepath.Abs(filepath.Dir(os.Args[0])); err == nil {
  57. dir = strings.Replace(str, "\\", "/", -1)
  58. } else {
  59. return false
  60. }
  61. // 创建文件
  62. if f, err := os.OpenFile(dir+"/update.sh", os.O_RDWR|os.O_CREATE, 0666); err == nil {
  63. _, err = f.Write([]byte(strShell))
  64. f.Close()
  65. } else {
  66. return false
  67. }
  68. return true
  69. }