zhangchuanxing 2 сар өмнө
parent
commit
67284c61dd

+ 9 - 0
controllers/article.go

@@ -260,6 +260,15 @@ func (this *ArticleController) Detail() {
 	if user.UserId == 0 {
 		hasPermission = 1
 	}
+	if detail.ArticleId < utils.SummaryArticleId {
+		if user.Mobile != "" {
+			chartUserTokenByMobile, _ := services.GetUserTokenByMobile(user.Mobile)
+			detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId) + "?token=" + chartUserTokenByMobile
+		} else {
+			detail.HttpUrl = utils.StrategyPlatform + strconv.Itoa(articleId)
+		}
+		detail.IsNeedJump = true
+	}
 
 	resp.HasPermission = hasPermission
 	resp.HaveResearch = haveResearch

+ 11 - 0
models/vmp.go

@@ -0,0 +1,11 @@
+package models
+
+type ChartUserTokenResult struct {
+	AccessToken string `json:"access_token"`
+}
+
+type ChartUserTokenResultApi struct {
+	Data ChartUserTokenResult `json:"data"`
+	Code int                  `json:"code"`
+	Msg  string               `json:"msg"`
+}

+ 57 - 0
services/vmp.go

@@ -0,0 +1,57 @@
+package services
+
+import (
+	"encoding/json"
+	"fmt"
+	"hongze/hongze_mfyx/models"
+	"hongze/hongze_mfyx/utils"
+	"io/ioutil"
+	nhttp "net/http"
+	"strings"
+	"time"
+)
+
+// 获取用户的Token
+func GetUserTokenByMobile(mobile string) (token string, err error) {
+	//缓存校验
+	cacheKey := fmt.Sprint("xygx_chart:chart_token:add:", "Mobile", mobile)
+	ttlTime := utils.Rc.GetRedisTTL(cacheKey)
+	if ttlTime > 0 {
+		token, _ = utils.Rc.RedisString(cacheKey)
+	}
+	if token == "" {
+		url := utils.ApiUrl + "auth/login"
+		method := "POST"
+		payload := strings.NewReader(`{
+    "phone_number":"` + mobile + `",
+    "password":"hz123456"}`)
+		client := &nhttp.Client{}
+		req, errReq := nhttp.NewRequest(method, url, payload)
+		if errReq != nil {
+			err = errReq
+			return
+		}
+		req.Header.Add("Content-Type", "application/json")
+		req.Header.Add("Cookie", "sessionid=naj5j5kl1jjynh7og1rsaxkl1vrsl829")
+		res, errReq := client.Do(req)
+		if errReq != nil {
+			err = errReq
+			return
+		}
+		defer res.Body.Close()
+		body, errReq := ioutil.ReadAll(res.Body)
+		if errReq != nil {
+			err = errReq
+			return
+		}
+		var chartResult models.ChartUserTokenResultApi
+		errReq = json.Unmarshal(body, &chartResult)
+		if errReq != nil {
+			err = errReq
+			return
+		}
+		token = chartResult.Data.AccessToken
+		utils.Rc.Put(cacheKey, token, time.Hour*24)
+	}
+	return
+}

+ 1 - 0
utils/constants.go

@@ -48,6 +48,7 @@ const (
 	DefaultHeadimgurl = "https://hzstatic.hzinsights.com/static/images/202401/20240103/u6Ykx23BMTnwtvYhZnJktgD54MLp.png"
 	REGISTER_PLATFORM = 5    // 来源 1小程序,2:网页 5:买方研选
 	IS_SHOW_WX_PAY    = true // 是否展示微信支付
+	ApiUrl            = "https://vmp.hzinsights.com/v2api/"
 )
 
 // 手机号,电子邮箱正则