yanxuan_special.go 35 KB

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