update.go 1.9 KB

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