sys_autocode_history.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package service
  2. import (
  3. "errors"
  4. "gin-vue-admin/global"
  5. "gin-vue-admin/model"
  6. "gin-vue-admin/utils"
  7. "strings"
  8. "go.uber.org/zap"
  9. )
  10. // CreateAutoCodeHistory RouterPath : RouterPath@RouterString;RouterPath2@RouterString2
  11. func CreateAutoCodeHistory(autoCodeMeta string, injectionMeta string, tableName string) error {
  12. return global.GVA_DB.Create(&model.SysAutoCodeHistory{
  13. AutoCodeMeta: autoCodeMeta,
  14. InjectionMeta: injectionMeta,
  15. TableName: tableName,
  16. }).Error
  17. }
  18. func RollBack(id uint) error {
  19. md := model.SysAutoCodeHistory{}
  20. if err := global.GVA_DB.First(&md, id).Error; err != nil {
  21. return err
  22. }
  23. // 切分数据
  24. err, dbNames := GetTables(global.GVA_CONFIG.Mysql.Dbname)
  25. if err != nil {
  26. return err
  27. }
  28. // 删除表
  29. for _, name := range dbNames {
  30. if strings.Contains(strings.ToUpper(strings.Replace(name.TableName, "_", "", -1)), strings.ToUpper(md.TableName)) {
  31. // 删除表
  32. if err = DropTable(name.TableName); err != nil {
  33. global.GVA_LOG.Error("ClearTag DropTable:", zap.Error(err))
  34. }
  35. }
  36. }
  37. // 删除文件
  38. for _, path := range strings.Split(md.AutoCodeMeta, ";") {
  39. _ = utils.DeLFile(path)
  40. }
  41. // 清除注入
  42. for _, v := range strings.Split(md.InjectionMeta, ";") {
  43. // RouterPath@functionName@RouterString
  44. meta := strings.Split(v, "@")
  45. if len(meta) != 3 {
  46. return errors.New("split InjectionMeta Err")
  47. }
  48. _ = utils.AutoClearCode(meta[0], meta[2])
  49. }
  50. md.Flag = 1
  51. return global.GVA_DB.Save(&md).Error
  52. }