|
@@ -8,13 +8,12 @@ import (
|
|
"hongze/hongze_open_api/models/tables/user_view_statistics"
|
|
"hongze/hongze_open_api/models/tables/user_view_statistics"
|
|
"hongze/hongze_open_api/models/tables/wx_user"
|
|
"hongze/hongze_open_api/models/tables/wx_user"
|
|
"hongze/hongze_open_api/services/quanshi"
|
|
"hongze/hongze_open_api/services/quanshi"
|
|
- "strconv"
|
|
|
|
"strings"
|
|
"strings"
|
|
"time"
|
|
"time"
|
|
)
|
|
)
|
|
|
|
|
|
// SyncUser 用户同步
|
|
// SyncUser 用户同步
|
|
-func SyncUser(qsEventId int) {
|
|
|
|
|
|
+func SyncUser(qsEventId int) (err error) {
|
|
qsEventInfo, err := qs_event.GetQsEventByQsEventId(qsEventId)
|
|
qsEventInfo, err := qs_event.GetQsEventByQsEventId(qsEventId)
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
@@ -29,19 +28,11 @@ func SyncUser(qsEventId int) {
|
|
fmt.Println(err)
|
|
fmt.Println(err)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- fmt.Println(qsData)
|
|
|
|
|
|
|
|
- //获取全时录制的流媒体信息
|
|
|
|
- qsVideoData, err := quanshi.QsEventReportQueryVideo(int64(qsEventId))
|
|
|
|
- if err != nil {
|
|
|
|
- fmt.Println(err)
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- fmt.Println(qsData)
|
|
|
|
-
|
|
|
|
- if qsData.Summary != nil && len(qsData.Summary) > 0 {
|
|
|
|
|
|
+ companyProductMap := make(map[string]*company_product.CompanyProduct)
|
|
|
|
+ people := len(qsData.Summary) //参与人数
|
|
|
|
+ if qsData.Summary != nil && people > 0 {
|
|
for _, v := range qsData.Summary {
|
|
for _, v := range qsData.Summary {
|
|
- fmt.Println(v)
|
|
|
|
mobile := v.Mobile
|
|
mobile := v.Mobile
|
|
trimMobile := mobile
|
|
trimMobile := mobile
|
|
countryCode := "86"
|
|
countryCode := "86"
|
|
@@ -54,11 +45,18 @@ func SyncUser(qsEventId int) {
|
|
trimMobile = trimMobileSlice[1]
|
|
trimMobile = trimMobileSlice[1]
|
|
countryCode = strings.Replace(trimMobileSlice[0], "+", "", -1)
|
|
countryCode = strings.Replace(trimMobileSlice[0], "+", "", -1)
|
|
}
|
|
}
|
|
- fmt.Println(trimMobile)
|
|
|
|
- fmt.Println(countryCode)
|
|
|
|
wxUserInfo, _ = wx_user.GetWxUserByMobileCountryCode(trimMobile, countryCode)
|
|
wxUserInfo, _ = wx_user.GetWxUserByMobileCountryCode(trimMobile, countryCode)
|
|
if wxUserInfo != nil {
|
|
if wxUserInfo != nil {
|
|
- companyProductInfo, _ = company_product.GetCompanyProductByCompanyIdAndProductId(wxUserInfo.CompanyId, 1)
|
|
|
|
|
|
+ //获取客户产品信息
|
|
|
|
+ key := fmt.Sprint(wxUserInfo.CompanyId, "_", 1)
|
|
|
|
+ if tmpCompanyProductInfo, ok := companyProductMap[key]; ok {
|
|
|
|
+ companyProductInfo = tmpCompanyProductInfo
|
|
|
|
+ } else {
|
|
|
|
+ companyProductInfo, _ = company_product.GetCompanyProductByCompanyIdAndProductId(wxUserInfo.CompanyId, 1)
|
|
|
|
+ if companyProductInfo != nil {
|
|
|
|
+ companyProductMap[key] = companyProductInfo
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -91,6 +89,8 @@ func SyncUser(qsEventId int) {
|
|
qsEventUserInfo.LastViewTime = userViewStatisticsInfo.LastViewTime
|
|
qsEventUserInfo.LastViewTime = userViewStatisticsInfo.LastViewTime
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ qsEventUserInfo.UserId = int(wxUserInfo.UserId)
|
|
|
|
+ qsEventUserInfo.Name = wxUserInfo.RealName
|
|
qsEventUserInfo.CompanyId = companyProductInfo.CompanyId
|
|
qsEventUserInfo.CompanyId = companyProductInfo.CompanyId
|
|
qsEventUserInfo.ProductId = companyProductInfo.ProductId
|
|
qsEventUserInfo.ProductId = companyProductInfo.ProductId
|
|
qsEventUserInfo.CompanyName = companyProductInfo.ProductName
|
|
qsEventUserInfo.CompanyName = companyProductInfo.ProductName
|
|
@@ -104,14 +104,20 @@ func SyncUser(qsEventId int) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- videoUrl := ``
|
|
|
|
- for k, v := range qsVideoData.Records {
|
|
|
|
- if k == strconv.Itoa(qsEventId) {
|
|
|
|
- videoUrl = v.VideoURL
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- qsEventInfo.VideoUrl = videoUrl
|
|
|
|
qsEventInfo.IsSync = 1
|
|
qsEventInfo.IsSync = 1
|
|
qsEventInfo.QsStatus = 2
|
|
qsEventInfo.QsStatus = 2
|
|
- err = qsEventInfo.Update([]string{"VideoUrl", "IsSync"})
|
|
|
|
|
|
+ qsEventInfo.People = people
|
|
|
|
+ err = qsEventInfo.Update([]string{"IsSync", "QsStatus", "People"})
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// SyncVideo 录音同步
|
|
|
|
+func SyncVideo(qsEventId int, videoUrl string) (err error) {
|
|
|
|
+ qsEventInfo, err := qs_event.GetQsEventByQsEventId(qsEventId)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ qsEventInfo.VideoUrl = videoUrl
|
|
|
|
+ err = qsEventInfo.Update([]string{"VideoUrl"})
|
|
|
|
+ return
|
|
}
|
|
}
|