yanxuan_special.go 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. "hongze/hongze_cygx/models"
  6. "hongze/hongze_cygx/services"
  7. "hongze/hongze_cygx/utils"
  8. "strings"
  9. "time"
  10. )
  11. type YanxuanSpecialController struct {
  12. BaseAuthController
  13. }
  14. // @Title 专栏列表
  15. // @Description 专栏列表
  16. // @Param UserId query int true "用户ID"
  17. // @Param PageSize query int true "每页数据条数"
  18. // @Param CurrentIndex query int true "当前页页码,从1开始"
  19. // @Success 200 {object} models.SpecialListResp
  20. // @router /list [get]
  21. func (this *YanxuanSpecialController) List() {
  22. br := new(models.BaseResponse).Init()
  23. defer func() {
  24. this.Data["json"] = br
  25. this.ServeJSON()
  26. }()
  27. sysUser := this.User
  28. if sysUser == nil {
  29. br.Msg = "请登录"
  30. br.ErrMsg = "请登录,SysUser Is Empty"
  31. br.Ret = 408
  32. return
  33. }
  34. userId, _ := this.GetInt("UserId", 0)
  35. pageSize, _ := this.GetInt("PageSize")
  36. currentIndex, _ := this.GetInt("CurrentIndex")
  37. var startSize int
  38. if pageSize <= 0 {
  39. pageSize = utils.PageSize20
  40. }
  41. if currentIndex <= 0 {
  42. currentIndex = 1
  43. }
  44. startSize = utils.StartIndex(currentIndex, pageSize)
  45. resp := new(models.SpecialListResp)
  46. var condition string
  47. var pars []interface{}
  48. if userId > 0 {
  49. condition += ` AND a.user_id = ? `
  50. pars = append(pars, userId)
  51. }
  52. condition += ` AND a.status = 3 `
  53. total, err := models.GetCygxYanxuanSpecialCount(condition, pars)
  54. if err != nil {
  55. br.Msg = "获取失败"
  56. br.ErrMsg = "获取失败, Err:" + err.Error()
  57. return
  58. }
  59. list, err := models.GetYanxuanSpecialList(sysUser.UserId, condition, pars, startSize, pageSize)
  60. if err != nil {
  61. br.Msg = "获取失败"
  62. br.ErrMsg = "获取失败, Err:" + err.Error()
  63. return
  64. }
  65. for _, v := range list {
  66. hasImg, err := utils.ArticleHasImgUrl(v.Content)
  67. if err != nil {
  68. return
  69. }
  70. if hasImg {
  71. v.ContentHasImg = 1
  72. }
  73. v.Content = utils.ArticleRemoveImgUrl(v.Content)
  74. //v.Content, err = utils.ExtractText(v.Content)
  75. //if err != nil {
  76. // return
  77. //}
  78. //v.Content, _ = services.GetReportContentTextSubNew(v.Content)
  79. v.Content = services.AnnotationHtml(v.Content)
  80. if v.DocUrl != "" {
  81. var docs []models.Doc
  82. err := json.Unmarshal([]byte(v.DocUrl), &docs)
  83. if err != nil {
  84. br.Msg = "参数解析异常!"
  85. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  86. return
  87. }
  88. v.Docs = docs
  89. }
  90. if v.MyCollectNum > 0 {
  91. v.IsCollect = 1
  92. }
  93. if v.CompanyTags != "" {
  94. v.Tags += v.CompanyTags
  95. }
  96. if v.IndustryTags != "" {
  97. if v.Tags != "" {
  98. v.Tags += ","
  99. }
  100. v.Tags += v.IndustryTags
  101. }
  102. }
  103. isAuthor, isImproveInformation := services.GetYanxuanSpecialAuthorInfo(sysUser) //用户是否没开通研选专栏以及,专栏信息是否完善
  104. resp.IsAuthor = isAuthor
  105. resp.IsImproveInformation = isImproveInformation
  106. resp.List = list
  107. page := paging.GetPaging(currentIndex, pageSize, total)
  108. resp.Paging = page
  109. br.Data = resp
  110. br.Ret = 200
  111. br.Success = true
  112. br.Msg = "获取成功"
  113. }
  114. // @Title 专栏详情
  115. // @Description 专栏详情
  116. // @Param IsSendWx query int false "是否是通过微信模版进来的 1是,其它否"
  117. // @Param Id query int true "详情ID"
  118. // @Success 200 {object} models.AddEnglishReportResp
  119. // @router /detail [get]
  120. func (this *YanxuanSpecialController) Detail() {
  121. br := new(models.BaseResponse).Init()
  122. defer func() {
  123. this.Data["json"] = br
  124. this.ServeJSON()
  125. }()
  126. sysUser := this.User
  127. if sysUser == nil {
  128. br.Msg = "请登录"
  129. br.ErrMsg = "请登录,SysUser Is Empty"
  130. br.Ret = 408
  131. return
  132. }
  133. specialId, _ := this.GetInt("Id", 0)
  134. isSendWx, _ := this.GetInt("IsSendWx", 0)
  135. if specialId <= 0 {
  136. br.Msg = "参数错误"
  137. br.ErrMsg = "参数错误"
  138. return
  139. }
  140. item, tmpErr := models.GetYanxuanSpecialById(specialId, sysUser.UserId)
  141. if tmpErr != nil {
  142. br.Msg = "获取失败"
  143. br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
  144. return
  145. }
  146. if item.MyCollectNum > 0 {
  147. item.IsCollect = 1
  148. }
  149. var resp models.CygxYanxuanSpecialResp
  150. resp.HasPermission = 1
  151. resp.CygxYanxuanSpecialItem = *item
  152. if item.DocUrl != "" {
  153. var docs []models.Doc
  154. err := json.Unmarshal([]byte(item.DocUrl), &docs)
  155. if err != nil {
  156. br.Msg = "参数解析异常!"
  157. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  158. return
  159. }
  160. resp.Docs = docs
  161. }
  162. if item.CompanyTags != "" {
  163. resp.Tags += item.CompanyTags
  164. resp.CompanyTags = append(resp.CompanyTags, item.CompanyTags)
  165. }
  166. if item.IndustryTags != "" {
  167. if resp.Tags != "" {
  168. resp.Tags += ","
  169. }
  170. resp.Tags += item.IndustryTags
  171. resp.IndustryTags = append(resp.IndustryTags, item.IndustryTags)
  172. }
  173. if isSendWx == 1 {
  174. if item.UserId == sysUser.UserId {
  175. resp.IsShowExamine = true
  176. }
  177. resp.ExamineStatus = item.Status
  178. }
  179. resp.ExamineStatus = item.Status
  180. //如果状态未审核通过,而且查看的不是本人,不是审核人员,就无法查看详情
  181. var configCode string
  182. configCode = utils.TPL_MSG_WANG_FANG_WANG_YANG
  183. cnf, err := models.GetConfigByCode(configCode)
  184. if err != nil {
  185. br.Msg = "获取失败"
  186. br.ErrMsg = "获取失败, Err:" + err.Error()
  187. return
  188. }
  189. if item.UserId != sysUser.UserId && item.Status != 3 && !strings.Contains(cnf.ConfigValue, sysUser.Mobile) {
  190. resp.CygxYanxuanSpecialItem = *new(models.CygxYanxuanSpecialItem) // 如果内容不可见,就把内容置空
  191. resp.HasPermission = 2
  192. }
  193. go services.AddSpecialRecord(this.User, specialId)
  194. br.Data = resp
  195. br.Ret = 200
  196. br.Success = true
  197. br.Msg = "获取成功"
  198. }
  199. // @Title 新增保存专栏作者详情
  200. // @Description 新增保存专栏作者详情
  201. // @Param request body help_doc.AddHelpDocReq true "type json string"
  202. // @Success 200 {object} models.AddEnglishReportResp
  203. // @router /author/save [post]
  204. func (this *YanxuanSpecialController) AuthorSave() {
  205. br := new(models.BaseResponse).Init()
  206. defer func() {
  207. this.Data["json"] = br
  208. this.ServeJSON()
  209. }()
  210. sysUser := this.User
  211. if sysUser == nil {
  212. br.Msg = "请登录"
  213. br.ErrMsg = "请登录,SysUser Is Empty"
  214. br.Ret = 408
  215. return
  216. }
  217. var req models.SaveCygxYanxuanSpecialAuthorReq
  218. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  219. if err != nil {
  220. br.Msg = "参数解析异常!"
  221. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  222. return
  223. }
  224. if req.UserId <= 0 {
  225. br.Msg = "用户id有误"
  226. return
  227. }
  228. if req.SpecialName == "" {
  229. br.Msg = "请输入专栏名称"
  230. return
  231. }
  232. if req.NickName == "" {
  233. br.Msg = "请输入昵称"
  234. return
  235. }
  236. item := models.CygxYanxuanSpecialAuthor{
  237. UserId: req.UserId,
  238. SpecialName: req.SpecialName,
  239. Introduction: req.Introduction,
  240. Label: req.Label,
  241. NickName: req.NickName,
  242. CreateTime: time.Now(),
  243. ModifyTime: time.Now(),
  244. BgImg: "",
  245. Status: 1,
  246. }
  247. //if req.Id == 0{
  248. // _, err = models.AddCygxYanxuanSpecialAuthor(&item)
  249. // if err != nil {
  250. // br.Msg = "新增失败"
  251. // br.ErrMsg = "新增失败,Err:" + err.Error()
  252. // return
  253. // }
  254. //} else {
  255. // err = models.UpdateYanxuanSpecialAuthor(&item)
  256. // if err != nil {
  257. // br.Msg = "保存失败"
  258. // br.ErrMsg = "保存失败,Err:" + err.Error()
  259. // return
  260. // }
  261. //}
  262. err = models.UpdateYanxuanSpecialAuthor(&item)
  263. if err != nil {
  264. br.Msg = "保存失败"
  265. br.ErrMsg = "保存失败,Err:" + err.Error()
  266. return
  267. }
  268. br.Ret = 200
  269. br.Success = true
  270. br.Msg = "保存成功"
  271. }
  272. // @Title 新增保存专栏
  273. // @Description 新增保存专栏
  274. // @Param request body help_doc.AddHelpDocReq true "type json string"
  275. // @Success 200 {object} models.AddEnglishReportResp
  276. // @router /save [post]
  277. func (this *YanxuanSpecialController) Save() {
  278. br := new(models.BaseResponse).Init()
  279. defer func() {
  280. this.Data["json"] = br
  281. this.ServeJSON()
  282. }()
  283. sysUser := this.User
  284. if sysUser == nil {
  285. br.Msg = "请登录"
  286. br.ErrMsg = "请登录,SysUser Is Empty"
  287. br.Ret = 408
  288. return
  289. }
  290. var req models.CygxYanxuanSpecialReq
  291. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  292. if err != nil {
  293. br.Msg = "参数解析异常!"
  294. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  295. return
  296. }
  297. if req.Content == "" && req.DoType == 2 {
  298. br.Msg = "请输入内容"
  299. return
  300. }
  301. if req.CompanyTags == "" && req.IndustryTags == "" && req.DoType == 2 {
  302. br.Msg = "请至少输入一个标签"
  303. return
  304. }
  305. item := models.CygxYanxuanSpecial{
  306. Id: req.Id,
  307. UserId: sysUser.UserId,
  308. CreateTime: time.Now(),
  309. ModifyTime: time.Now(),
  310. PublishTime: time.Now(),
  311. Content: req.Content,
  312. ImgUrl: req.ImgUrl,
  313. DocUrl: req.DocUrl,
  314. Title: req.Title,
  315. Type: req.Type,
  316. CompanyTags: req.CompanyTags,
  317. IndustryTags: req.IndustryTags,
  318. }
  319. if req.DoType == 1 {
  320. item.Status = 1
  321. } else {
  322. item.Status = 2
  323. }
  324. specialId := 0
  325. if req.Id == 0 {
  326. id, err := models.AddCygxYanxuanSpecial(&item)
  327. if err != nil {
  328. br.Msg = "新增失败"
  329. br.ErrMsg = "新增失败,Err:" + err.Error()
  330. return
  331. }
  332. specialId = int(id)
  333. } else {
  334. err = models.UpdateYanxuanSpecial(&item)
  335. if err != nil {
  336. br.Msg = "保存失败"
  337. br.ErrMsg = "保存失败,Err:" + err.Error()
  338. return
  339. }
  340. specialId = req.Id
  341. }
  342. if req.DoType == 2 {
  343. go services.SendReviewTemplateMsgAdmin(specialId)
  344. go services.UpdateYanxuanSpecialResourceData(specialId) // 写入首页最新 cygx_resource_data 表
  345. go services.EsAddYanxuanSpecial(specialId) // 写入es 综合搜索
  346. }
  347. br.Ret = 200
  348. br.Success = true
  349. br.Msg = "保存成功"
  350. }
  351. // @Title 专栏作者详情
  352. // @Description 专栏作者详情
  353. // @Param request body help_doc.AddHelpDocReq true "type json string"
  354. // @Success 200 {object} models.AddEnglishReportResp
  355. // @router /author/detail [get]
  356. func (this *YanxuanSpecialController) AuthorDetail() {
  357. br := new(models.BaseResponse).Init()
  358. defer func() {
  359. this.Data["json"] = br
  360. this.ServeJSON()
  361. }()
  362. sysUser := this.User
  363. if sysUser == nil {
  364. br.Msg = "请登录"
  365. br.ErrMsg = "请登录,SysUser Is Empty"
  366. br.Ret = 408
  367. return
  368. }
  369. userId, _ := this.GetInt("UserId", 0)
  370. if userId == 0 {
  371. userId = sysUser.UserId
  372. }
  373. item, tmpErr := models.GetYanxuanSpecialAuthor(userId, sysUser.UserId, "")
  374. if tmpErr != nil && tmpErr.Error() != utils.ErrNoRow() {
  375. br.Msg = "获取失败"
  376. br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
  377. return
  378. }
  379. br.Data = item
  380. br.Ret = 200
  381. br.Success = true
  382. br.Msg = "获取成功"
  383. }
  384. // @Title 审批研选专栏
  385. // @Description 审批研选专栏
  386. // @Param request body help_doc.AddHelpDocReq true "type json string"
  387. // @Success 200 {object} models.AddEnglishReportResp
  388. // @router /enable [post]
  389. func (this *YanxuanSpecialController) Enable() {
  390. br := new(models.BaseResponse).Init()
  391. defer func() {
  392. this.Data["json"] = br
  393. this.ServeJSON()
  394. }()
  395. sysUser := this.User
  396. if sysUser == nil {
  397. br.Msg = "请登录"
  398. br.ErrMsg = "请登录,SysUser Is Empty"
  399. br.Ret = 408
  400. return
  401. }
  402. var req models.EnableCygxYanxuanSpecialReq
  403. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  404. if err != nil {
  405. br.Msg = "参数解析异常!"
  406. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  407. return
  408. }
  409. if req.Id <= 0 {
  410. br.Msg = "文章id错误"
  411. return
  412. }
  413. if req.Status <= 0 {
  414. br.Msg = "参数错误"
  415. return
  416. }
  417. status := 0
  418. if req.Status == 1 {
  419. status = 3
  420. } else {
  421. status = 4
  422. }
  423. if tmpErr := models.EnableYanxuanSpecial(req.Id, status, req.Reason); tmpErr != nil {
  424. br.Msg = "审批失败"
  425. br.ErrMsg = "审批失败, Err:" + tmpErr.Error()
  426. return
  427. }
  428. if req.Status == 1 {
  429. go services.SendWxMsgSpecialFollow(req.Id)
  430. }
  431. go services.SendWxMsgSpecialAuthor(req.Id, req.Status)
  432. go services.UpdateYanxuanSpecialResourceData(req.Id) // 写入首页最新 cygx_resource_data 表
  433. go services.EsAddYanxuanSpecial(req.Id) // 写入es 综合搜索
  434. br.Msg = "审批成功"
  435. br.Ret = 200
  436. br.Success = true
  437. }
  438. // @Title 研选专栏收藏
  439. // @Description 研选专栏收藏
  440. // @Param request body help_doc.AddHelpDocReq true "type json string"
  441. // @Success 200 {object} models.AddEnglishReportResp
  442. // @router /collect [post]
  443. func (this *YanxuanSpecialController) Collect() {
  444. br := new(models.BaseResponse).Init()
  445. defer func() {
  446. this.Data["json"] = br
  447. this.ServeJSON()
  448. }()
  449. sysUser := this.User
  450. if sysUser == nil {
  451. br.Msg = "请登录"
  452. br.ErrMsg = "请登录,SysUser Is Empty"
  453. br.Ret = 408
  454. return
  455. }
  456. var req models.CollectCygxYanxuanSpecialReq
  457. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  458. if err != nil {
  459. br.Msg = "参数解析异常!"
  460. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  461. return
  462. }
  463. if req.Id <= 0 {
  464. br.Msg = "文章id错误"
  465. return
  466. }
  467. if req.Status <= 0 {
  468. br.Msg = "参数错误"
  469. return
  470. }
  471. var sellerName string
  472. sellerName, err = models.GetCompanySellerName(sysUser.CompanyId)
  473. if err != nil {
  474. br.Msg = "报名失败!"
  475. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  476. return
  477. }
  478. if req.Status == 1 {
  479. item := models.CygxYanxuanSpecialCollect{
  480. UserId: sysUser.UserId,
  481. Mobile: sysUser.Mobile,
  482. Email: sysUser.Email,
  483. CompanyId: sysUser.CompanyId,
  484. CompanyName: sysUser.CompanyName,
  485. RealName: sysUser.RealName,
  486. SellerName: sellerName,
  487. CreateTime: time.Now(),
  488. ModifyTime: time.Now(),
  489. RegisterPlatform: utils.REGISTER_PLATFORM,
  490. YanxuanSpecialId: req.Id,
  491. }
  492. _, err = models.AddCygxYanxuanSpecialCollect(&item)
  493. if err != nil {
  494. br.Msg = "新增失败"
  495. br.ErrMsg = "新增失败,Err:" + err.Error()
  496. return
  497. }
  498. br.Msg = "收藏成功"
  499. } else {
  500. err = models.DelCygxYanxuanSpecialCollect(sysUser.UserId, req.Id)
  501. if err != nil {
  502. br.Msg = "删除失败"
  503. br.ErrMsg = "删除失败,Err:" + err.Error()
  504. return
  505. }
  506. br.Msg = "取消收藏成功"
  507. }
  508. br.Ret = 200
  509. br.Success = true
  510. }
  511. // @Title 专栏内容中心
  512. // @Description 专栏内容中心
  513. // @Param request body help_doc.AddHelpDocReq true "type json string"
  514. // @Success 200 {object} models.AddEnglishReportResp
  515. // @router /center [get]
  516. func (this *YanxuanSpecialController) Center() {
  517. br := new(models.BaseResponse).Init()
  518. defer func() {
  519. this.Data["json"] = br
  520. this.ServeJSON()
  521. }()
  522. sysUser := this.User
  523. if sysUser == nil {
  524. br.Msg = "请登录"
  525. br.ErrMsg = "请登录,SysUser Is Empty"
  526. br.Ret = 408
  527. return
  528. }
  529. // 1:未发布,2:审核中 3:已发布 4:驳回
  530. status, _ := this.GetInt("Status", 0)
  531. if status <= 0 {
  532. br.Msg = "参数错误"
  533. br.ErrMsg = "参数错误"
  534. return
  535. }
  536. var condition string
  537. var pars []interface{}
  538. condition += ` AND a.user_id = ? `
  539. pars = append(pars, sysUser.UserId)
  540. condition += ` AND a.status = ? `
  541. pars = append(pars, status)
  542. list, tmpErr := models.GetYanxuanSpecialList(sysUser.UserId, condition, pars, 0, 0)
  543. if tmpErr != nil {
  544. br.Msg = "获取失败"
  545. br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
  546. return
  547. }
  548. for _, v := range list {
  549. //如果在web端有样式或者上传了文件,小程序就禁止编辑修改内容
  550. hasStyle, err := utils.ArticleHasStyle(v.Content)
  551. if err != nil {
  552. return
  553. }
  554. hasImg, err := utils.ArticleHasImgUrl(v.Content)
  555. if err != nil {
  556. return
  557. }
  558. if hasStyle || strings.Contains(v.DocUrl, "http") || hasImg {
  559. v.ContentHasStyle = true
  560. }
  561. }
  562. br.Data = list
  563. br.Ret = 200
  564. br.Success = true
  565. br.Msg = "获取成功"
  566. }
  567. // @Title 专栏点击记录
  568. // @Description 专栏点击记录
  569. // @Param request body models.AddCygxReportSelectionSubjectHistoryReq true "type json string"
  570. // @router /record [post]
  571. func (this *YanxuanSpecialController) Record() {
  572. br := new(models.BaseResponse).Init()
  573. defer func() {
  574. this.Data["json"] = br
  575. this.ServeJSON()
  576. }()
  577. user := this.User
  578. if user == nil {
  579. br.Msg = "请重新登录"
  580. br.Ret = 408
  581. return
  582. }
  583. var req models.AddCygxYanxuanSpecialRecordReq
  584. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  585. if err != nil {
  586. br.Msg = "参数解析异常!"
  587. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  588. return
  589. }
  590. if req.SpecialId <= 0 {
  591. br.Msg = "文章不存在"
  592. br.ErrMsg = "文章不存在,文章ID错误"
  593. return
  594. }
  595. var sellerName string
  596. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  597. if err != nil {
  598. br.Msg = "报名失败!"
  599. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  600. return
  601. }
  602. item := models.CygxYanxuanSpecialRecord{
  603. UserId: user.UserId,
  604. Mobile: user.Mobile,
  605. Email: user.Email,
  606. CompanyId: user.CompanyId,
  607. CompanyName: user.CompanyName,
  608. RealName: user.RealName,
  609. SellerName: sellerName,
  610. CreateTime: time.Now(),
  611. ModifyTime: time.Now(),
  612. RegisterPlatform: utils.REGISTER_PLATFORM,
  613. YanxuanSpecialId: req.SpecialId,
  614. }
  615. _, err = models.AddCygxYanxuanSpecialRecord(&item)
  616. if err != nil {
  617. br.Msg = "记录失败"
  618. br.ErrMsg = "记录失败,Err:" + err.Error()
  619. return
  620. }
  621. br.Ret = 200
  622. br.Success = true
  623. br.Msg = "记录成功"
  624. }
  625. // @Title 研选专栏关注
  626. // @Description 研选专栏关注
  627. // @Param request body help_doc.AddHelpDocReq true "type json string"
  628. // @Success 200 {object} models.AddEnglishReportResp
  629. // @router /follow [post]
  630. func (this *YanxuanSpecialController) Follow() {
  631. br := new(models.BaseResponse).Init()
  632. defer func() {
  633. this.Data["json"] = br
  634. this.ServeJSON()
  635. }()
  636. sysUser := this.User
  637. if sysUser == nil {
  638. br.Msg = "请登录"
  639. br.ErrMsg = "请登录,SysUser Is Empty"
  640. br.Ret = 408
  641. return
  642. }
  643. var req models.FollowCygxYanxuanSpecialReq
  644. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  645. if err != nil {
  646. br.Msg = "参数解析异常!"
  647. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  648. return
  649. }
  650. if req.FollowUserId <= 0 {
  651. br.Msg = "被关注的用户id"
  652. return
  653. }
  654. if req.Status <= 0 {
  655. br.Msg = "参数错误"
  656. return
  657. }
  658. var sellerName string
  659. sellerName, err = models.GetCompanySellerName(sysUser.CompanyId)
  660. if err != nil {
  661. br.Msg = "报名失败!"
  662. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  663. return
  664. }
  665. if req.Status == 1 {
  666. item := models.CygxYanxuanSpecialFollow{
  667. UserId: sysUser.UserId,
  668. FollowUserId: req.FollowUserId,
  669. Mobile: sysUser.Mobile,
  670. Email: sysUser.Email,
  671. CompanyId: sysUser.CompanyId,
  672. CompanyName: sysUser.CompanyName,
  673. RealName: sysUser.RealName,
  674. SellerName: sellerName,
  675. CreateTime: time.Now(),
  676. ModifyTime: time.Now(),
  677. RegisterPlatform: utils.REGISTER_PLATFORM,
  678. YanxuanSpecialId: req.SpecialId,
  679. }
  680. err = models.AddCygxYanxuanSpecialFollow(&item)
  681. if err != nil {
  682. br.Msg = "新增失败"
  683. br.ErrMsg = "新增失败,Err:" + err.Error()
  684. return
  685. }
  686. br.Msg = "关注成功"
  687. } else {
  688. err = models.DelCygxYanxuanSpecialFollow(sysUser.UserId, req.FollowUserId)
  689. if err != nil {
  690. br.Msg = "删除失败"
  691. br.ErrMsg = "删除失败,Err:" + err.Error()
  692. return
  693. }
  694. br.Msg = "取消关注成功"
  695. }
  696. br.Ret = 200
  697. br.Success = true
  698. }
  699. // @Title 行业标签搜索
  700. // @Description 行业标签搜索
  701. // @Param request body help_doc.AddHelpDocReq true "type json string"
  702. // @Success 200 {object} models.AddEnglishReportResp
  703. // @router /industrySearch [get]
  704. func (this *YanxuanSpecialController) IndustrySearch() {
  705. br := new(models.BaseResponse).Init()
  706. defer func() {
  707. this.Data["json"] = br
  708. this.ServeJSON()
  709. }()
  710. sysUser := this.User
  711. if sysUser == nil {
  712. br.Msg = "请登录"
  713. br.ErrMsg = "请登录,SysUser Is Empty"
  714. br.Ret = 408
  715. return
  716. }
  717. keyword := this.GetString("Keyword")
  718. list, tmpErr := models.GetYanxuanSpecialIndustry(keyword)
  719. if tmpErr != nil {
  720. br.Msg = "获取失败"
  721. br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
  722. return
  723. }
  724. br.Data = list
  725. br.Ret = 200
  726. br.Success = true
  727. br.Msg = "获取成功"
  728. }
  729. // @Title 公司标签搜索
  730. // @Description 公司标签搜索
  731. // @Param request body help_doc.AddHelpDocReq true "type json string"
  732. // @Success 200 {object} models.AddEnglishReportResp
  733. // @router /companySearch [get]
  734. func (this *YanxuanSpecialController) CompanySearch() {
  735. br := new(models.BaseResponse).Init()
  736. defer func() {
  737. this.Data["json"] = br
  738. this.ServeJSON()
  739. }()
  740. sysUser := this.User
  741. if sysUser == nil {
  742. br.Msg = "请登录"
  743. br.ErrMsg = "请登录,SysUser Is Empty"
  744. br.Ret = 408
  745. return
  746. }
  747. keyword := this.GetString("Keyword")
  748. if keyword == "" {
  749. br.Ret = 200
  750. return
  751. }
  752. list, tmpErr := models.GetYanxuanSpecialCompany(keyword)
  753. if tmpErr != nil {
  754. br.Msg = "获取失败"
  755. br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
  756. return
  757. }
  758. br.Data = list
  759. br.Ret = 200
  760. br.Success = true
  761. br.Msg = "获取成功"
  762. }
  763. // @Title 专栏取消发布
  764. // @Description 专栏取消发布
  765. // @Param request body help_doc.AddHelpDocReq true "type json string"
  766. // @Success 200 {object} models.AddEnglishReportResp
  767. // @router /cancel [post]
  768. func (this *YanxuanSpecialController) Cancel() {
  769. br := new(models.BaseResponse).Init()
  770. defer func() {
  771. this.Data["json"] = br
  772. this.ServeJSON()
  773. }()
  774. sysUser := this.User
  775. if sysUser == nil {
  776. br.Msg = "请登录"
  777. br.ErrMsg = "请登录,SysUser Is Empty"
  778. br.Ret = 408
  779. return
  780. }
  781. var req models.CancelPublishCygxYanxuanSpecialReq
  782. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  783. if err != nil {
  784. br.Msg = "参数解析异常!"
  785. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  786. return
  787. }
  788. if req.Id <= 0 {
  789. br.Msg = "文章id错误"
  790. return
  791. }
  792. if tmpErr := models.CancelPublishYanxuanSpecial(req.Id); tmpErr != nil {
  793. br.Msg = "取消发布失败"
  794. br.ErrMsg = "取消发布失败, Err:" + tmpErr.Error()
  795. return
  796. }
  797. go services.UpdateYanxuanSpecialResourceData(req.Id) // 写入首页最新 cygx_resource_data 表
  798. go services.EsAddYanxuanSpecial(req.Id) // 写入es 综合搜索
  799. br.Msg = "取消发布成功"
  800. br.Ret = 200
  801. br.Success = true
  802. }
  803. // @Title 作者列表
  804. // @Description 作者列表
  805. // @Param PageSize query int true "每页数据条数"
  806. // @Param CurrentIndex query int true "当前页页码,从1开始"
  807. // @Success 200 {object} models.AddEnglishReportResp
  808. // @router /author/list [get]
  809. func (this *YanxuanSpecialController) AuthorList() {
  810. br := new(models.BaseResponse).Init()
  811. defer func() {
  812. this.Data["json"] = br
  813. this.ServeJSON()
  814. }()
  815. sysUser := this.User
  816. if sysUser == nil {
  817. br.Msg = "请登录"
  818. br.ErrMsg = "请登录,SysUser Is Empty"
  819. br.Ret = 408
  820. return
  821. }
  822. pageSize, _ := this.GetInt("PageSize")
  823. currentIndex, _ := this.GetInt("CurrentIndex")
  824. var startSize int
  825. if pageSize <= 0 {
  826. pageSize = utils.PageSize20
  827. }
  828. if currentIndex <= 0 {
  829. currentIndex = 1
  830. }
  831. startSize = utils.StartIndex(currentIndex, pageSize)
  832. var condition string
  833. var pars []interface{}
  834. condition += ` AND a.nick_name <> '' `
  835. total, err := models.GetCygxYanxuanSpecialAuthorCount(condition, pars)
  836. if err != nil {
  837. br.Msg = "获取失败"
  838. br.ErrMsg = "获取失败,Err:" + err.Error()
  839. return
  840. }
  841. condition += ` ORDER BY latest_publish_time DESC`
  842. list, tmpErr := models.GetYanxuanSpecialAuthorList(condition, pars, startSize, pageSize)
  843. if tmpErr != nil {
  844. br.Msg = "获取失败"
  845. br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
  846. return
  847. }
  848. var userIds []int
  849. for _, v := range list {
  850. v.LatestPublishDate = v.LatestPublishTime.Format(utils.FormatDate) + "更新"
  851. userIds = append(userIds, v.UserId)
  852. }
  853. bestNew := services.GetBestNewYanxuanSpecialByUserId(userIds)
  854. for _, v := range list {
  855. v.YanxuanSpecialCenter = bestNew[v.UserId]
  856. }
  857. resp := new(models.SpecialAuthorListResp)
  858. isAuthor, _ := services.GetYanxuanSpecialAuthorInfo(sysUser) //用户是否没开通研选专栏以及,专栏信息是否完善
  859. resp.IsAuthor = isAuthor
  860. page := paging.GetPaging(currentIndex, pageSize, total)
  861. resp.List = list
  862. resp.Paging = page
  863. br.Data = resp
  864. br.Ret = 200
  865. br.Success = true
  866. br.Msg = "获取成功"
  867. }
  868. // @Title 更新作者头像
  869. // @Description 更新作者头像
  870. // @Param request body help_doc.AddHelpDocReq true "type json string"
  871. // @Success 200 {object} models.AddEnglishReportResp
  872. // @router /author/head_img [post]
  873. func (this *YanxuanSpecialController) AuthorHeadImg() {
  874. br := new(models.BaseResponse).Init()
  875. defer func() {
  876. this.Data["json"] = br
  877. this.ServeJSON()
  878. }()
  879. sysUser := this.User
  880. if sysUser == nil {
  881. br.Msg = "请登录"
  882. br.ErrMsg = "请登录,SysUser Is Empty"
  883. br.Ret = 408
  884. return
  885. }
  886. var req models.SaveCygxYanxuanSpecialAuthoHeadImgrReq
  887. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  888. if err != nil {
  889. br.Msg = "参数解析异常!"
  890. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  891. return
  892. }
  893. if req.UserId <= 0 {
  894. br.Msg = "用户id有误"
  895. return
  896. }
  897. if req.HeadImg == "" {
  898. br.Msg = "头像图片错误"
  899. return
  900. }
  901. item := models.CygxYanxuanSpecialAuthor{
  902. UserId: req.UserId,
  903. HeadImg: req.HeadImg,
  904. }
  905. err = models.UpdateYanxuanSpecialAuthorHeadImg(&item)
  906. if err != nil {
  907. br.Msg = "保存失败"
  908. br.ErrMsg = "保存失败,Err:" + err.Error()
  909. return
  910. }
  911. br.Ret = 200
  912. br.Success = true
  913. br.Msg = "保存成功"
  914. }
  915. // @Title 删除专栏
  916. // @Description 删除专栏
  917. // @Param request body help_doc.AddHelpDocReq true "type json string"
  918. // @Success 200 {object} models.AddEnglishReportResp
  919. // @router /del [post]
  920. func (this *YanxuanSpecialController) Delete() {
  921. br := new(models.BaseResponse).Init()
  922. defer func() {
  923. this.Data["json"] = br
  924. this.ServeJSON()
  925. }()
  926. sysUser := this.User
  927. if sysUser == nil {
  928. br.Msg = "请登录"
  929. br.ErrMsg = "请登录,SysUser Is Empty"
  930. br.Ret = 408
  931. return
  932. }
  933. var req models.EnableCygxYanxuanSpecialReq
  934. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  935. if err != nil {
  936. br.Msg = "参数解析异常!"
  937. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  938. return
  939. }
  940. if req.Id <= 0 {
  941. br.Msg = "文章id错误"
  942. return
  943. }
  944. if tmpErr := models.DelYanxuanSpecial(req.Id); tmpErr != nil {
  945. br.Msg = "删除失败"
  946. br.ErrMsg = "删除失败, Err:" + tmpErr.Error()
  947. return
  948. }
  949. br.Msg = "删除成功"
  950. br.Ret = 200
  951. br.Success = true
  952. }
  953. // @Title 专栏文章敏感词检测
  954. // @Description 专栏文章敏感词检测
  955. // @Param request body help_doc.AddHelpDocReq true "type json string"
  956. // @Success 200 {object} models.AddEnglishReportResp
  957. // @router /check [post]
  958. func (this *YanxuanSpecialController) Check() {
  959. br := new(models.BaseResponse).Init()
  960. defer func() {
  961. this.Data["json"] = br
  962. this.ServeJSON()
  963. }()
  964. sysUser := this.User
  965. if sysUser == nil {
  966. br.Msg = "请登录"
  967. br.ErrMsg = "请登录,SysUser Is Empty"
  968. br.Ret = 408
  969. return
  970. }
  971. var req models.CygxYanxuanSpecialCheckReq
  972. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  973. if err != nil {
  974. br.Msg = "参数解析异常!"
  975. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  976. return
  977. }
  978. if req.Content == "" {
  979. br.Ret = 200
  980. br.Success = true
  981. br.Msg = "校验成功"
  982. }
  983. itemToken, err := services.WxGetToken()
  984. if err != nil {
  985. br.Msg = "GetWxAccessToken Err:" + err.Error()
  986. return
  987. }
  988. if itemToken.AccessToken == "" {
  989. br.Msg = "accessToken is empty"
  990. return
  991. }
  992. suggest := models.WxCheckContent(itemToken.AccessToken, sysUser.OpenId, req.Content)
  993. if suggest == "risky" {
  994. br.Msg = "文章内容含有违法违规内容"
  995. br.ErrMsg = "文章内容含有违法违规内容"
  996. return
  997. }
  998. if len(req.ImgUrl) > 0 {
  999. //for _, imgUrl := range req.ImgUrl {
  1000. // imgBody, err := http.Get(imgUrl)
  1001. // if err != nil {
  1002. // br.Msg = "图片链接有误"
  1003. // br.ErrMsg = "图片链接有误"
  1004. // return
  1005. // }
  1006. // rnStr := utils.GetRandStringNoSpecialChar(5)
  1007. // savePath := time.Now().Format(utils.FormatDateTimeUnSpace) + rnStr + ".jpg"
  1008. // err = file.SaveFile(imgBody, savePath)
  1009. // if err != nil {
  1010. // br.Msg = "保存图片错误"
  1011. // br.ErrMsg = "保存图片错误"
  1012. // return
  1013. // }
  1014. // res, err := weapp.IMGSecCheck(itemToken.AccessToken, savePath)
  1015. // if err != nil {
  1016. // // 处理一般错误信息
  1017. // br.Msg = "图片内容含有违法违规内容"
  1018. // br.ErrMsg = "图片内容含有违法违规内容"
  1019. // return
  1020. // }
  1021. // if err := res.GetResponseError(); err != nil {
  1022. // // 处理微信返回错误信息
  1023. // return
  1024. // }
  1025. // err = os.RemoveAll(savePath)
  1026. // if err != nil {
  1027. // return
  1028. // }
  1029. //}
  1030. }
  1031. br.Ret = 200
  1032. br.Success = true
  1033. br.Msg = "校验成功"
  1034. }