question.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. package community
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/gin-gonic/gin"
  6. "hongze/hongze_yb/controller/response"
  7. "hongze/hongze_yb/global"
  8. "hongze/hongze_yb/logic/yb_community_question"
  9. "hongze/hongze_yb/models/request"
  10. "hongze/hongze_yb/models/tables/yb_resource"
  11. "strings"
  12. respond "hongze/hongze_yb/models/response"
  13. responseModel "hongze/hongze_yb/models/response"
  14. "hongze/hongze_yb/services"
  15. "hongze/hongze_yb/services/community"
  16. "hongze/hongze_yb/services/user"
  17. userService "hongze/hongze_yb/services/user"
  18. "hongze/hongze_yb/services/wx_app"
  19. "hongze/hongze_yb/utils"
  20. "io/ioutil"
  21. "os"
  22. "path"
  23. "strconv"
  24. "time"
  25. )
  26. // QuestionList 问答列表
  27. // @Tags 问答社区模块
  28. // @Description 获取问答列表
  29. // @Param page_index query int false "页码"
  30. // @Param page_size query int false "每页数量"
  31. // @Param only_mine query int false "只看我的"
  32. // @Param variety_tag_id query int false "标签ID"
  33. // @Param reply_status query int false "回复状态 0-全部 2-未回答 3-已回答,4-待回答(研究员)"
  34. // @Success 200 {object} []respond.CommunityQuestionItem
  35. // @failure 400 {string} string "获取失败"
  36. // @Router /question/list [get]
  37. func QuestionList(c *gin.Context) {
  38. var req request.QuestionListReq
  39. if err := c.Bind(&req); err != nil {
  40. response.Fail("参数有误", c)
  41. return
  42. }
  43. if req.PageIndex == 0 {
  44. req.PageIndex = 1
  45. }
  46. if req.PageSize == 0 {
  47. req.PageSize = utils.PageSize20
  48. }
  49. userinfo := user.GetInfoByClaims(c)
  50. list, err := community.GetQuestionList(req.PageIndex, req.PageSize, req.OnlyMine, req.VarietyTagId, req.ReplyStatus, req.GroupId, userinfo)
  51. if err != nil {
  52. response.FailMsg("获取失败", "QuestionList ErrMsg:"+err.Error(), c)
  53. return
  54. }
  55. // 点赞/吐槽数据
  56. err = yb_community_question.HandleLikeOrTeaseByCommunityQuestionItemList(userinfo.UserID, list)
  57. if err != nil {
  58. response.FailMsg("获取失败", "QuestionList ErrMsg:"+err.Error(), c)
  59. return
  60. }
  61. // 评论数据
  62. err = yb_community_question.HandleCommentByCommunityQuestionItemList(userinfo.UserID, list)
  63. if err != nil {
  64. response.FailMsg("获取失败", "QuestionList ErrMsg:"+err.Error(), c)
  65. return
  66. }
  67. response.OkData("获取成功", list, c)
  68. }
  69. // QuestionDetail 问答详情
  70. // @Tags 问答社区模块
  71. // @Description 获取问答详情
  72. // @Param question_id query int true "问答ID"
  73. // @Success 200 {object} respond.CommunityQuestionItem
  74. // @failure 400 {string} string "获取失败"
  75. // @Router /question/detail [get]
  76. func QuestionDetail(c *gin.Context) {
  77. var req request.QuestionDetailReq
  78. if err := c.Bind(&req); err != nil {
  79. response.Fail("参数有误", c)
  80. return
  81. }
  82. if req.QuestionId == 0 {
  83. response.Fail("参数有误", c)
  84. return
  85. }
  86. userinfo := user.GetInfoByClaims(c)
  87. item, errMsg, err := community.GetQuestionDetail(req.QuestionId, userinfo)
  88. if err != nil {
  89. response.FailMsg(errMsg, "QuestionDetail ErrMsg:"+err.Error(), c)
  90. return
  91. }
  92. response.OkData("获取成功", item, c)
  93. }
  94. // QuestionAsk 发布提问
  95. // @Tags 问答社区模块
  96. // @Description 发布提问
  97. // @Param question_content query string true "问题内容"
  98. // @Success 200 {string} string "操作成功"
  99. // @failure 400 {string} string "操作失败"
  100. // @Router /question/ask [post]
  101. func QuestionAsk(c *gin.Context) {
  102. var req request.QuestionAskReq
  103. if err := c.ShouldBind(&req); err != nil {
  104. response.Fail("参数有误", c)
  105. return
  106. }
  107. if req.QuestionContent == "" {
  108. response.Fail("内容不可为空", c)
  109. return
  110. }
  111. contentRune := []rune(req.QuestionContent)
  112. if len(contentRune) > 50 {
  113. response.Fail("内容不可超过50个字符", c)
  114. return
  115. }
  116. // 敏感词校验, 只有小程序的用户才能走敏感词过滤接口
  117. userinfo := user.GetInfoByClaims(c)
  118. if userinfo.RecordInfo.OpenID != "" && userinfo.RecordInfo.CreatePlatform == 6 {
  119. checkResult, e := wx_app.MsgSecCheck(userinfo.RecordInfo.OpenID, req.QuestionContent)
  120. if e == nil {
  121. if checkResult.Result != nil && checkResult.Result.Suggest != "pass" {
  122. errMsg := "含有违禁词, 不允许发布: " + checkResult.Result.Suggest + ", 命中标签: " + strconv.Itoa(checkResult.Result.Label)
  123. response.FailMsg("含有违禁词, 不允许发布", errMsg, c)
  124. return
  125. }
  126. }
  127. }
  128. if err := community.CreateQuestion(int(userinfo.UserID), userinfo.Mobile, userinfo.RealName, req.QuestionContent); err != nil {
  129. response.FailMsg("提交失败", "QuestionAsk ErrMsg:"+err.Error(), c)
  130. return
  131. }
  132. response.Ok("操作成功", c)
  133. }
  134. // QuestionReply 发布回复
  135. // @Tags 问答社区模块
  136. // @Description 发布回复
  137. // @Param question_id query int true "问答ID"
  138. // @Param audio_list query object true "音频列表"
  139. // @Success 200 {string} string "操作成功"
  140. // @failure 400 {string} string "操作失败"
  141. // @Router /question/reply [post]
  142. func QuestionReply(c *gin.Context) {
  143. var req request.QuestionReplyReq
  144. if err := c.ShouldBind(&req); err != nil {
  145. response.Fail("参数有误", c)
  146. return
  147. }
  148. if req.QuestionId == 0 {
  149. response.Fail("参数有误", c)
  150. return
  151. }
  152. if len(req.AudioList) == 0 {
  153. response.Fail("音频不可为空", c)
  154. return
  155. }
  156. for i := range req.AudioList {
  157. if req.AudioList[i].AudioUrl == "" || req.AudioList[i].AudioPlaySeconds == "" || req.AudioList[i].AudioSize == "" {
  158. response.Fail("音频信息有误, 请重新上传", c)
  159. return
  160. }
  161. if !strings.Contains(req.AudioList[i].AudioUrl, utils.ALIYUN_OSS_HOST) {
  162. response.Fail("音频地址有误, 请重新上传", c)
  163. return
  164. }
  165. }
  166. userinfo := user.GetInfoByClaims(c)
  167. msg, err := community.ReplyUserQuestion(int(userinfo.UserID), req.QuestionId, req.AudioList)
  168. if err != nil {
  169. response.FailMsg(msg, "QuestionReply ErrMsg:"+err.Error(), c)
  170. return
  171. }
  172. response.Ok("操作成功", c)
  173. }
  174. // QuestionReplyRead 已读回复
  175. // @Tags 问答社区模块
  176. // @Description 已读回复
  177. // @Param question_ids query string true "问答IDs"
  178. // @Success 200 {string} string "操作成功"
  179. // @failure 400 {string} string "操作失败"
  180. // @Router /question/reply/read [post]
  181. func QuestionReplyRead(c *gin.Context) {
  182. var req request.QuestionReadReq
  183. if err := c.ShouldBind(&req); err != nil {
  184. response.Fail("参数有误", c)
  185. return
  186. }
  187. if req.QuestionIds == "" {
  188. response.Fail("参数有误", c)
  189. return
  190. }
  191. userinfo := user.GetInfoByClaims(c)
  192. if err := community.ReadQuestionReply(req.QuestionIds, userinfo); err != nil {
  193. response.FailMsg("操作失败", "QuestionReplyRead ErrMsg:"+err.Error(), c)
  194. return
  195. }
  196. response.Ok("操作成功", c)
  197. }
  198. // QuestionListTotal 问答列表数量统计
  199. // @Tags 问答社区模块
  200. // @Description 问答列表数量统计
  201. // @Success 200 {object} respond.CommunityQuestionListTotal
  202. // @failure 400 {string} string "获取失败"
  203. // @Router /question/list/total [get]
  204. func QuestionListTotal(c *gin.Context) {
  205. userinfo := user.GetInfoByClaims(c)
  206. resp, err := community.GetQuestionListTotal(userinfo)
  207. if err != nil {
  208. response.FailMsg("获取失败", "QuestionReplyTotal ErrMsg:"+err.Error(), c)
  209. return
  210. }
  211. response.OkData("获取成功", resp, c)
  212. }
  213. // QuestionUploadAudio 上传回复音频
  214. // @Tags 问答社区模块
  215. // @Description 上传回复音频
  216. // @Param file query string true "音频文件"
  217. // @Success 200 {string} string "上传成功"
  218. // @failure 400 {string} string "上传失败"
  219. // @Router /question/reply/upload_audio [post]
  220. func QuestionUploadAudio(c *gin.Context) {
  221. file, err := c.FormFile("file")
  222. if err != nil {
  223. response.FailMsg("获取资源失败", "获取资源失败, Err:"+err.Error(), c)
  224. return
  225. }
  226. ext := path.Ext(file.Filename)
  227. if ext != ".mp3" {
  228. response.Fail("暂仅支持mp3格式", c)
  229. return
  230. }
  231. dateDir := time.Now().Format("20060102")
  232. localDir := global.CONFIG.Serve.StaticDir + "hongze/" + dateDir
  233. if err := os.MkdirAll(localDir, 0766); err != nil {
  234. response.FailMsg("存储目录创建失败", "QuestionUploadAudio 存储目录创建失败, Err:"+err.Error(), c)
  235. return
  236. }
  237. randStr := utils.GetRandStringNoSpecialChar(28)
  238. filtName := randStr + ext
  239. fpath := localDir + "/" + filtName
  240. defer func() {
  241. _ = os.Remove(fpath)
  242. }()
  243. // 生成文件至指定目录
  244. if err := c.SaveUploadedFile(file, fpath); err != nil {
  245. response.FailMsg("文件生成失败", "QuestionUploadAudio 文件生成失败, Err:"+err.Error(), c)
  246. return
  247. }
  248. // 获取音频文件时长
  249. fByte, err := ioutil.ReadFile(fpath)
  250. if err != nil {
  251. response.FailMsg("读取本地文件失败", "QuestionUploadAudio 读取本地文件失败", c)
  252. return
  253. }
  254. if len(fByte) <= 0 {
  255. response.FailMsg("文件大小有误", "QuestionUploadAudio 文件大小有误", c)
  256. return
  257. }
  258. seconds, err := services.GetMP3PlayDuration(fByte)
  259. if err != nil {
  260. response.FailMsg("读取文件时长失败", "QuestionUploadAudio 读取文件时长失败", c)
  261. return
  262. }
  263. // 音频大小MB
  264. fi, err := os.Stat(fpath)
  265. if err != nil {
  266. response.FailMsg("读取文件大小失败", "QuestionUploadAudio 读取文件大小失败", c)
  267. return
  268. }
  269. mb := utils.Bit2MB(fi.Size(), 2)
  270. // 上传文件至阿里云
  271. ossDir := "yb_wx/community_question_audio/"
  272. resourceUrl, err := services.UploadAliyunToDir(filtName, fpath, ossDir)
  273. if err != nil {
  274. response.FailMsg("文件上传失败", "QuestionUploadAudio 文件上传失败, Err:"+err.Error(), c)
  275. return
  276. }
  277. resp := &respond.CommunityQuestionAudioUpload{
  278. AudioURL: resourceUrl,
  279. AudioPlaySeconds: fmt.Sprint(seconds),
  280. AudioSize: fmt.Sprint(mb),
  281. }
  282. // 记录文件
  283. userInfo := user.GetInfoByClaims(c)
  284. go func() {
  285. extendData := struct {
  286. FileName string
  287. AudioURL string
  288. AudioPlaySeconds string
  289. AudioSize string
  290. UserId int
  291. }{
  292. file.Filename,
  293. resourceUrl,
  294. fmt.Sprint(seconds),
  295. fmt.Sprint(mb),
  296. int(userInfo.UserID),
  297. }
  298. dataByte, e := json.Marshal(extendData)
  299. if e != nil {
  300. return
  301. }
  302. re := new(yb_resource.YbResource)
  303. re.ResourceUrl = resourceUrl
  304. re.ResourceType = yb_resource.ResourceTypeAudio
  305. re.ExtendData = string(dataByte)
  306. re.CreateTime = time.Now().Local()
  307. if e = re.Create(); e != nil {
  308. return
  309. }
  310. }()
  311. response.OkData("上传成功", resp, c)
  312. }
  313. // QuestionUnread 我的问答未读数
  314. // @Tags 问答社区模块
  315. // @Description 我的问答未读数
  316. // @Success 200 {int} int "获取成功"
  317. // @failure 400 {string} string "获取失败"
  318. // @Router /question/unread [get]
  319. func QuestionUnread(c *gin.Context) {
  320. userinfo := user.GetInfoByClaims(c)
  321. total, err := community.GetMyQuestionUnread(userinfo)
  322. if err != nil {
  323. fmt.Println(err.Error())
  324. response.FailMsg("获取失败", "QuestionUnread ErrMsg:"+err.Error(), c)
  325. return
  326. }
  327. response.OkData("获取成功", total, c)
  328. }
  329. // ResearchGroupList 研究方向分组列表
  330. // @Tags 问答社区模块
  331. // @Description 研究方向分组列表
  332. // @Success 200 {int} int "获取成功"
  333. // @failure 400 {string} string "获取失败"
  334. // @Router /question/research_group [get]
  335. func ResearchGroupList(c *gin.Context) {
  336. list, err := community.GetResearchGroupTree()
  337. if err != nil {
  338. fmt.Println(err.Error())
  339. response.FailMsg("获取失败", "ResearchGroupList ErrMsg:"+err.Error(), c)
  340. return
  341. }
  342. response.OkData("获取成功", list, c)
  343. }
  344. // AddAudioLog 添加用户点击音频日志
  345. // @Tags 问答社区模块
  346. // @Description 添加用户点击音频日志
  347. // @Param community_question_audio_id query int true "音频ID"
  348. // @Param source_agent query int true "操作来源,1:小程序,2:小程序 pc 3:弘则研究公众号,4:web pc"
  349. // @Success 200 {string} string "操作成功"
  350. // @failure 400 {string} string "操作失败"
  351. // @Router /AddAudioLog [post]
  352. func AddAudioLog(c *gin.Context) {
  353. var req request.CommunityAudioListenLogReq
  354. if err := c.ShouldBind(&req); err != nil {
  355. response.Fail("参数有误", c)
  356. return
  357. }
  358. if req.CommunityQuestionAudioID == 0 {
  359. response.Fail("请输入音频ID", c)
  360. return
  361. }
  362. if req.SourceAgent == 0 {
  363. response.Fail("请输入操作来源", c)
  364. return
  365. }
  366. userinfo := user.GetInfoByClaims(c)
  367. newId, err := community.AddAudioListenLog(userinfo, req.CommunityQuestionAudioID, req.SourceAgent)
  368. if err != nil {
  369. response.Fail("操作失败: "+err.Error(), c)
  370. return
  371. }
  372. response.OkData("操作成功", newId, c)
  373. }
  374. // SetLikeOrTease 问答点赞/吐槽设置
  375. func SetLikeOrTease(c *gin.Context) {
  376. var req request.ReqCommunityQuestionLikeTease
  377. if c.ShouldBind(&req) != nil {
  378. response.Fail("参数异常", c)
  379. return
  380. }
  381. userinfo := userService.GetInfoByClaims(c)
  382. // 不传来源默认为问答社区
  383. if req.Source == 0 {
  384. req.Source = 1
  385. }
  386. communityQuestionLikeTease, likeNum, teaseNum, err, errMsg := yb_community_question.SetLikeOrTease(userinfo.UserID, req.CommunityQuestionId, req.OpType, req.Enable, req.SourceAgent, req.Source)
  387. if err != nil {
  388. response.FailMsg(errMsg, err.Error(), c)
  389. return
  390. }
  391. response.OkData("操作成功", responseModel.RespCommunityQuestionLikeTease{
  392. LikeTotal: likeNum,
  393. TeaseTotal: teaseNum,
  394. OpType: communityQuestionLikeTease.OpType,
  395. Enabled: communityQuestionLikeTease.Enabled,
  396. }, c)
  397. return
  398. }