Przeglądaj źródła

fix: 报告短链

hsun 2 tygodni temu
rodzic
commit
18956a7450
3 zmienionych plików z 8 dodań i 4 usunięć
  1. 7 2
      controllers/report_v2.go
  2. 0 1
      models/report.go
  3. 1 1
      services/report_v2.go

+ 7 - 2
controllers/report_v2.go

@@ -1670,9 +1670,10 @@ func (this *ReportController) ShareGenerate() {
 		br.ErrMsg = "参数解析失败, Err: " + e.Error()
 		return
 	}
+	var title string
 	reportItem, _ := models.GetReportByReportId(req.ReportId)
 	if reportItem != nil && reportItem.Title != "" {
-		req.Title = reportItem.Title
+		title = reportItem.Title
 	}
 
 	link, err := services.GetReportShareUrlToken(req, this.SysUser.AdminId)
@@ -1683,7 +1684,7 @@ func (this *ReportController) ShareGenerate() {
 	}
 
 	resp := new(models.ReportShartUrlResp)
-	resp.UrlToken = link
+	resp.UrlToken = fmt.Sprint(link, " ", title)
 
 	br.Ret = 200
 	br.Success = true
@@ -1705,6 +1706,10 @@ func (this *ReportCommonController) ShareTransform() {
 	}()
 
 	token := this.GetString("Token")
+	tokenArr := strings.Split(token, " ")
+	if len(tokenArr) > 0 {
+		token = tokenArr[0]
+	}
 
 	link, msg, err := services.TransfromToOriginUrl(token)
 	if err != nil {

+ 0 - 1
models/report.go

@@ -1557,7 +1557,6 @@ func FindReportListByCondition(condition string, pars []interface{}) (items []*R
 type ReportShartUrlReq struct {
 	Url      string `description:"分享链接"`
 	ReportId int    `description:"报告ID"`
-	Title    string `description:"报告标题"`
 }
 
 type ReportShartUrlResp struct {

+ 1 - 1
services/report_v2.go

@@ -1521,7 +1521,7 @@ func GetReportShareUrlToken(req models.ReportShartUrlReq, adminId int) (linkToke
 		hashUrl := utils.MurmurHash64([]byte(linkToken))
 		linkToken = utils.ConvertNumToBase62(hashUrl)
 		// 拼上报告标题
-		linkToken = fmt.Sprintf("%s %s", linkToken, req.Title)
+		//linkToken = fmt.Sprintf("%s %s", linkToken, req.Title)
 
 		tokenKey = fmt.Sprint(utils.CACHE_REPORT_SHARE_ORIGIN_Url, utils.MD5(linkToken))
 		ok = utils.Rc.IsExist(tokenKey)