report.go 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "github.com/medivhzhan/weapp/v2"
  7. "github.com/rdlucklib/rdluck_tools/paging"
  8. "hongze/hongze_cygx/models"
  9. "hongze/hongze_cygx/services"
  10. "hongze/hongze_cygx/utils"
  11. "html"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. //报告
  17. type ReportController struct {
  18. BaseAuthController
  19. }
  20. type ReportCommonController struct {
  21. BaseCommonController
  22. }
  23. // @Title 行业报告分类列表接口
  24. // @Description 获取行业报告分类列表接口
  25. // @Param ChartPermissionId query int true "分类ID"
  26. // @Success 200 {object} models.IndustrialManagementList
  27. // @router /home/tradeList [get]
  28. func (this *ReportController) TradeList() {
  29. br := new(models.BaseResponse).Init()
  30. defer func() {
  31. this.Data["json"] = br
  32. this.ServeJSON()
  33. }()
  34. user := this.User
  35. if user == nil {
  36. br.Msg = "请重新登录"
  37. br.Ret = 408
  38. return
  39. }
  40. uid := user.UserId
  41. ChartPermissionId, _ := this.GetInt("ChartPermissionId")
  42. if ChartPermissionId < 1 {
  43. br.Msg = "请输入分类ID"
  44. return
  45. }
  46. list, err := models.GetTradeAll(ChartPermissionId)
  47. if err != nil {
  48. br.Msg = "获取信息失败"
  49. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  50. return
  51. }
  52. var condition string
  53. var pars []interface{}
  54. for k, v := range list {
  55. if v.PolymerizationId != "" {
  56. condition = ` AND a.category_id IN(` + v.PolymerizationId + `)`
  57. } else {
  58. condition = ` AND a.category_id IN(` + strconv.Itoa(v.CategoryId) + `)`
  59. }
  60. listArticle, err := models.GetHomeList(condition, pars, 0, 1)
  61. if err != nil && err.Error() != utils.ErrNoRow() {
  62. br.Msg = "获取信息失败"
  63. br.Msg = "GetHomeList,Err:" + err.Error()
  64. return
  65. }
  66. if len(listArticle) > 0 {
  67. list[k].UpdateTime = utils.StrTimeToTime(listArticle[0].PublishDate).Format(utils.FormatDate) //时间字符串格式转时间格式
  68. count, err := models.CheckThisCategoryNewArticleIsRead(uid, v.CategoryId)
  69. if err != nil {
  70. br.Msg = "获取信息失败"
  71. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  72. return
  73. }
  74. if count == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.UpdateTime)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.UpdateTime)) {
  75. list[k].IsRed = true
  76. }
  77. }
  78. }
  79. resp := new(models.TradeReportMappingResp)
  80. resp.List = list
  81. br.Ret = 200
  82. br.Success = true
  83. br.Msg = "获取成功"
  84. br.Data = resp
  85. }
  86. // @Title 产业报告分类列表接口
  87. // @Description 获取产业报告分类列表接口
  88. // @Param ChartPermissionId query int true "分类ID"
  89. // @Param IsNewLabel query string true "是否属于新标签,1是,0否"
  90. // @Param IsDeepLabel query string true "是否属于深标签,1是,0否"
  91. // @Param KeyWord query string true "搜索关键词"
  92. // @Param OrderColumn query int true "排序字段 ,NewTime 最近更新 ,Recommend弘则推荐"
  93. // @Param DeepCover query int false "深度覆盖:0-否;1-是"
  94. // @Param RecommendFocus query int false "推荐关注:0-否;1-是"
  95. // @Param PageSize query int true "每页数据条数"
  96. // @Param CurrentIndex query int true "当前页页码,从1开始"
  97. // @Success 200 {object} models.IndustrialManagementList
  98. // @router /home/industryList [get]
  99. func (this *ReportController) IndustryList() {
  100. br := new(models.BaseResponse).Init()
  101. defer func() {
  102. this.Data["json"] = br
  103. this.ServeJSON()
  104. }()
  105. user := this.User
  106. if user == nil {
  107. br.Msg = "请重新登录"
  108. br.Ret = 408
  109. return
  110. }
  111. uid := user.UserId
  112. fmt.Println(uid)
  113. ChartPermissionId, _ := this.GetInt("ChartPermissionId")
  114. orderColumn := this.GetString("OrderColumn")
  115. orderColumnNew := this.GetString("OrderColumn")
  116. isNewLabel := this.GetString("IsNewLabel")
  117. isDeepLabel := this.GetString("IsDeepLabel")
  118. keyWord := this.GetString("KeyWord")
  119. pageSize, _ := this.GetInt("PageSize")
  120. currentIndex, _ := this.GetInt("CurrentIndex")
  121. deepCover, _ := this.GetInt("DeepCover")
  122. recommendFocus, _ := this.GetInt("RecommendFocus")
  123. var orderSrt string
  124. var condition string
  125. var startSize int
  126. resp := new(models.IndustrialManagementList)
  127. if pageSize <= 0 {
  128. pageSize = utils.PageSize20
  129. }
  130. if currentIndex <= 0 {
  131. currentIndex = 1
  132. }
  133. startSize = paging.StartIndex(currentIndex, pageSize)
  134. if isNewLabel == "1" {
  135. condition += ` AND is_new_label = ` + isNewLabel
  136. }
  137. if isDeepLabel == "1" {
  138. condition += ` AND is_deep_label = ` + isDeepLabel
  139. }
  140. if keyWord != "" {
  141. condition += ` AND subject_names LIKE '%` + keyWord + `%'`
  142. }
  143. var sqlChartPermissionId string
  144. if ChartPermissionId > 0 {
  145. sqlChartPermissionId += ` AND man_g.industrial_management_id IN ( SELECT industrial_management_id FROM cygx_industrial_management WHERE chart_permission_id = ` + strconv.Itoa(ChartPermissionId) + ` ) `
  146. condition += ` AND man.chart_permission_id IN (` + strconv.Itoa(ChartPermissionId) + `)`
  147. }
  148. // 深度覆盖
  149. if deepCover == 1 {
  150. // 查询深标签产业报告数
  151. var deepCondition string
  152. var deepPars []interface{}
  153. deepCondition += ` AND man.is_deep_label = 1`
  154. if ChartPermissionId > 0 {
  155. deepCondition += ` AND man.chart_permission_id = ?`
  156. deepPars = append(deepPars, ChartPermissionId)
  157. }
  158. industryCountList, e := models.GetIndustryArtCountByCondition(deepCondition, deepPars)
  159. if e != nil {
  160. br.Msg = "获取信息失败"
  161. br.ErrMsg = "获取深标签产业报告数失败, Err: " + e.Error()
  162. return
  163. }
  164. deepIdArr := make([]string, 0)
  165. for i := range industryCountList {
  166. if industryCountList[i].ArtNum > 10 {
  167. deepIdArr = append(deepIdArr, strconv.Itoa(industryCountList[i].IndustrialManagementId))
  168. }
  169. }
  170. deepIds := strings.Join(deepIdArr, ",")
  171. if deepIds != "" {
  172. condition = `AND man.industrial_management_id IN (` + deepIds + `)`
  173. }
  174. }
  175. // 推荐关注
  176. if recommendFocus == 1 {
  177. condition += ` AND man.recommended_index >= 80`
  178. }
  179. // 列表总数据量
  180. var list []*models.IndustrialManagement
  181. total, err := models.GetIndustrialManagementAllCount(condition)
  182. if err != nil {
  183. br.Msg = "获取信息失败"
  184. br.ErrMsg = "获取数量失败,Err:" + err.Error()
  185. return
  186. }
  187. page := paging.GetPaging(currentIndex, pageSize, total)
  188. if orderColumn == "" {
  189. orderColumn = "NewTime"
  190. }
  191. if orderColumn == "NewTime" {
  192. orderSrt = "update_time DESC"
  193. } else {
  194. orderSrt = "man.recommended_index DESC,update_time DESC"
  195. }
  196. if ChartPermissionId == 0 {
  197. ChartPermissionId = 20
  198. }
  199. // 阅读第三的产业详情
  200. //detailHot3, err := models.GetIndustrialManagementHot3(ChartPermissionId)
  201. //if err != nil {
  202. // br.Msg = "获取信息失败"
  203. // br.ErrMsg = "获取信息失败,Err:" + err.Error()
  204. // return
  205. //}
  206. list, err = models.GetIndustrialManagementAll(uid, condition, orderSrt, startSize, pageSize)
  207. if err != nil {
  208. br.Msg = "获取信息失败"
  209. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  210. return
  211. }
  212. // 获取近一个月产业报告阅读次数最多的产业
  213. var topCond string
  214. var topPars []interface{}
  215. //topReadIndustryId := 0
  216. if ChartPermissionId > 0 {
  217. topCond += ` AND chart_permission_id = ?`
  218. topPars = append(topPars, ChartPermissionId)
  219. }
  220. list, err = services.HandleIndustryList(list, user)
  221. if orderColumnNew != "" {
  222. item := new(models.CygxReportIndustrialSeaarchHistory)
  223. item.UserId = user.UserId
  224. item.Mobile = user.Mobile
  225. item.CompanyId = user.CompanyId
  226. item.CompanyName = user.CompanyName
  227. item.CreateTime = time.Now()
  228. item.IsDeepLabel = isDeepLabel
  229. item.IsNewLabel = isNewLabel
  230. item.ChartPermissionId = ChartPermissionId
  231. if orderColumnNew == "NewTime" {
  232. item.OrderColumn = "0"
  233. } else {
  234. item.OrderColumn = "1"
  235. }
  236. go models.AddCygxReportIndustrialSeaarchHistory(item)
  237. }
  238. resp.List = list
  239. resp.Paging = page
  240. br.Ret = 200
  241. br.Success = true
  242. br.Msg = "获取成功"
  243. br.Data = resp
  244. }
  245. // @Title 产业下所关联的文章分类列表
  246. // @Description 产业下所关联的文章分类列表接口
  247. // @Param IndustrialManagementId query int true "产业ID"
  248. // @Param ShowTimeLine query int true "是否展示时间线 0不展示,1展示"
  249. // @Success 200 {object} models.IndustrialToArticleCategoryListRep
  250. // @router /toArticleCategoryList [get]
  251. func (this *ReportController) ArticleCategoryList() {
  252. br := new(models.BaseResponse).Init()
  253. defer func() {
  254. this.Data["json"] = br
  255. this.ServeJSON()
  256. }()
  257. user := this.User
  258. if user == nil {
  259. br.Msg = "请重新登录"
  260. br.Ret = 408
  261. return
  262. }
  263. uid := user.UserId
  264. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  265. if industrialManagementId < 1 {
  266. br.Msg = "请输入分类ID"
  267. return
  268. }
  269. showTimeLine, _ := this.GetInt("ShowTimeLine", 0)
  270. detail, err := models.GetIndustrialManagementDetail(industrialManagementId)
  271. if err != nil {
  272. br.Msg = "获取信息失败"
  273. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  274. return
  275. }
  276. list, err := models.IndustrialToArticleCategoryNew(industrialManagementId)
  277. if err != nil {
  278. br.Msg = "获取信息失败"
  279. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  280. return
  281. }
  282. for k, v := range list {
  283. recordCount, err := models.IndustrialUserRecordArticleCount(uid, industrialManagementId, v.CategoryId)
  284. if err != nil && err.Error() != utils.ErrNoRow() {
  285. br.Msg = "获取信息失败"
  286. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  287. return
  288. }
  289. Newdetail, err := models.GetNewIndustrialUserRecordArticle(industrialManagementId, v.CategoryId)
  290. if err != nil && err.Error() != utils.ErrNoRow() {
  291. br.Msg = "获取信息失败"
  292. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  293. return
  294. }
  295. if Newdetail != nil {
  296. if recordCount == 0 && user.CreatedTime.Before(utils.StrTimeToTime(Newdetail.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(Newdetail.PublishDate)) {
  297. list[k].IsRed = true
  298. }
  299. }
  300. }
  301. // 用户权限
  302. authInfo, permissionArr, e := services.GetUserRaiPermissionInfo(user.UserId, user.CompanyId)
  303. if e != nil {
  304. br.Msg = "获取失败"
  305. br.ErrMsg = "获取用户权限失败, Err: " + e.Error()
  306. return
  307. }
  308. videoSimple := new(models.MicroVideoSimpleInfo)
  309. // 权限
  310. var au *models.UserPermissionAuthInfo
  311. video, err := models.GetMicroRoadshowVideoByIndustryId(industrialManagementId)
  312. if err != nil {
  313. if err.Error() != utils.ErrNoRow() {
  314. br.Msg = "获取产业视频失败"
  315. br.ErrMsg = "获取产业视频失败,Err:" + err.Error()
  316. return
  317. }
  318. } else {
  319. videoSimple.Id = video.VideoId
  320. videoSimple.Title = "5min逻辑【" + video.IndustryName + "】解析"
  321. videoSimple.BackgroundImg = video.ImgUrl
  322. videoSimple.DetailImgUrl = video.DetailImgUrl
  323. if videoSimple.BackgroundImg == "" {
  324. // 获取默认图配置
  325. _, videoMap, _, _, e := services.GetMicroRoadShowDefaultImgConfig()
  326. if e != nil {
  327. br.Msg = "获取视频默认配置图失败"
  328. br.ErrMsg = "获取视频默认配置图失败, Err: " + e.Error()
  329. return
  330. }
  331. videoSimple.BackgroundImg = videoMap[video.ChartPermissionId]
  332. }
  333. videoSimple.PlaySeconds = video.VideoDuration
  334. videoSimple.ResourceUrl = video.VideoUrl
  335. au = new(models.UserPermissionAuthInfo)
  336. au.SellerName = authInfo.SellerName
  337. au.SellerMobile = authInfo.SellerMobile
  338. au.HasPermission = authInfo.HasPermission
  339. au.OperationMode = authInfo.OperationMode
  340. if au.HasPermission == 1 {
  341. // 非宏观权限进一步判断是否有权限
  342. if video.ChartPermissionId != utils.HONG_GUAN_ID && !utils.InArrayByStr(permissionArr, video.ChartPermissionName) {
  343. au.HasPermission = 2
  344. }
  345. }
  346. // 无权限的弹框提示
  347. if au.HasPermission != 1 {
  348. if au.OperationMode == services.UserPermissionOperationModeCall {
  349. au.PopupMsg = services.UserPermissionPopupMsgCallMicroVideo
  350. } else {
  351. au.PopupMsg = services.UserPermissionPopupMsgApplyMicroVideo
  352. }
  353. videoSimple.ResourceUrl = ""
  354. }
  355. }
  356. //时间线
  357. if showTimeLine == 1 {
  358. timeLineItem := models.IndustrialToArticleCategoryRep{
  359. CategoryId: 99999,
  360. MatchTypeName: "时间线",
  361. }
  362. timeLineList, err := models.GetTimeLineReportIndustrialList(user.UserId, industrialManagementId, 0, 30)
  363. if err != nil {
  364. br.Msg = "获取信息失败"
  365. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  366. return
  367. }
  368. //查询用户今天是否看过时间线
  369. haveMorningMeeting := false
  370. count, err := models.GetTimeLineRecordCount(user.UserId, industrialManagementId, time.Now().Format(utils.FormatDate))
  371. for _, v := range timeLineList {
  372. if v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishTime)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishTime)) {
  373. if v.SubCategoryName == "时间线" {
  374. haveMorningMeeting = true
  375. continue
  376. }
  377. timeLineItem.IsRed = true
  378. }
  379. }
  380. //因为无法记录用户是否看过晨会点评,所以用用户今天是否看过时间线来判断是否显示小红点,这里是判断分类的小红点
  381. if !timeLineItem.IsRed && count == 0 && haveMorningMeeting {
  382. timeLineItem.IsRed = true
  383. }
  384. list = append([]*models.IndustrialToArticleCategoryRep{&timeLineItem}, list...)
  385. }
  386. resp := new(models.IndustrialToArticleCategoryListRep)
  387. resp.List = list
  388. resp.LayoutTime = utils.TimeRemoveHms(detail.LayoutTime)
  389. resp.IndustryName = detail.IndustryName
  390. resp.IndustrialManagementId = industrialManagementId
  391. resp.AuthInfo = au
  392. if videoSimple.Id > 0 {
  393. resp.IndustryVideo = videoSimple
  394. }
  395. br.Ret = 200
  396. br.Success = true
  397. br.Msg = "获取成功"
  398. br.Data = resp
  399. }
  400. // @Title 产业文章列表接口
  401. // @Description 获取产业文章列表接口
  402. // @Param PageSize query int true "每页数据条数"
  403. // @Param CurrentIndex query int true "当前页页码,从1开始"
  404. // @Param CategoryId query int true "分类ID"
  405. // @Param IndustrialManagementId query int true "产业ID"
  406. // @Success 200 {object} models.TacticsListResp
  407. // @router /industry/ArticleList [get]
  408. func (this *ReportController) List() {
  409. br := new(models.BaseResponse).Init()
  410. defer func() {
  411. this.Data["json"] = br
  412. this.ServeJSON()
  413. }()
  414. user := this.User
  415. if user == nil {
  416. br.Msg = "请重新登录"
  417. br.Ret = 408
  418. return
  419. }
  420. uid := user.UserId
  421. pageSize, _ := this.GetInt("PageSize")
  422. currentIndex, _ := this.GetInt("CurrentIndex")
  423. categoryId, _ := this.GetInt("CategoryId")
  424. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  425. var startSize int
  426. if pageSize <= 0 {
  427. pageSize = utils.PageSize20
  428. }
  429. if currentIndex <= 0 {
  430. currentIndex = 1
  431. }
  432. startSize = paging.StartIndex(currentIndex, pageSize)
  433. var pars []interface{}
  434. var total int
  435. page := paging.GetPaging(currentIndex, pageSize, total)
  436. if categoryId < 1 {
  437. br.Msg = "请输入分类ID"
  438. return
  439. }
  440. if industrialManagementId < 1 {
  441. br.Msg = "请输入产业ID"
  442. return
  443. }
  444. if categoryId != 99999 {
  445. resp := new(models.TacticsListResp)
  446. //获取该产业下所对应的行业图片
  447. detail, errCategory := models.GetdetailByCategoryIdOne(categoryId)
  448. if errCategory != nil {
  449. br.Msg = "获取信息失败"
  450. br.ErrMsg = "获取信息失败,Err:" + errCategory.Error() + "categoryID 不存在:" + strconv.Itoa(categoryId)
  451. return
  452. }
  453. //对应行业的图片
  454. detailChartPermissionUrl, err := models.GetConfigByCode("category_chart_permissionimg_url")
  455. if err != nil {
  456. br.Msg = "获取数据失败"
  457. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  458. return
  459. }
  460. chartPermissionUrlList := strings.Split(detailChartPermissionUrl.ConfigValue, "{|}")
  461. mapChartPermission := make(map[string]string)
  462. var permissionName string
  463. var imgUrlChartPermission string
  464. for _, v := range chartPermissionUrlList {
  465. vslice := strings.Split(v, "_")
  466. permissionName = vslice[0]
  467. imgUrlChartPermission = vslice[len(vslice)-1]
  468. mapChartPermission[permissionName] = imgUrlChartPermission
  469. }
  470. total, err = models.GetReportIndustrialCount(categoryId, industrialManagementId)
  471. if err != nil {
  472. br.Msg = "获取信息失败"
  473. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  474. return
  475. }
  476. page = paging.GetPaging(currentIndex, pageSize, total)
  477. list, err := models.GetReportIndustrialList(pars, categoryId, industrialManagementId, uid, startSize, pageSize)
  478. if err != nil {
  479. br.Msg = "获取信息失败"
  480. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  481. return
  482. }
  483. //对应分类的所图片
  484. detailCategoryUrl, err := models.GetConfigByCode("category_map_img_url")
  485. if err != nil {
  486. br.Msg = "获取数据失败"
  487. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  488. return
  489. }
  490. categoryUrlList := strings.Split(detailCategoryUrl.ConfigValue, "{|}")
  491. mapCategoryUrl := make(map[string]string)
  492. var categoryIdStr string
  493. var imgUrlChart string
  494. for _, v := range categoryUrlList {
  495. vslice := strings.Split(v, "_")
  496. categoryIdStr = vslice[0]
  497. imgUrlChart = vslice[len(vslice)-1]
  498. mapCategoryUrl[categoryIdStr] = imgUrlChart
  499. }
  500. lenList := len(list)
  501. for i := 0; i < lenList; i++ {
  502. item := list[i]
  503. list[i].Body, _ = services.GetReportContentTextSub(item.Body)
  504. //list[i].Abstract = html.UnescapeString(item.Abstract)
  505. list[i].Abstract, _ = services.GetReportContentTextSub(item.Abstract)
  506. //list[i].Annotation = services.GetAnnotationTextSub(item.Annotation)
  507. }
  508. for k, v := range list {
  509. if v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishDate)) {
  510. list[k].IsRed = true
  511. }
  512. if v.VideoUrl != "" {
  513. list[k].IsHaveVideo = true
  514. }
  515. list[k].ImgUrlPc = mapCategoryUrl[v.CategoryId]
  516. if mapCategoryUrl[v.CategoryId] == "" {
  517. if detail.ChartPermissionId == utils.YI_YAO_ID {
  518. list[k].ImgUrlPc = utils.YI_YAO_QI_TA
  519. }
  520. }
  521. }
  522. resp.CategoryImgUrlPc = mapChartPermission[detail.ChartPermissionName]
  523. resp.ChartPermissionId = detail.ChartPermissionId
  524. resp.List = list
  525. resp.Paging = page
  526. br.Ret = 200
  527. br.Success = true
  528. br.Msg = "获取成功"
  529. br.Data = resp
  530. } else {
  531. //获取该产业下所对应的行业图片
  532. //因为时间线不属于数据表里的二级分类,所以图片Id用产业id查到的list中的任意一个categoryId取到的图片替代
  533. categoryList, err := models.IndustrialToArticleCategoryNew(industrialManagementId)
  534. if err != nil {
  535. br.Msg = "获取信息失败"
  536. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  537. return
  538. }
  539. var timeLineCategoryId int
  540. if len(categoryList) > 0 {
  541. timeLineCategoryId = categoryList[0].CategoryId
  542. }
  543. var detail *models.ReportMapping
  544. var errCategory error
  545. if timeLineCategoryId > 0 {
  546. detail, errCategory = models.GetdetailByCategoryIdOne(timeLineCategoryId)
  547. if errCategory != nil {
  548. br.Msg = "获取信息失败"
  549. br.ErrMsg = "获取信息失败,Err:" + errCategory.Error() + "categoryID 不存在:" + strconv.Itoa(categoryId)
  550. return
  551. }
  552. }
  553. //对应行业的图片
  554. detailChartPermissionUrl, err := models.GetConfigByCode("category_chart_permissionimg_url")
  555. if err != nil {
  556. br.Msg = "获取数据失败"
  557. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  558. return
  559. }
  560. chartPermissionUrlList := strings.Split(detailChartPermissionUrl.ConfigValue, "{|}")
  561. mapChartPermission := make(map[string]string)
  562. var permissionName string
  563. var imgUrlChartPermission string
  564. for _, v := range chartPermissionUrlList {
  565. vslice := strings.Split(v, "_")
  566. permissionName = vslice[0]
  567. imgUrlChartPermission = vslice[len(vslice)-1]
  568. mapChartPermission[permissionName] = imgUrlChartPermission
  569. }
  570. total, err := models.GetTimeLineReportIndustrialCount(industrialManagementId)
  571. if err != nil {
  572. br.Msg = "获取信息失败"
  573. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  574. return
  575. }
  576. page = paging.GetPaging(currentIndex, pageSize, total)
  577. list, err := models.GetTimeLineReportIndustrialList(user.UserId, industrialManagementId, startSize, pageSize)
  578. if err != nil {
  579. br.Msg = "获取信息失败"
  580. br.ErrMsg = "获取帖子数据失败,Err:" + err.Error()
  581. return
  582. }
  583. //对应分类的所图片
  584. detailCategoryUrl, err := models.GetConfigByCode("category_map_img_url")
  585. if err != nil {
  586. br.Msg = "获取数据失败"
  587. br.ErrMsg = "行业配置信息失败,Err:" + err.Error()
  588. return
  589. }
  590. categoryUrlList := strings.Split(detailCategoryUrl.ConfigValue, "{|}")
  591. mapCategoryUrl := make(map[string]string)
  592. var categoryIdStr string
  593. var imgUrlChart string
  594. for _, v := range categoryUrlList {
  595. vslice := strings.Split(v, "_")
  596. categoryIdStr = vslice[0]
  597. imgUrlChart = vslice[len(vslice)-1]
  598. mapCategoryUrl[categoryIdStr] = imgUrlChart
  599. }
  600. //lenList := len(list)
  601. //for i := 0; i < lenList; i++ {
  602. // item := list[i]
  603. // list[i].Content, _ = services.GetReportContentTextSub(item.Content)
  604. // //list[i].Abstract = html.UnescapeString(item.Abstract)
  605. // //list[i].Abstract, _ = services.GetReportContentTextSub(item.Abstract)
  606. //}
  607. //查询用户今天是否看过时间线
  608. count, err := models.GetTimeLineRecordCount(user.UserId, industrialManagementId, time.Now().Format(utils.FormatDate))
  609. for k, v := range list {
  610. if v.SubCategoryName != "时间线" && v.Readnum == 0 && user.CreatedTime.Before(utils.StrTimeToTime(v.PublishTime)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrTimeToTime(v.PublishTime)) {
  611. list[k].IsRed = true
  612. }
  613. if v.SubCategoryName == "时间线" && count == 0 {
  614. list[k].IsRed = true
  615. }
  616. if v.VideoUrl != "" {
  617. list[k].IsHaveVideo = true
  618. }
  619. id := strconv.Itoa(timeLineCategoryId)
  620. list[k].ImgUrlPc = mapCategoryUrl[id]
  621. if mapCategoryUrl[id] == "" {
  622. if detail.ChartPermissionId == utils.YI_YAO_ID {
  623. list[k].ImgUrlPc = utils.YI_YAO_QI_TA
  624. }
  625. }
  626. }
  627. resp := new(models.TimeLineReportListResp)
  628. resp.CategoryImgUrlPc = mapChartPermission[detail.ChartPermissionName]
  629. resp.List = list
  630. resp.Paging = page
  631. br.Ret = 200
  632. br.Success = true
  633. br.Msg = "获取成功"
  634. br.Data = resp
  635. }
  636. }
  637. // @Title 置顶/取消置顶
  638. // @Description 置顶
  639. // @Param request body models.CygxIndustryTopRep true "type json string"
  640. // @Success 200
  641. // @router /top [post]
  642. func (this *ReportController) ArticleCollect() {
  643. br := new(models.BaseResponse).Init()
  644. defer func() {
  645. this.Data["json"] = br
  646. this.ServeJSON()
  647. }()
  648. user := this.User
  649. if user == nil {
  650. br.Msg = "请重新登录"
  651. br.Ret = 408
  652. return
  653. }
  654. uid := user.UserId
  655. var req models.CygxIndustryTopRep
  656. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  657. if err != nil {
  658. br.Msg = "参数解析异常!"
  659. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  660. return
  661. }
  662. industrialManagementId := req.IndustrialManagementId
  663. countIndustrial, err := models.GetIndustrialManagementCount(industrialManagementId)
  664. if err != nil {
  665. br.Msg = "获取数据失败!"
  666. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  667. return
  668. }
  669. if countIndustrial == 0 {
  670. br.Msg = "产业不存在!"
  671. br.ErrMsg = "产业ID不存在:" + strconv.Itoa(industrialManagementId)
  672. return
  673. }
  674. count, err := models.GetCygxIndustryTop(uid, industrialManagementId)
  675. if err != nil {
  676. br.Msg = "获取数据失败!"
  677. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  678. return
  679. }
  680. resp := new(models.ArticleCollectResp)
  681. if count <= 0 {
  682. item := new(models.CygxIndustryTop)
  683. item.IndustrialManagementId = req.IndustrialManagementId
  684. item.UserId = uid
  685. item.CreateTime = time.Now()
  686. _, err = models.AddCygxIndustryTop(item)
  687. if err != nil {
  688. br.Msg = "置顶失败"
  689. br.ErrMsg = "置顶失败,Err:" + err.Error()
  690. return
  691. }
  692. br.Msg = "置顶成功"
  693. resp.Status = 1
  694. } else {
  695. err = models.RemoveCygxIndustryTop(uid, industrialManagementId)
  696. if err != nil {
  697. br.Msg = "取消置顶失败"
  698. br.ErrMsg = "取消置顶失败,Err:" + err.Error()
  699. return
  700. }
  701. br.Msg = "已取消置顶"
  702. resp.Status = 2
  703. }
  704. br.Ret = 200
  705. br.Success = true
  706. br.Data = resp
  707. }
  708. // @Title 关注/取消关注产业
  709. // @Description 关注/取消关注 接口
  710. // @Param request body models.CygxIndustryFllowRep true "type json string"
  711. // @Success 200
  712. // @router /fllow [post]
  713. func (this *ReportController) Fllow() {
  714. br := new(models.BaseResponse).Init()
  715. defer func() {
  716. this.Data["json"] = br
  717. this.ServeJSON()
  718. }()
  719. user := this.User
  720. if user == nil {
  721. br.Msg = "请重新登录"
  722. br.Ret = 408
  723. return
  724. }
  725. uid := user.UserId
  726. var req models.CygxIndustryFllowRep
  727. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  728. if err != nil {
  729. br.Msg = "参数解析异常!"
  730. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  731. return
  732. }
  733. industrialManagementId := req.IndustrialManagementId
  734. var condition string
  735. countIndustrial, err := models.GetIndustrialManagementCount(industrialManagementId)
  736. if err != nil {
  737. br.Msg = "获取数据失败!"
  738. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  739. return
  740. }
  741. if countIndustrial == 0 {
  742. br.Msg = "产业不存在!"
  743. br.ErrMsg = "产业ID不存在:" + strconv.Itoa(industrialManagementId)
  744. return
  745. }
  746. count, err := models.GetCountCygxIndustryFllow(uid, industrialManagementId, condition)
  747. if err != nil {
  748. br.Msg = "获取数据失败!"
  749. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  750. return
  751. }
  752. resp := new(models.CygxIndustryFllowResp)
  753. countUser, err := models.GetCountCygxIndustryFllowByUid(uid)
  754. if countUser == 0 {
  755. resp.GoFollow = true
  756. }
  757. if count == 0 {
  758. item := new(models.CygxIndustryFllow)
  759. item.IndustrialManagementId = industrialManagementId
  760. item.UserId = uid
  761. item.Email = user.Email
  762. item.Mobile = user.Mobile
  763. item.RealName = user.RealName
  764. item.CompanyId = user.CompanyId
  765. item.CompanyName = user.CompanyName
  766. item.Type = 1
  767. item.CreateTime = time.Now()
  768. item.ModifyTime = time.Now()
  769. _, err = models.AddCygxIndustryFllow(item)
  770. if err != nil {
  771. br.Msg = "操作失败"
  772. br.ErrMsg = "操作失败,Err:" + err.Error()
  773. return
  774. }
  775. resp.Status = 1
  776. } else {
  777. err = models.RemoveCygxIndustryFllow(uid, industrialManagementId)
  778. if err != nil {
  779. br.Msg = "操作失败"
  780. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  781. return
  782. }
  783. }
  784. //处理是否关注全部赛道字段
  785. go services.IndustryFllowWithTrack(industrialManagementId, count, uid)
  786. br.Msg = "操作成功"
  787. br.Ret = 200
  788. br.Success = true
  789. br.Data = resp
  790. }
  791. // @Title 产业报告分类关联作者列表接口
  792. // @Description 获取产业报告分类关联作者列表接口
  793. // @Param ChartPermissionId query int true "分类ID"
  794. // @Param PageSize query int true "每页数据条数"
  795. // @Param CurrentIndex query int true "当前页页码,从1开始"
  796. // @Success 200 {object} models.CygxArticleDepartmentList
  797. // @router /industryListByDepartment [get]
  798. func (this *ReportController) IndustryListByDepartment() {
  799. br := new(models.BaseResponse).Init()
  800. defer func() {
  801. this.Data["json"] = br
  802. this.ServeJSON()
  803. }()
  804. user := this.User
  805. if user == nil {
  806. br.Msg = "请重新登录"
  807. br.Ret = 408
  808. return
  809. }
  810. uid := user.UserId
  811. pageSize, _ := this.GetInt("PageSize")
  812. currentIndex, _ := this.GetInt("CurrentIndex")
  813. //chartPermissionId, _ := this.GetInt("ChartPermissionId")
  814. var startSize int
  815. var condition string
  816. //condition = ` AND a.publish_status=1 AND m.chart_permission_id =` + strconv.Itoa(chartPermissionId)
  817. condition = ` AND a.publish_status=1 `
  818. if pageSize <= 0 {
  819. pageSize = utils.PageSize20
  820. }
  821. if currentIndex <= 0 {
  822. currentIndex = 1
  823. }
  824. startSize = paging.StartIndex(currentIndex, pageSize)
  825. total, err := models.GetArticleDepartmentCount(condition)
  826. page := paging.GetPaging(currentIndex, pageSize, total)
  827. resp := new(models.CygxArticleDepartmentList)
  828. userType, _, err := services.GetUserType(user.CompanyId)
  829. if err != nil {
  830. br.Msg = "获取信息失败"
  831. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  832. return
  833. }
  834. if userType == 1 {
  835. resp.Paging = page
  836. br.Ret = 200
  837. br.Success = true
  838. br.Msg = "获取成功"
  839. br.Data = resp
  840. return
  841. }
  842. resp.HaveResearch = true
  843. //获取作者信息,并排序
  844. list, err := models.GetCygxArticleDepartmentList(startSize, pageSize, condition, uid)
  845. if err != nil {
  846. br.Msg = "获取信息失败"
  847. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  848. return
  849. }
  850. for k, v := range list {
  851. artList, err := models.GetArticleByDepartmentId(v.DepartmentId)
  852. if err != nil {
  853. br.Msg = "获取信息失败"
  854. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  855. return
  856. }
  857. for k2, v2 := range artList {
  858. subjectNames, err := models.GetSubjectNames(v2.ArticleId)
  859. if err != nil {
  860. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  861. br.ErrMsg = "获取失败,Err:" + err.Error()
  862. return
  863. }
  864. var subjectNamesNew string
  865. if len(subjectNames) > 0 {
  866. slice := strings.Split(subjectNames, "/")
  867. for k3, v3 := range slice {
  868. if k3 < 4 {
  869. subjectNamesNew += v3 + "/"
  870. }
  871. }
  872. }
  873. industryName, err := models.GetIndustrialNames(v2.ArticleId)
  874. if err != nil && err.Error() != utils.ErrNoRow() {
  875. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  876. br.ErrMsg = "获取失败,Err:" + err.Error()
  877. return
  878. }
  879. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  880. artList[k2].SubjectName = subjectNamesNew
  881. artList[k2].DepartmentId = v.DepartmentId
  882. if subjectNamesNew == "" {
  883. artList[k2].IndustryName = industryName
  884. } else {
  885. artList[k2].IndustryName = industryName + "-" + subjectNamesNew
  886. }
  887. if artList[k2].IsReport == "1" {
  888. artList[k2].IndustryName = "【观点】" + artList[k2].IndustryName
  889. } else {
  890. artList[k2].IndustryName = "【纪要】" + artList[k2].IndustryName
  891. }
  892. }
  893. list[k].List = artList
  894. if v.FollowNum > 0 {
  895. list[k].IsMyFollow = true
  896. }
  897. }
  898. listnNew, err := models.GetIndustrialSubjectByDepartmentNew()
  899. if err != nil {
  900. br.Msg = "获取信息失败"
  901. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  902. return
  903. }
  904. if len(listnNew) > 0 {
  905. for _, v := range listnNew {
  906. firstStr := strings.Index(v.IndustrialAndSubjectIds, "—")
  907. Management := new(models.IndustrialManagementIdInt)
  908. if firstStr == 0 {
  909. Management.IndustryName = v.IndustryName
  910. } else {
  911. listSub, err := models.GetIndustrialManagementSubjectList(v.ArticleId)
  912. if err != nil {
  913. br.Msg = "获取信息失败"
  914. br.ErrMsg = "获取关联标的列表失败,Err:" + err.Error()
  915. return
  916. }
  917. var subjectNamesNew string
  918. for _, v1 := range listSub {
  919. subjectNamesNew += v1.SubjectName + "/"
  920. }
  921. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  922. Management.IndustryName = subjectNamesNew
  923. }
  924. Management.IndustrialManagementId = v.IndustrialManagementId
  925. Management.ArticleId = v.ArticleId
  926. resp.ListnNew = append(resp.ListnNew, Management)
  927. }
  928. }
  929. resp.List = list
  930. resp.Paging = page
  931. br.Ret = 200
  932. br.Success = true
  933. br.Msg = "获取成功"
  934. br.Data = resp
  935. }
  936. // @Title 关注作者/取消关注作者
  937. // @Description 关注作者/取消关注作者 接口
  938. // @Param request body models.CygxArticleDepartmentId true "type json string"
  939. // @Success 200
  940. // @router /fllowDepartment [post]
  941. func (this *ReportController) FllowDepartment() {
  942. br := new(models.BaseResponse).Init()
  943. defer func() {
  944. this.Data["json"] = br
  945. this.ServeJSON()
  946. }()
  947. user := this.User
  948. if user == nil {
  949. br.Msg = "请重新登录"
  950. br.Ret = 408
  951. return
  952. }
  953. uid := user.UserId
  954. var req models.CygxArticleDepartmentId
  955. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  956. if err != nil {
  957. br.Msg = "参数解析异常!"
  958. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  959. return
  960. }
  961. departmentId := req.DepartmentId
  962. var condition string
  963. countDepartment, err := models.GetDepartmentCount(departmentId)
  964. if err != nil {
  965. br.Msg = "获取数据失败!"
  966. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  967. return
  968. }
  969. if countDepartment == 0 {
  970. br.Msg = "作者不存在!"
  971. br.ErrMsg = "作者ID不存在:" + strconv.Itoa(departmentId)
  972. return
  973. }
  974. countUser, err := models.GetArticleDepartmentFollowByUid(uid)
  975. count, err := models.GetArticleDepartmentFollow(uid, departmentId, condition)
  976. if err != nil {
  977. br.Msg = "获取数据失败!"
  978. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  979. return
  980. }
  981. resp := new(models.CygxArticleDepartmentFollowResp)
  982. if countUser == 0 {
  983. resp.GoFollow = true
  984. }
  985. if count == 0 {
  986. item := new(models.CygxArticleDepartmentFollow)
  987. item.DepartmentId = departmentId
  988. item.UserId = uid
  989. item.Email = user.Email
  990. item.Mobile = user.Mobile
  991. item.RealName = user.RealName
  992. item.CompanyId = user.CompanyId
  993. item.CompanyName = user.CompanyName
  994. item.Type = 1
  995. item.CreateTime = time.Now()
  996. item.ModifyTime = time.Now()
  997. _, err = models.AddArticleDepartmentFollow(item)
  998. if err != nil {
  999. br.Msg = "操作失败"
  1000. br.ErrMsg = "操作失败,Err:" + err.Error()
  1001. return
  1002. }
  1003. resp.Status = 1
  1004. } else {
  1005. var doType int
  1006. condition = ` AND type = 1`
  1007. count, err = models.GetArticleDepartmentFollow(uid, departmentId, condition)
  1008. if err != nil {
  1009. br.Msg = "操作失败!"
  1010. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1011. return
  1012. }
  1013. if count == 1 {
  1014. resp.Status = 2
  1015. doType = 2
  1016. } else {
  1017. resp.Status = 1
  1018. doType = 1
  1019. }
  1020. err = models.RemoveArticleDepartmentFollow(uid, departmentId, doType)
  1021. if err != nil {
  1022. br.Msg = "操作失败"
  1023. br.ErrMsg = "取消关注失败,Err:" + err.Error()
  1024. return
  1025. }
  1026. }
  1027. br.Msg = "操作成功"
  1028. br.Ret = 200
  1029. br.Success = true
  1030. br.Data = resp
  1031. }
  1032. // @Title 研选文章列表接口
  1033. // @Description 获取研选文章列表接口
  1034. // @Param PageSize query int true "每页数据条数"
  1035. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1036. // @Param ArticleId query int true "文章id"
  1037. // @Param DepartmentId query int true "作者ID"
  1038. // @Param IndustrialManagementId query int true "产业ID"
  1039. // @Success 200 {object} models.ReportArticleWhichIndustrialRepList
  1040. // @router /industry/reportList [get]
  1041. func (this *ReportController) ReportList() {
  1042. br := new(models.BaseResponse).Init()
  1043. defer func() {
  1044. this.Data["json"] = br
  1045. this.ServeJSON()
  1046. }()
  1047. user := this.User
  1048. if user == nil {
  1049. br.Msg = "请重新登录"
  1050. br.Ret = 408
  1051. return
  1052. }
  1053. uid := user.UserId
  1054. pageSize, _ := this.GetInt("PageSize")
  1055. currentIndex, _ := this.GetInt("CurrentIndex")
  1056. departmentId, _ := this.GetInt("DepartmentId")
  1057. industrialManagementId, _ := this.GetInt("IndustrialManagementId")
  1058. articleId, _ := this.GetInt("ArticleId")
  1059. var condition string
  1060. var startSize int
  1061. if pageSize <= 0 {
  1062. pageSize = utils.PageSize20
  1063. }
  1064. if currentIndex <= 0 {
  1065. currentIndex = 1
  1066. }
  1067. startSize = paging.StartIndex(currentIndex, pageSize)
  1068. var pars []interface{}
  1069. var total int
  1070. resp := new(models.ReportArticleWhichIndustrialRepList)
  1071. page := paging.GetPaging(currentIndex, pageSize, total)
  1072. userType, _, err := services.GetUserType(user.CompanyId)
  1073. if err != nil {
  1074. br.Msg = "获取信息失败"
  1075. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1076. return
  1077. }
  1078. if userType == 1 {
  1079. resp.Paging = page
  1080. br.Ret = 200
  1081. br.Success = true
  1082. br.Msg = "获取成功"
  1083. br.Data = resp
  1084. return
  1085. }
  1086. resp.HaveResearch = true
  1087. if departmentId > 0 {
  1088. condition += ` AND art.department_id = ` + strconv.Itoa(departmentId)
  1089. detail, err := models.GetArticleDepartmentDateilById(departmentId)
  1090. if err != nil {
  1091. br.Msg = "获取信息失败"
  1092. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1093. return
  1094. }
  1095. resp.NickName = detail.NickName
  1096. }
  1097. if industrialManagementId > 0 {
  1098. condition += ` AND m.industrial_management_id = ` + strconv.Itoa(industrialManagementId)
  1099. }
  1100. if articleId > 0 {
  1101. detail, err := models.GetArticleDetailById(articleId)
  1102. if err != nil {
  1103. br.Msg = "获取信息失败"
  1104. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1105. return
  1106. }
  1107. condition += ` AND art.subject_ids = '` + detail.SubjectIds + `'`
  1108. }
  1109. total, err = models.GetWhichDepartmentCount(condition)
  1110. if err != nil {
  1111. br.Msg = "获取信息失败"
  1112. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1113. return
  1114. }
  1115. page = paging.GetPaging(currentIndex, pageSize, total)
  1116. condition += ` GROUP BY art.article_id ORDER BY art.publish_date DESC`
  1117. list, err := models.IndustrialToArticleWhichDepartment(condition, pars, uid, startSize, pageSize)
  1118. if err != nil {
  1119. br.Msg = "获取失败"
  1120. br.ErrMsg = "获取失败,Err:" + err.Error()
  1121. return
  1122. }
  1123. for k, v := range list {
  1124. if v.Readnum == 0 {
  1125. list[k].IsRed = true
  1126. }
  1127. list[k].IsResearch = true
  1128. subjectNames, err := models.GetSubjectNames(v.ArticleId)
  1129. if err != nil {
  1130. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1131. br.ErrMsg = "获取失败,Err:" + err.Error()
  1132. return
  1133. }
  1134. var subjectNamesNew string
  1135. if len(subjectNames) > 0 {
  1136. slice := strings.Split(subjectNames, "/")
  1137. for k3, v3 := range slice {
  1138. if k3 < 4 {
  1139. subjectNamesNew += v3 + "/"
  1140. }
  1141. }
  1142. }
  1143. industryName, err := models.GetIndustrialNames(v.ArticleId)
  1144. if err != nil && err.Error() != utils.ErrNoRow() {
  1145. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1146. br.ErrMsg = "获取失败,Err:" + err.Error()
  1147. return
  1148. }
  1149. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1150. list[k].SubjectName = subjectNamesNew
  1151. if subjectNamesNew != "" {
  1152. list[k].IndustryName = industryName + "-" + subjectNamesNew
  1153. } else {
  1154. list[k].IndustryName = industryName
  1155. }
  1156. resp.IndustryName = industryName
  1157. list[k].ImgUrlPc = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202112/20211206/UvMadc63MLZY6rnQZQgGZAFXkqwf.png"
  1158. }
  1159. resp.List = list
  1160. resp.Paging = page
  1161. br.Ret = 200
  1162. br.Success = true
  1163. br.Msg = "获取成功"
  1164. br.Data = resp
  1165. }
  1166. // @Title 研选最新主题关键词文章列表接口
  1167. // @Description 获取研选最新主题关键词文章列表接口
  1168. // @Param PageSize query int true "每页数据条数"
  1169. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1170. // @Param ArticleId query int true "文章id"
  1171. // @Success 200 {object} models.ReportArticleWhichIndustrialRepList
  1172. // @router /industry/reportListNew [get]
  1173. func (this *ReportController) ReportListNew() {
  1174. br := new(models.BaseResponse).Init()
  1175. defer func() {
  1176. this.Data["json"] = br
  1177. this.ServeJSON()
  1178. }()
  1179. user := this.User
  1180. if user == nil {
  1181. br.Msg = "请重新登录"
  1182. br.Ret = 408
  1183. return
  1184. }
  1185. uid := user.UserId
  1186. pageSize, _ := this.GetInt("PageSize")
  1187. currentIndex, _ := this.GetInt("CurrentIndex")
  1188. articleId, _ := this.GetInt("ArticleId")
  1189. var condition string
  1190. var startSize int
  1191. if pageSize <= 0 {
  1192. pageSize = utils.PageSize20
  1193. }
  1194. if currentIndex <= 0 {
  1195. currentIndex = 1
  1196. }
  1197. startSize = paging.StartIndex(currentIndex, pageSize)
  1198. var pars []interface{}
  1199. var total int
  1200. resp := new(models.ReportArticleWhichIndustrialRepList)
  1201. page := paging.GetPaging(currentIndex, pageSize, total)
  1202. userType, _, err := services.GetUserType(user.CompanyId)
  1203. if err != nil {
  1204. br.Msg = "获取信息失败"
  1205. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  1206. return
  1207. }
  1208. if userType == 1 {
  1209. resp.Paging = page
  1210. br.Ret = 200
  1211. br.Success = true
  1212. br.Msg = "获取成功"
  1213. br.Data = resp
  1214. return
  1215. }
  1216. resp.HaveResearch = true
  1217. if articleId > 0 {
  1218. detail, err := models.GetArticleDetailById(articleId)
  1219. if err != nil {
  1220. br.Msg = "获取信息失败"
  1221. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1222. return
  1223. }
  1224. firstStr := strings.Index(detail.IndustrialAndSubjectIds, "—")
  1225. if firstStr == 0 {
  1226. condition += ` AND art.industrial_management_id = '` + strconv.Itoa(detail.IndustrialManagementId) + `'`
  1227. } else {
  1228. condition += ` AND art.industrial_and_subject_ids = '` + detail.IndustrialAndSubjectIds + `'`
  1229. }
  1230. }
  1231. total, err = models.GetWhichDepartmentCount(condition)
  1232. if err != nil {
  1233. br.Msg = "获取信息失败"
  1234. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1235. return
  1236. }
  1237. page = paging.GetPaging(currentIndex, pageSize, total)
  1238. condition += ` GROUP BY art.article_id ORDER BY art.publish_date DESC`
  1239. list, err := models.IndustrialToArticleWhichDepartment(condition, pars, uid, startSize, pageSize)
  1240. if err != nil {
  1241. br.Msg = "获取失败"
  1242. br.ErrMsg = "获取失败,Err:" + err.Error()
  1243. return
  1244. }
  1245. for k, v := range list {
  1246. if v.Readnum == 0 {
  1247. list[k].IsRed = true
  1248. }
  1249. list[k].IsResearch = true
  1250. list[k].ImgUrlPc = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202112/20211206/UvMadc63MLZY6rnQZQgGZAFXkqwf.png"
  1251. subjectNames, err := models.GetSubjectNames(v.ArticleId)
  1252. if err != nil {
  1253. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1254. br.ErrMsg = "获取失败,Err:" + err.Error()
  1255. return
  1256. }
  1257. var subjectNamesNew string
  1258. if len(subjectNames) > 0 {
  1259. slice := strings.Split(subjectNames, "/")
  1260. for k3, v3 := range slice {
  1261. if k3 < 4 {
  1262. subjectNamesNew += v3 + "/"
  1263. }
  1264. }
  1265. }
  1266. industryName, err := models.GetIndustrialNames(v.ArticleId)
  1267. if err != nil && err.Error() != utils.ErrNoRow() {
  1268. br.Msg = "获取失败" + strconv.Itoa(v.ArticleId)
  1269. br.ErrMsg = "获取失败,Err:" + err.Error()
  1270. return
  1271. }
  1272. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  1273. list[k].SubjectName = subjectNamesNew
  1274. if subjectNamesNew != "" {
  1275. list[k].IndustryName = industryName + "-" + subjectNamesNew
  1276. } else {
  1277. list[k].IndustryName = industryName
  1278. }
  1279. resp.IndustryName = industryName
  1280. }
  1281. resp.List = list
  1282. resp.Paging = page
  1283. br.Ret = 200
  1284. br.Success = true
  1285. br.Msg = "获取成功"
  1286. br.Data = resp
  1287. }
  1288. // @Title 是否展示绝密内参
  1289. // @Description 获取是否展示绝密内参接口
  1290. // @Param request body models.IsShow true "type json string"
  1291. // @Success 200
  1292. // @router /isShow [get]
  1293. func (this *ReportController) IsShow() {
  1294. br := new(models.BaseResponse).Init()
  1295. defer func() {
  1296. this.Data["json"] = br
  1297. this.ServeJSON()
  1298. }()
  1299. user := this.User
  1300. if user == nil {
  1301. br.Msg = "请重新登录"
  1302. br.Ret = 408
  1303. return
  1304. }
  1305. var resp models.IsShow
  1306. IsShowFreeButton, err := services.GetfreeButtonIsShow(user)
  1307. if err != nil {
  1308. br.Msg = "获取失败"
  1309. br.ErrMsg = "获取失败,GetfreeButtonIsShow Err:" + err.Error()
  1310. return
  1311. }
  1312. resp.IsShowChart = true
  1313. //resp.IsShowResearch = true
  1314. resp.LinkWxExplain = utils.LINK_WX_EXPLAIN
  1315. resp.ActivitySpecialExplain = utils.ACTIVITY_SPECIAL_EXPLAIN
  1316. //resp.YanXuan_Explain = true
  1317. resp.IsShowFreeButton = IsShowFreeButton
  1318. //mobile := user.Mobile
  1319. //if mobile == "" {
  1320. // br.Ret = 200
  1321. // br.Success = true
  1322. // br.Data = resp
  1323. // return
  1324. //}
  1325. //total, _ := models.GetUserIsAdminCount(mobile)
  1326. //if total > 0 {
  1327. // resp.IsShowList = true
  1328. //}
  1329. resp.IsShowList = true
  1330. resp.SearchTxtList.SummarySearch = "全局搜索"
  1331. resp.SearchTxtList.ReportSearch = "全局搜索"
  1332. resp.SearchTxtList.YanXuanSearch = "全局搜索"
  1333. resp.SearchTxtList.ActivitySearch = "全局搜索"
  1334. resp.SearchTxtList.TabSearch = "请输入关键词"
  1335. resp.IsShow = true
  1336. br.Ret = 200
  1337. br.Success = true
  1338. br.Data = resp
  1339. }
  1340. // @Title 报告精选、本周研究汇总、上周纪要汇总列表
  1341. // @Description 获取报告精选、本周研究汇总、上周纪要汇总列表接口
  1342. // @Param PageSize query int true "每页数据条数"
  1343. // @Param CurrentIndex query int true "当前页页码,从1开始"
  1344. // @Param ReportType string query true "报告类型 ,1报告精选、2本周研究汇总、3上周纪要汇总"
  1345. // @Success 200 {object} models.CygxReportSelectionListPublicRep
  1346. // @router /reportList/byType [get]
  1347. func (this *ReportController) ReportListByType() {
  1348. br := new(models.BaseResponse).Init()
  1349. defer func() {
  1350. this.Data["json"] = br
  1351. this.ServeJSON()
  1352. }()
  1353. user := this.User
  1354. if user == nil {
  1355. br.Msg = "请重新登录"
  1356. br.Ret = 408
  1357. return
  1358. }
  1359. uid := user.UserId
  1360. pageSize, _ := this.GetInt("PageSize")
  1361. currentIndex, _ := this.GetInt("CurrentIndex")
  1362. reportType := this.GetString("ReportType")
  1363. var condition string
  1364. var startSize int
  1365. if pageSize <= 0 {
  1366. pageSize = utils.PageSize20
  1367. }
  1368. if currentIndex <= 0 {
  1369. currentIndex = 1
  1370. }
  1371. startSize = paging.StartIndex(currentIndex, pageSize)
  1372. var pars []interface{}
  1373. var total int
  1374. resp := new(models.CygxReportSelectionListPublicRep)
  1375. page := paging.GetPaging(currentIndex, pageSize, total)
  1376. var tbdb string
  1377. var readSql string
  1378. var reportTypeStr string
  1379. if reportType == "1" {
  1380. tbdb = "cygx_report_selection"
  1381. reportTypeStr = "bgjx"
  1382. } else if reportType == "2" {
  1383. tbdb = "cygx_research_summary"
  1384. reportTypeStr = "bzyjhz"
  1385. } else if reportType == "3" {
  1386. tbdb = "cygx_minutes_summary"
  1387. reportTypeStr = "szjyhz"
  1388. } else {
  1389. br.Msg = "请选择报告类型"
  1390. return
  1391. }
  1392. fmt.Println(tbdb)
  1393. condition = ` AND publish_status = 1 `
  1394. total, err := models.GetCygxReportSelectionPublic(condition, tbdb, pars)
  1395. if err != nil {
  1396. br.Msg = "获取信息失败"
  1397. br.ErrMsg = "获取帖子总数失败,Err:" + err.Error()
  1398. return
  1399. }
  1400. //研究汇总--报告精选 只显示最新一期,往期都隐藏
  1401. if reportType == "1" {
  1402. startSize = 0
  1403. pageSize = 1
  1404. total = 1
  1405. }
  1406. readSql = ` (SELECT COUNT(1) AS count FROM cygx_report_history_record AS h WHERE h.article_id = art.article_id AND report_type ='` + reportTypeStr + `' AND h.user_id = ` + strconv.Itoa(uid) + `) as read_num`
  1407. page = paging.GetPaging(currentIndex, pageSize, total)
  1408. list, err := models.GetReportSelectionListPublic(condition, readSql, tbdb, pars, startSize, pageSize)
  1409. if err != nil {
  1410. br.Msg = "获取失败"
  1411. br.ErrMsg = "获取失败,Err:" + err.Error()
  1412. return
  1413. }
  1414. for k, v := range list {
  1415. if reportType == "1" {
  1416. list[k].Abstract = v.UpdateDescription
  1417. }
  1418. list[k].PublishDate = utils.StrTimeToTime(v.PublishDate).Format("2006-01-02")
  1419. if v.ReadNum == 0 {
  1420. list[k].IsRed = true
  1421. }
  1422. }
  1423. resp.List = list
  1424. resp.Paging = page
  1425. br.Ret = 200
  1426. br.Success = true
  1427. br.Msg = "获取成功"
  1428. br.Data = resp
  1429. }
  1430. // @Title 获取报告精选详情
  1431. // @Description 获取报告精选详情接口
  1432. // @Param ArticleId query int true "报告ID"
  1433. // @Success 200 {object} models.ReportSelectionLetailResp
  1434. // @router /reportSelection/detail [get]
  1435. func (this *ReportController) Detail() {
  1436. br := new(models.BaseResponse).Init()
  1437. defer func() {
  1438. this.Data["json"] = br
  1439. this.ServeJSON()
  1440. }()
  1441. user := this.User
  1442. if user == nil {
  1443. br.Msg = "请重新登录"
  1444. br.Ret = 408
  1445. return
  1446. }
  1447. uid := user.UserId
  1448. articleId, _ := this.GetInt("ArticleId")
  1449. if articleId < 0 {
  1450. br.Msg = "参数错误"
  1451. br.ErrMsg = "参数错误"
  1452. return
  1453. }
  1454. resp := new(models.ReportSelectionLetailResp)
  1455. //判断用户权限
  1456. hasPermission, err := services.GetUserhasPermission(user)
  1457. if err != nil {
  1458. br.Msg = "获取信息失败"
  1459. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1460. }
  1461. resp.HasPermission = hasPermission
  1462. if hasPermission != 1 {
  1463. br.Ret = 200
  1464. br.Success = true
  1465. br.Msg = "获取成功"
  1466. br.Data = resp
  1467. return
  1468. }
  1469. detail, err := models.GetCygxReportSelectionInfoById(articleId)
  1470. if err != nil {
  1471. br.Msg = "获取信息失败"
  1472. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1473. return
  1474. }
  1475. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1476. existMap := make(map[int]int)
  1477. var items []*models.ReportSelectionChartPermission
  1478. listLog, err := models.GetReportSelectionlogListAll(articleId)
  1479. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1480. if err != nil {
  1481. br.Msg = "获取失败"
  1482. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1483. return
  1484. }
  1485. //var itemLogs []*models.CygxReportSelectionLogDetail
  1486. for _, v := range listLog {
  1487. item := new(models.ReportSelectionChartPermission)
  1488. if existMap[v.ChartPermissionId] == 0 {
  1489. item.PermissionName = v.PermissionName + "领域深度报告和调研"
  1490. item.IcoLink = v.IcoLink
  1491. listSonLog, err := models.GetReportSelectionlogSonListAll(articleId, v.ChartPermissionId)
  1492. if err != nil && err.Error() != utils.ErrNoRow() {
  1493. br.Msg = "获取信息失败"
  1494. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1495. return
  1496. }
  1497. for k2, v2 := range listSonLog {
  1498. if v2.IndustrialManagementId != "" {
  1499. listIndustrial, err := models.GetIndustrialByIds(v2.IndustrialManagementId)
  1500. if err != nil && err.Error() != utils.ErrNoRow() {
  1501. br.Msg = "获取信息失败"
  1502. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1503. return
  1504. }
  1505. listSonLog[k2].List = listIndustrial
  1506. }
  1507. }
  1508. item.List = listSonLog
  1509. items = append(items, item)
  1510. //itemLogs = make([]*models.CygxReportSelectionLogDetail, 0)
  1511. }
  1512. existMap[v.ChartPermissionId] = v.ChartPermissionId
  1513. }
  1514. historyRecord := new(models.CygxReportHistoryRecord)
  1515. historyRecord.UserId = uid
  1516. historyRecord.ArticleId = articleId
  1517. historyRecord.CreateTime = time.Now()
  1518. historyRecord.Mobile = user.Mobile
  1519. historyRecord.Email = user.Email
  1520. historyRecord.CompanyId = user.CompanyId
  1521. historyRecord.CompanyName = user.CompanyName
  1522. historyRecord.ReportType = "bgjx"
  1523. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1524. if err != nil && err.Error() != utils.ErrNoRow() {
  1525. br.Msg = "获取信息失败"
  1526. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1527. return
  1528. }
  1529. historyRecord.RealName = user.RealName
  1530. if sellerItem != nil {
  1531. historyRecord.SellerName = sellerItem.RealName
  1532. }
  1533. go models.AddCygxReportHistoryRecord(historyRecord)
  1534. resp.List = items
  1535. resp.Detail = detail
  1536. br.Ret = 200
  1537. br.Success = true
  1538. br.Msg = "获取成功"
  1539. br.Data = resp
  1540. }
  1541. // @Title 获取本周研究汇总详情
  1542. // @Description 获取本周研究汇总详情接口
  1543. // @Param ArticleId query int true "报告ID"
  1544. // @Success 200 {object} models.ResearchSummaryLetailResp
  1545. // @router /researchSummary/detail [get]
  1546. func (this *ReportController) ResearchDetail() {
  1547. br := new(models.BaseResponse).Init()
  1548. defer func() {
  1549. this.Data["json"] = br
  1550. this.ServeJSON()
  1551. }()
  1552. user := this.User
  1553. if user == nil {
  1554. br.Msg = "请重新登录"
  1555. br.Ret = 408
  1556. return
  1557. }
  1558. uid := user.UserId
  1559. articleId, _ := this.GetInt("ArticleId")
  1560. if articleId < 0 {
  1561. br.Msg = "参数错误"
  1562. br.ErrMsg = "参数错误"
  1563. return
  1564. }
  1565. resp := new(models.ResearchSummaryLetailResp)
  1566. //判断用户权限
  1567. hasPermission, err := services.GetUserhasPermission(user)
  1568. if err != nil {
  1569. br.Msg = "获取信息失败"
  1570. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1571. }
  1572. resp.HasPermission = hasPermission
  1573. if hasPermission != 1 {
  1574. br.Ret = 200
  1575. br.Success = true
  1576. br.Msg = "获取成功"
  1577. br.Data = resp
  1578. return
  1579. }
  1580. detail, err := models.GetCygxResearchSummaryInfoById(articleId)
  1581. if err != nil {
  1582. br.Msg = "获取信息失败"
  1583. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1584. return
  1585. }
  1586. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format(utils.FormatDate)
  1587. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1588. listFirst, err := models.GetResearchSummarylogListFirst(articleId)
  1589. if err != nil {
  1590. br.Msg = "获取失败"
  1591. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1592. return
  1593. }
  1594. listArticleType, err := models.GetCygxArticleTypeList()
  1595. if err != nil {
  1596. br.Msg = "获取失败"
  1597. br.ErrMsg = "获取文章类型数据失败,Err:" + err.Error()
  1598. return
  1599. }
  1600. for k, v := range listFirst {
  1601. listSecond, err := models.GetResearchSummarylogSonListSecond(articleId, v.Type)
  1602. if err != nil && err.Error() != utils.ErrNoRow() {
  1603. br.Msg = "获取信息失败"
  1604. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1605. return
  1606. }
  1607. for k2, v2 := range listSecond {
  1608. listThird, err := models.GetResearchSummarylogSonListThird(articleId, v2.ChartPermissionId, v.Type)
  1609. if err != nil && err.Error() != utils.ErrNoRow() {
  1610. br.Msg = "获取信息失败"
  1611. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1612. return
  1613. }
  1614. for _, vType := range listArticleType {
  1615. if v2.ChartPermissionId == vType.YanxPermissionId {
  1616. listSecond[k2].IcoLink = vType.IcoLinkM
  1617. listSecond[k2].PermissionName = vType.YanxPermissionName
  1618. }
  1619. }
  1620. //if v2.ChartPermissionId == utils.YanxSummaryPermissionId {
  1621. // listSecond[k2].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1622. // listSecond[k2].PermissionName = "买方研选纪要"
  1623. //} else if v2.ChartPermissionId == utils.YanxViewpointPermissionId {
  1624. // listSecond[k2].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1625. // listSecond[k2].PermissionName = "买方研选观点"
  1626. //}
  1627. if len(listThird) > 0 {
  1628. for k3, v3 := range listThird {
  1629. if v3.VideoUrl != "" {
  1630. listThird[k3].IsHaveVideo = true
  1631. }
  1632. if v3.ReportLink == "0" {
  1633. listThird[k3].ReportLink = ""
  1634. }
  1635. }
  1636. listSecond[k2].List = listThird
  1637. }
  1638. }
  1639. if len(listSecond) > 0 {
  1640. listFirst[k].List = listSecond
  1641. }
  1642. //`description:"类型'SDBG深度报告片篇,’CYDYJY:产业调研纪要’,’SJDP事件点评,’BZCHJH:本周晨会精华’"`
  1643. if v.Type == "SDBG" {
  1644. listFirst[k].ListName = "深度报告"
  1645. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211027/le8AcRjDz0MhA72bVDiaf3d5ALSe.png"
  1646. } else if v.Type == "BZCHJH" {
  1647. listFirst[k].ListName = "本周晨会精华"
  1648. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/DCfekcxaIKGePBsNVu1ULfmNcJBY.png"
  1649. } else if v.Type == "CYDYJY" {
  1650. listFirst[k].ListName = "产业调研纪要"
  1651. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/UPAdozy96z9ypzY04vi0Y3Ogqzji.png"
  1652. } else if v.Type == "SSGS" {
  1653. listFirst[k].ListName = "上市公司调研纪要篇"
  1654. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211101/ujHXB48I8ay9T0XoPRI7lorz7OkL.png"
  1655. } else if v.Type == "SJDP" {
  1656. listFirst[k].ListName = "事件点评"
  1657. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/2a5cXafO3Iws4QcFp1bd5WPdYikV.png"
  1658. } else if v.Type == "YANX" {
  1659. listFirst[k].ListName = "买方研选"
  1660. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1661. }
  1662. }
  1663. historyRecord := new(models.CygxReportHistoryRecord)
  1664. historyRecord.UserId = uid
  1665. historyRecord.ArticleId = articleId
  1666. historyRecord.CreateTime = time.Now()
  1667. historyRecord.Mobile = user.Mobile
  1668. historyRecord.Email = user.Email
  1669. historyRecord.CompanyId = user.CompanyId
  1670. historyRecord.CompanyName = user.CompanyName
  1671. historyRecord.ReportType = "bzyjhz"
  1672. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1673. if err != nil && err.Error() != utils.ErrNoRow() {
  1674. br.Msg = "获取信息失败"
  1675. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1676. return
  1677. }
  1678. historyRecord.RealName = user.RealName
  1679. if sellerItem != nil {
  1680. historyRecord.SellerName = sellerItem.RealName
  1681. }
  1682. go models.AddCygxReportHistoryRecord(historyRecord)
  1683. resp.List = listFirst
  1684. resp.Detail = detail
  1685. br.Ret = 200
  1686. br.Success = true
  1687. br.Msg = "获取成功"
  1688. br.Data = resp
  1689. }
  1690. // @Title 上周纪要汇总内容详情
  1691. // @Description 获取上周纪要汇总内容详情接口
  1692. // @Param ArticleId query int true "报告ID"
  1693. // @Success 200 {object} models.MinutesSummaryLetailResp
  1694. // @router /minutesSummary/detailv4 [get]
  1695. func (this *ReportController) MinutesDetailV4() {
  1696. br := new(models.BaseResponse).Init()
  1697. defer func() {
  1698. this.Data["json"] = br
  1699. this.ServeJSON()
  1700. }()
  1701. user := this.User
  1702. if user == nil {
  1703. br.Msg = "请重新登录"
  1704. br.Ret = 408
  1705. return
  1706. }
  1707. uid := user.UserId
  1708. articleId, _ := this.GetInt("ArticleId")
  1709. if articleId < 0 {
  1710. br.Msg = "参数错误"
  1711. br.ErrMsg = "参数错误"
  1712. return
  1713. }
  1714. resp := new(models.MinutesSummaryLetailRespV4)
  1715. //判断用户权限
  1716. hasPermission, err := services.GetUserhasPermission(user)
  1717. if err != nil {
  1718. br.Msg = "获取信息失败"
  1719. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1720. }
  1721. resp.HasPermission = hasPermission
  1722. if hasPermission != 1 {
  1723. br.Ret = 200
  1724. br.Success = true
  1725. br.Msg = "获取成功"
  1726. br.Data = resp
  1727. return
  1728. }
  1729. detail, err := models.GetCygxMinutesSummaryInfoById(articleId)
  1730. if err != nil {
  1731. br.Msg = "获取信息失败"
  1732. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1733. return
  1734. }
  1735. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format(utils.FormatDate)
  1736. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1737. listFirst, err := models.GetMinutesSummarylogListAllV4(articleId)
  1738. if err != nil {
  1739. br.Msg = "获取失败"
  1740. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1741. return
  1742. }
  1743. for k, v := range listFirst {
  1744. listSecond, err := models.GetMinutesSummarylogSonListSecond(articleId, v.Type)
  1745. if err != nil && err.Error() != utils.ErrNoRow() {
  1746. br.Msg = "获取信息失败"
  1747. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1748. return
  1749. }
  1750. for k2, v2 := range listSecond {
  1751. listThird, err := models.GetMinutesSummarylogListThird(articleId, v2.ChartPermissionId, v.Type)
  1752. if err != nil && err.Error() != utils.ErrNoRow() {
  1753. br.Msg = "获取信息失败"
  1754. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1755. return
  1756. }
  1757. if len(listThird) > 0 {
  1758. for k3, v3 := range listThird {
  1759. if v3.VideoUrl != "" {
  1760. listThird[k3].IsHaveVideo = true
  1761. }
  1762. if v3.ReportLink == "0" {
  1763. listThird[k3].ReportLink = ""
  1764. }
  1765. }
  1766. listSecond[k2].List = listThird
  1767. }
  1768. }
  1769. if len(listSecond) > 0 {
  1770. listFirst[k].List = listSecond
  1771. }
  1772. //`description:"类型'SDBG深度报告片篇,’CYDYJY:产业调研纪要’,’SJDP事件点评,’BZCHJH:本周晨会精华’"`
  1773. if v.Type == "CYDYJY" {
  1774. listFirst[k].ListName = "产业调研纪要"
  1775. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202110/20211020/UPAdozy96z9ypzY04vi0Y3Ogqzji.png"
  1776. } else if v.Type == "SSGS" {
  1777. listFirst[k].ListName = "上市公司调研纪要篇"
  1778. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211101/ujHXB48I8ay9T0XoPRI7lorz7OkL.png"
  1779. } else if v.Type == "YANX" {
  1780. listFirst[k].ListName = "买方研选纪要"
  1781. listFirst[k].IcoLink = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202111/20211104/QbTGTNhD9MxYp24cJ7V5WpCN0oNl.png"
  1782. }
  1783. }
  1784. historyRecord := new(models.CygxReportHistoryRecord)
  1785. historyRecord.UserId = uid
  1786. historyRecord.ArticleId = articleId
  1787. historyRecord.CreateTime = time.Now()
  1788. historyRecord.Mobile = user.Mobile
  1789. historyRecord.Email = user.Email
  1790. historyRecord.CompanyId = user.CompanyId
  1791. historyRecord.CompanyName = user.CompanyName
  1792. historyRecord.ReportType = "szjyhz"
  1793. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1794. if err != nil && err.Error() != utils.ErrNoRow() {
  1795. br.Msg = "获取信息失败"
  1796. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1797. return
  1798. }
  1799. historyRecord.RealName = user.RealName
  1800. if sellerItem != nil {
  1801. historyRecord.SellerName = sellerItem.RealName
  1802. }
  1803. go models.AddCygxReportHistoryRecord(historyRecord)
  1804. resp.List = listFirst
  1805. resp.Detail = detail
  1806. br.Ret = 200
  1807. br.Success = true
  1808. br.Msg = "获取成功"
  1809. br.Data = resp
  1810. }
  1811. // @Title 上周纪要汇总内容详情
  1812. // @Description 获取上周纪要汇总内容详情接口
  1813. // @Param ArticleId query int true "报告ID"
  1814. // @Success 200 {object} models.MinutesSummaryLetailResp
  1815. // @router /minutesSummary/detail [get]
  1816. func (this *ReportController) MinutesDetail() {
  1817. br := new(models.BaseResponse).Init()
  1818. defer func() {
  1819. this.Data["json"] = br
  1820. this.ServeJSON()
  1821. }()
  1822. user := this.User
  1823. if user == nil {
  1824. br.Msg = "请重新登录"
  1825. br.Ret = 408
  1826. return
  1827. }
  1828. uid := user.UserId
  1829. articleId, _ := this.GetInt("ArticleId")
  1830. if articleId < 0 {
  1831. br.Msg = "参数错误"
  1832. br.ErrMsg = "参数错误"
  1833. return
  1834. }
  1835. resp := new(models.MinutesSummaryLetailResp)
  1836. //判断用户权限
  1837. hasPermission, err := services.GetUserhasPermission(user)
  1838. if err != nil {
  1839. br.Msg = "获取信息失败"
  1840. br.ErrMsg = "获取用户权限信息失败,Err:" + err.Error()
  1841. }
  1842. resp.HasPermission = hasPermission
  1843. if hasPermission != 1 {
  1844. br.Ret = 200
  1845. br.Success = true
  1846. br.Msg = "获取成功"
  1847. br.Data = resp
  1848. return
  1849. }
  1850. detail, err := models.GetCygxMinutesSummaryInfoById(articleId)
  1851. if err != nil {
  1852. br.Msg = "获取信息失败"
  1853. br.ErrMsg = "报告不存在,Err:" + err.Error() + "articleId:" + strconv.Itoa(articleId)
  1854. return
  1855. }
  1856. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1857. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1858. listLog, err := models.GetMinutesSummarylogListAll(articleId)
  1859. if err != nil {
  1860. br.Msg = "获取失败"
  1861. br.ErrMsg = "获取子类信息失败,Err:" + err.Error()
  1862. return
  1863. }
  1864. for k, v := range listLog {
  1865. listSonLog, err := models.GetMinutesSummarylogSonListAll(articleId, v.ChartPermissionId)
  1866. if err != nil && err.Error() != utils.ErrNoRow() {
  1867. br.Msg = "获取信息失败"
  1868. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1869. return
  1870. }
  1871. if len(listSonLog) > 0 {
  1872. listLog[k].List = listSonLog
  1873. for k2, v2 := range listSonLog {
  1874. if v2.ReportLink == "0" {
  1875. listSonLog[k2].ReportLink = ""
  1876. }
  1877. }
  1878. }
  1879. }
  1880. historyRecord := new(models.CygxReportHistoryRecord)
  1881. historyRecord.UserId = uid
  1882. historyRecord.ArticleId = articleId
  1883. historyRecord.CreateTime = time.Now()
  1884. historyRecord.Mobile = user.Mobile
  1885. historyRecord.Email = user.Email
  1886. historyRecord.CompanyId = user.CompanyId
  1887. historyRecord.CompanyName = user.CompanyName
  1888. historyRecord.ReportType = "szjyhz"
  1889. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  1890. if err != nil && err.Error() != utils.ErrNoRow() {
  1891. br.Msg = "获取信息失败"
  1892. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1893. return
  1894. }
  1895. historyRecord.RealName = user.RealName
  1896. if sellerItem != nil {
  1897. historyRecord.SellerName = sellerItem.RealName
  1898. }
  1899. go models.AddCygxReportHistoryRecord(historyRecord)
  1900. resp.List = listLog
  1901. resp.Detail = detail
  1902. br.Ret = 200
  1903. br.Success = true
  1904. br.Msg = "获取成功"
  1905. br.Data = resp
  1906. }
  1907. // @Title 获取路演精华详情
  1908. // @Description 获取路演精华详情接口
  1909. // @Param ArticleId query int true "报告ID"
  1910. // @Success 200 {object} models.RoadshowDetailResp
  1911. // @router /roadshowEssence/detail [get]
  1912. func (this *ReportController) RoadshowDetail() {
  1913. br := new(models.BaseResponse).Init()
  1914. defer func() {
  1915. this.Data["json"] = br
  1916. this.ServeJSON()
  1917. }()
  1918. user := this.User
  1919. if user == nil {
  1920. br.Msg = "请登录"
  1921. br.ErrMsg = "请登录,用户信息为空"
  1922. br.Ret = 408
  1923. return
  1924. }
  1925. uid := user.UserId
  1926. articleId, err := this.GetInt("ArticleId")
  1927. if articleId <= 0 {
  1928. br.Msg = "文章不存在"
  1929. br.ErrMsg = "文章不存在,文章ID错误"
  1930. return
  1931. }
  1932. detail := new(models.ReportDetailRoadshow)
  1933. hasPermission := 0
  1934. hasFree := 0
  1935. //判断是否已经申请过
  1936. applyCount, err := models.GetApplyRecordCount(uid)
  1937. if err != nil && err.Error() != utils.ErrNoRow() {
  1938. br.Msg = "获取信息失败"
  1939. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  1940. return
  1941. }
  1942. //`description:"1:有该行业权限,正常展示,2:无该行业权限,不存在权益客户下,3:无该品类权限,4:潜在客户,未提交过申请,5:潜在客户,已提交过申请"`
  1943. if user.CompanyId > 1 {
  1944. companyPermission, err := models.GetCompanyPermission(user.CompanyId)
  1945. if err != nil {
  1946. br.Msg = "获取信息失败"
  1947. br.ErrMsg = "判断是否已申请访谈失败,Err:" + strconv.Itoa(uid) + ";articleId" + strconv.Itoa(articleId)
  1948. return
  1949. }
  1950. detail, err = models.GetReportRoadshowDetailById(articleId)
  1951. if err != nil {
  1952. br.Msg = "获取信息失败"
  1953. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1954. return
  1955. }
  1956. detail.Body = html.UnescapeString(detail.Body)
  1957. detail.Abstract, _ = services.GetReportContentTextSubNew(detail.Abstract)
  1958. detail.PublishDate = utils.StrTimeToTime(detail.PublishDate).Format("2006-01-02")
  1959. detail.VideoPlaySeconds = utils.Mp3Time(detail.VideoPlaySeconds)
  1960. if detail.ReportLink == "0" {
  1961. detail.ReportLink = ""
  1962. }
  1963. if companyPermission == "" {
  1964. if applyCount > 0 {
  1965. hasPermission = 5
  1966. } else {
  1967. hasPermission = 2
  1968. }
  1969. hasFree = 2
  1970. goto Loop
  1971. } else {
  1972. hasFree = 1
  1973. var articlePermissionPermissionName string
  1974. articlePermissionPermissionName = detail.CategoryName
  1975. var hasPersion bool
  1976. slice := strings.Split(articlePermissionPermissionName, ",")
  1977. for _, v := range slice {
  1978. if strings.Contains(companyPermission, v) {
  1979. hasPersion = true
  1980. }
  1981. }
  1982. if hasPersion {
  1983. hasPermission = 1
  1984. historyRecord := new(models.CygxArticleHistoryRecord)
  1985. historyRecord.UserId = uid
  1986. historyRecord.ArticleId = articleId
  1987. historyRecord.CreateTime = time.Now()
  1988. historyRecord.Mobile = user.Mobile
  1989. historyRecord.Email = user.Email
  1990. historyRecord.CompanyId = user.CompanyId
  1991. historyRecord.CompanyName = user.CompanyName
  1992. go models.AddCygxArticleHistoryRecord(historyRecord)
  1993. } else { //无该行业权限
  1994. hasPermission = 3
  1995. }
  1996. if hasPermission == 1 {
  1997. key := "CYGX_ARTICLE_" + strconv.Itoa(articleId) + "_" + strconv.Itoa(uid)
  1998. if !utils.Rc.IsExist(key) {
  1999. //新增浏览记录
  2000. record := new(models.CygxArticleViewRecord)
  2001. record.UserId = uid
  2002. record.ArticleId = articleId
  2003. record.CreateTime = time.Now()
  2004. record.Mobile = user.Mobile
  2005. record.Email = user.Email
  2006. record.CompanyId = user.CompanyId
  2007. record.CompanyName = user.CompanyName
  2008. go models.AddCygxArticleViewRecord(record)
  2009. utils.Rc.Put(key, 1, 5*time.Second)
  2010. models.ModifyReportLastViewTime(uid)
  2011. }
  2012. }
  2013. }
  2014. } else { //潜在客户
  2015. if applyCount > 0 {
  2016. hasPermission = 5
  2017. } else {
  2018. hasPermission = 4
  2019. }
  2020. }
  2021. Loop:
  2022. if hasPermission != 1 {
  2023. detail.Body = ""
  2024. detail.Abstract = ""
  2025. }
  2026. resp := new(models.RoadshowDetailResp)
  2027. resp.HasPermission = hasPermission
  2028. resp.HasFree = hasFree
  2029. resp.Detail = detail
  2030. br.Ret = 200
  2031. br.Success = true
  2032. br.Msg = "获取成功"
  2033. br.Data = resp
  2034. }
  2035. // @Title 产业文章列表接口
  2036. // @Description 获取产业文章列表接口
  2037. // @Param KeyWord query string true "搜索关键词"
  2038. // @Success 200 {object} models.CygxIndustrySearchList
  2039. // @router /industryAndArticle/list [get]
  2040. func (this *ReportController) IndustryAndArticleList() {
  2041. br := new(models.BaseResponse).Init()
  2042. defer func() {
  2043. this.Data["json"] = br
  2044. this.ServeJSON()
  2045. }()
  2046. user := this.User
  2047. if user == nil {
  2048. br.Msg = "请重新登录"
  2049. br.Ret = 408
  2050. return
  2051. }
  2052. uid := user.UserId
  2053. keyWord := this.GetString("KeyWord")
  2054. orderSrt := "update_time DESC"
  2055. condition := ` AND subject_names LIKE '%` + keyWord + `%'`
  2056. list, err := models.GetIndustrialManagementAll(uid, condition, orderSrt, 0, 100)
  2057. if err != nil {
  2058. br.Msg = "获取信息失败"
  2059. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2060. return
  2061. }
  2062. for k, v := range list {
  2063. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  2064. if err != nil {
  2065. br.Msg = "获取信息失败"
  2066. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2067. return
  2068. }
  2069. list[k].IndustrialSubjectList = industrialSubjectList
  2070. //list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  2071. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  2072. if err != nil {
  2073. br.Msg = "获取信息失败"
  2074. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2075. return
  2076. }
  2077. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  2078. }
  2079. artList, err := models.GetCygxIndustryAndArticleList(keyWord)
  2080. if err != nil {
  2081. br.Msg = "获取失败"
  2082. br.ErrMsg = "获取失败,Err:" + err.Error()
  2083. return
  2084. }
  2085. for k2, v2 := range artList {
  2086. subjectNames, err := models.GetSubjectNames(v2.ArticleId)
  2087. if err != nil {
  2088. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  2089. br.ErrMsg = "获取失败,Err:" + err.Error()
  2090. return
  2091. }
  2092. var subjectNamesNew string
  2093. if len(subjectNames) > 0 {
  2094. slice := strings.Split(subjectNames, "/")
  2095. for k3, v3 := range slice {
  2096. if k3 < 4 {
  2097. subjectNamesNew += v3 + "/"
  2098. }
  2099. }
  2100. }
  2101. industryName, err := models.GetIndustrialNames(v2.ArticleId)
  2102. if err != nil && err.Error() != utils.ErrNoRow() {
  2103. br.Msg = "获取失败" + strconv.Itoa(v2.ArticleId)
  2104. br.ErrMsg = "获取失败,Err:" + err.Error()
  2105. return
  2106. }
  2107. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  2108. artList[k2].SubjectName = subjectNamesNew
  2109. if subjectNamesNew == "" {
  2110. artList[k2].IndustryName = industryName
  2111. } else {
  2112. artList[k2].IndustryName = industryName + "-" + subjectNamesNew
  2113. }
  2114. }
  2115. if keyWord != "" {
  2116. keyWordItem := new(models.CygxUserSearchKeyWord)
  2117. keyWordItem.UserId = user.UserId
  2118. keyWordItem.KeyWord = keyWord
  2119. keyWordItem.PageType = "ReortSearch"
  2120. keyWordItem.CreateTime = time.Now()
  2121. go models.AddUserSearchKeyWord(keyWordItem)
  2122. }
  2123. resp := new(models.CygxIndustrySearchList)
  2124. resp.ArtList = artList
  2125. resp.IndList = list
  2126. br.Ret = 200
  2127. br.Success = true
  2128. br.Msg = "获取成功"
  2129. br.Data = resp
  2130. }
  2131. // @Title 产业报告分类关联作者列表接口Pc端
  2132. // @Description 获取产业报告分类关联作者列表接口Pc端
  2133. // @Param ChartPermissionId query int true "分类ID"
  2134. // @Param KeyWord query string true "搜索关键词"
  2135. // @Param PageSize query int true "每页数据条数"
  2136. // @Param CurrentIndex query int true "当前页页码,从1开始"
  2137. // @Success 200 {object} models.CygxArticleDepartmentListPc
  2138. // @router /industryListByDepartmentPc [get]
  2139. func (this *ReportController) IndustryListByDepartmentPc() {
  2140. br := new(models.BaseResponse).Init()
  2141. defer func() {
  2142. this.Data["json"] = br
  2143. this.ServeJSON()
  2144. }()
  2145. user := this.User
  2146. if user == nil {
  2147. br.Msg = "请重新登录"
  2148. br.Ret = 408
  2149. return
  2150. }
  2151. uid := user.UserId
  2152. pageSize, _ := this.GetInt("PageSize")
  2153. currentIndex, _ := this.GetInt("CurrentIndex")
  2154. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  2155. keyWord := this.GetString("KeyWord")
  2156. var startSize int
  2157. var condition string
  2158. condition = ` AND a.publish_status=1 AND m.chart_permission_id =` + strconv.Itoa(chartPermissionId)
  2159. if pageSize <= 0 {
  2160. pageSize = utils.PageSize20
  2161. }
  2162. if currentIndex <= 0 {
  2163. currentIndex = 1
  2164. }
  2165. var articleIdGroup string
  2166. if keyWord != "" {
  2167. //获取标的关联的文章ID
  2168. articleIdSub, err := models.GetArticleIdSubjectGroup(keyWord)
  2169. if err != nil {
  2170. br.Msg = "获取信息失败"
  2171. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2172. return
  2173. }
  2174. //获取产业关联的标的
  2175. articleIdInd, err := models.GetArticleIndustrialIdGroup(keyWord)
  2176. if err != nil {
  2177. br.Msg = "获取信息失败"
  2178. br.ErrMsg = "获取产业信息失败,Err:" + err.Error()
  2179. return
  2180. }
  2181. if articleIdSub != "" && articleIdInd != "" {
  2182. articleIdGroup = articleIdSub + "," + articleIdInd
  2183. } else if articleIdSub != "" && articleIdInd == "" {
  2184. articleIdGroup = articleIdSub
  2185. } else if articleIdSub == "" && articleIdInd != "" {
  2186. articleIdGroup = articleIdInd
  2187. }
  2188. slice := strings.Split(keyWord, "/")
  2189. if len(slice) > 1 {
  2190. var subjectIds string
  2191. for _, v := range slice {
  2192. subjectId, err := models.GetcygxIndustrialSubjectByName(v)
  2193. if err != nil && err.Error() != utils.ErrNoRow() {
  2194. br.Msg = "获取信息失败"
  2195. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  2196. return
  2197. }
  2198. if subjectId != "" {
  2199. subjectIds += subjectId + ","
  2200. }
  2201. }
  2202. subjectIds = strings.TrimRight(subjectIds, ",")
  2203. if len(subjectIds) > 0 {
  2204. articleBySub, err := models.GetArticleIdsBySubId(subjectIds)
  2205. if err != nil {
  2206. br.Msg = "获取信息失败"
  2207. br.ErrMsg = "获取文章关联的标的失败,Err:" + err.Error()
  2208. return
  2209. }
  2210. if articleIdGroup != "" {
  2211. if articleBySub != "" {
  2212. articleIdGroup += "," + articleBySub
  2213. }
  2214. } else {
  2215. articleIdGroup = articleBySub
  2216. }
  2217. }
  2218. }
  2219. }
  2220. if articleIdGroup != "" {
  2221. condition += ` AND a.article_id IN (` + articleIdGroup + `)`
  2222. }
  2223. startSize = paging.StartIndex(currentIndex, pageSize)
  2224. total, err := models.GetArticleDepartmentCount(condition)
  2225. page := paging.GetPaging(currentIndex, pageSize, total)
  2226. resp := new(models.CygxArticleDepartmentListPc)
  2227. userType, _, err := services.GetUserType(user.CompanyId)
  2228. if err != nil {
  2229. br.Msg = "获取信息失败"
  2230. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  2231. return
  2232. }
  2233. if userType == 1 {
  2234. resp.Paging = page
  2235. br.Ret = 200
  2236. br.Success = true
  2237. br.Msg = "获取成功"
  2238. br.Data = resp
  2239. return
  2240. }
  2241. resp.HaveResearch = true
  2242. //获取作者信息,并排序
  2243. list, err := models.GetCygxArticleDepartmentListPc(startSize, pageSize, condition, uid)
  2244. if err != nil {
  2245. br.Msg = "获取信息失败"
  2246. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2247. return
  2248. }
  2249. for k, v := range list {
  2250. artList, err := models.GetArticleByDepartmentIdPc(v.DepartmentId, articleIdGroup)
  2251. if err != nil {
  2252. br.Msg = "获取信息失败"
  2253. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  2254. return
  2255. }
  2256. for k2, v2 := range artList {
  2257. if artList[k2].IsReport == "1" {
  2258. artList[k2].Title = v2.Title
  2259. } else {
  2260. artList[k2].Title = v2.Title
  2261. }
  2262. artList[k2].IndustryName = strings.Replace(artList[k2].IndustryName, " ", "", -1)
  2263. }
  2264. list[k].List = artList
  2265. if v.FollowNum > 0 {
  2266. list[k].IsMyFollow = true
  2267. }
  2268. }
  2269. listnNew, err := models.GetIndustrialSubjectByDepartmentNew()
  2270. if err != nil {
  2271. br.Msg = "获取信息失败"
  2272. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2273. return
  2274. }
  2275. if len(listnNew) > 0 {
  2276. for _, v := range listnNew {
  2277. firstStr := strings.Index(v.IndustrialAndSubjectIds, "—")
  2278. Management := new(models.IndustrialManagementIdInt)
  2279. if firstStr == 0 {
  2280. Management.IndustryName = v.IndustryName
  2281. } else {
  2282. listSub, err := models.GetIndustrialManagementSubjectList(v.ArticleId)
  2283. if err != nil {
  2284. br.Msg = "获取信息失败"
  2285. br.ErrMsg = "获取关联标的列表失败,Err:" + err.Error()
  2286. return
  2287. }
  2288. var subjectNamesNew string
  2289. for _, v1 := range listSub {
  2290. subjectNamesNew += v1.SubjectName + "/"
  2291. }
  2292. subjectNamesNew = strings.TrimRight(subjectNamesNew, "/")
  2293. Management.IndustryName = subjectNamesNew
  2294. }
  2295. Management.IndustrialManagementId = v.IndustrialManagementId
  2296. Management.ArticleId = v.ArticleId
  2297. resp.ListnNew = append(resp.ListnNew, Management)
  2298. }
  2299. }
  2300. resp.List = list
  2301. resp.Paging = page
  2302. br.Ret = 200
  2303. br.Success = true
  2304. br.Msg = "获取成功"
  2305. br.Data = resp
  2306. }
  2307. // @Title 产业文章列表接口Pc端
  2308. // @Description 获取产业文章列表接口Pc端
  2309. // @Param KeyWord query string true "搜索关键词"
  2310. // @Success 200 {object} models.CygxIndustrySearchListPc
  2311. // @router /industryAndArticle/listPc [get]
  2312. func (this *ReportController) IndustryAndArticleListPc() {
  2313. br := new(models.BaseResponse).Init()
  2314. defer func() {
  2315. this.Data["json"] = br
  2316. this.ServeJSON()
  2317. }()
  2318. user := this.User
  2319. if user == nil {
  2320. br.Msg = "请重新登录"
  2321. br.Ret = 408
  2322. return
  2323. }
  2324. uid := user.UserId
  2325. keyWord := this.GetString("KeyWord")
  2326. resp := new(models.CygxIndustrySearchListPc)
  2327. orderSrt := "update_time DESC"
  2328. condition := ` AND subject_names LIKE '%` + keyWord + `%'`
  2329. list, err := models.GetIndustrialManagementAll(uid, condition, orderSrt, 0, 100)
  2330. if err != nil {
  2331. br.Msg = "获取信息失败"
  2332. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2333. return
  2334. }
  2335. for k, v := range list {
  2336. industrialSubjectList, err := models.GetIndustrialSubjectAll(v.IndustrialManagementId)
  2337. if err != nil {
  2338. br.Msg = "获取信息失败"
  2339. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2340. return
  2341. }
  2342. list[k].IndustrialSubjectList = industrialSubjectList
  2343. //list[k].LayoutTime = utils.TimeRemoveHms(v.LayoutTime)
  2344. newArtinfo, err := models.GetIndustrialNewArticleDetail(v.IndustrialManagementId)
  2345. if err != nil {
  2346. br.Msg = "获取信息失败"
  2347. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2348. return
  2349. }
  2350. list[k].UpdateTime = utils.TimeRemoveHms(newArtinfo.PublishDate)
  2351. }
  2352. artList, err := models.GetCygxIndustryAndArticleList(keyWord)
  2353. if err != nil {
  2354. br.Msg = "获取失败"
  2355. br.ErrMsg = "获取失败,Err:" + err.Error()
  2356. return
  2357. }
  2358. if len(artList) > 0 {
  2359. var articleIds string
  2360. for _, v := range artList {
  2361. articleIds += strconv.Itoa(v.ArticleId) + ","
  2362. }
  2363. articleIds = strings.TrimRight(articleIds, ",")
  2364. if articleIds != "" {
  2365. condition = ` AND a.article_id IN (` + articleIds + `)`
  2366. DepartmentList, err := models.GetCygxArticleDepartmentListPc(0, 20, condition, uid)
  2367. if err != nil {
  2368. br.Msg = "获取信息失败"
  2369. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2370. return
  2371. }
  2372. for k, v := range DepartmentList {
  2373. artList, err := models.GetArticleByDepartmentIdPc(v.DepartmentId, articleIds)
  2374. if err != nil {
  2375. br.Msg = "获取信息失败"
  2376. br.ErrMsg = "获取文章信息失败,Err:" + err.Error()
  2377. return
  2378. }
  2379. for k2, v2 := range artList {
  2380. if artList[k2].IsReport == "1" {
  2381. artList[k2].Title = v2.Title
  2382. } else {
  2383. artList[k2].Title = v2.Title
  2384. }
  2385. artList[k2].IndustryName = strings.Replace(artList[k2].IndustryName, " ", "", -1)
  2386. }
  2387. DepartmentList[k].List = artList
  2388. if v.FollowNum > 0 {
  2389. DepartmentList[k].IsMyFollow = true
  2390. }
  2391. }
  2392. resp.DepartmentList = DepartmentList
  2393. }
  2394. }
  2395. if keyWord != "" {
  2396. keyWordItem := new(models.CygxUserSearchKeyWord)
  2397. keyWordItem.UserId = user.UserId
  2398. keyWordItem.KeyWord = keyWord
  2399. keyWordItem.PageType = "ReortSearch"
  2400. keyWordItem.CreateTime = time.Now()
  2401. go models.AddUserSearchKeyWord(keyWordItem)
  2402. }
  2403. resp.IndList = list
  2404. br.Ret = 200
  2405. br.Success = true
  2406. br.Msg = "获取成功"
  2407. br.Data = resp
  2408. }
  2409. // @Title 报告搜索
  2410. // @Description 报告搜索接口
  2411. // @Param KeyWord query string true "搜索关键词"
  2412. // @Success 200 {object} models.ReoprtSearchResp
  2413. // @router /searchReport [get]
  2414. func (this *ReportController) SearchReport() {
  2415. br := new(models.BaseResponse).Init()
  2416. defer func() {
  2417. this.Data["json"] = br
  2418. this.ServeJSON()
  2419. }()
  2420. user := this.User
  2421. if user == nil {
  2422. br.Msg = "请重新登录"
  2423. br.Ret = 408
  2424. return
  2425. }
  2426. keyWord := this.GetString("KeyWord")
  2427. var condition string
  2428. var sqlGroup string
  2429. //匹配报告标题、
  2430. condition = `AND ( a.title LIKE '%` + keyWord + `%' OR a.body LIKE '%` + keyWord + `%' OR a.annotation LIKE '%` + keyWord + `%' OR a.abstract LIKE '%` + keyWord + `%') AND a.publish_status = 1 `
  2431. sqlGroup = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2432. //对应产业名称、标的名称。
  2433. listYx, err := models.GetArticleCollectionList(` AND a.article_id >= 1000000 `+condition+sqlGroup, user.UserId)
  2434. if err != nil {
  2435. br.Msg = "获取信息失败"
  2436. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2437. return
  2438. }
  2439. for k, v := range listYx {
  2440. listYx[k].Source = 2
  2441. if v.MyCollectNum > 0 {
  2442. listYx[k].IsCollect = true
  2443. }
  2444. }
  2445. listHz, err := models.GetReoprtSearchList(` AND a.article_id < 1000000 `+condition+` OR ( article_type = 'lyjh' `+condition+` ) `+sqlGroup, user.UserId)
  2446. if err != nil {
  2447. br.Msg = "获取信息失败"
  2448. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2449. return
  2450. }
  2451. for k, v := range listHz {
  2452. listHz[k].Source = 1
  2453. if v.MyCollectNum > 0 {
  2454. listHz[k].IsCollect = true
  2455. }
  2456. }
  2457. if keyWord != "" {
  2458. keyWordItem := new(models.CygxUserSearchKeyWord)
  2459. keyWordItem.UserId = user.UserId
  2460. keyWordItem.KeyWord = keyWord
  2461. keyWordItem.PageType = "ReortSearch"
  2462. keyWordItem.CreateTime = time.Now()
  2463. go models.AddUserSearchKeyWord(keyWordItem)
  2464. //go services.AddUserSearchLog(user, keyWord, 5)
  2465. }
  2466. if len(listYx) == 0 {
  2467. listYx = make([]*models.ArticleCollectionResp, 0)
  2468. }
  2469. if len(listHz) == 0 {
  2470. listHz = make([]*models.ArticleCollectionResp, 0)
  2471. }
  2472. resp := new(models.ReoprtSearchResp)
  2473. resp.ListYx = listYx
  2474. resp.ListHz = listHz
  2475. br.Ret = 200
  2476. br.Success = true
  2477. br.Msg = "获取成功"
  2478. br.Data = resp
  2479. }
  2480. // @Title 资源包搜索
  2481. // @Description 资源包搜索接口
  2482. // @Param KeyWord query string true "搜索关键词"
  2483. // @Success 200 {object} models.SearchResourceResp
  2484. // @router /searchResource [get]
  2485. func (this *ReportController) SearchResource() {
  2486. br := new(models.BaseResponse).Init()
  2487. defer func() {
  2488. this.Data["json"] = br
  2489. this.ServeJSON()
  2490. }()
  2491. user := this.User
  2492. if user == nil {
  2493. br.Msg = "请重新登录"
  2494. br.Ret = 408
  2495. return
  2496. }
  2497. uid := user.UserId
  2498. fllowList, err := models.GetUserFllowIndustrialList(uid)
  2499. if err != nil {
  2500. br.Msg = "获取失败"
  2501. br.ErrMsg = "获取失败,GetUserFllowIndustrialList Err:" + err.Error()
  2502. return
  2503. }
  2504. fllowMap := make(map[int]int)
  2505. if len(fllowList) > 0 {
  2506. for _, v := range fllowList {
  2507. fllowMap[v.IndustrialManagementId] = v.IndustrialManagementId
  2508. }
  2509. }
  2510. keyWord := this.GetString("KeyWord")
  2511. var condition string
  2512. var conditionOr string
  2513. //conditionOr = ` OR ( a.title LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2514. conditionOr += ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2515. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2516. listHz, err := models.GetSearchResourceList(user.UserId, condition, 0, 0)
  2517. if err != nil {
  2518. br.Msg = "获取信息失败"
  2519. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2520. return
  2521. }
  2522. //conditionOr = ` OR ( a.title LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2523. conditionOr = ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2524. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2525. listYx, err := models.GetSearchResourceList(user.UserId, condition, 0, 0)
  2526. if err != nil {
  2527. br.Msg = "获取信息失败"
  2528. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2529. return
  2530. }
  2531. //合并产业关联的标的
  2532. listSubjcet, err := models.GetThemeHeatSubjectList("")
  2533. if err != nil {
  2534. br.Msg = "获取信息失败"
  2535. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2536. return
  2537. }
  2538. industrialIdArr := make([]int, 0)
  2539. for k, v := range listHz {
  2540. listHz[k].Source = 1
  2541. if fllowMap[v.IndustrialManagementId] > 0 {
  2542. listHz[k].IsFollw = true
  2543. }
  2544. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2545. }
  2546. for k, v := range listYx {
  2547. listYx[k].Source = 2
  2548. if fllowMap[v.IndustrialManagementId] > 0 {
  2549. listYx[k].IsFollw = true
  2550. }
  2551. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2552. }
  2553. if len(industrialIdArr) > 0 {
  2554. //合并产业关联的标的
  2555. listSubjcet, err = models.GetIndustrialSubjectAllByIndustrialId(industrialIdArr)
  2556. if err != nil {
  2557. br.Msg = "获取信息失败"
  2558. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2559. return
  2560. }
  2561. mapIndustrial := make(map[string]int)
  2562. for _, v := range listSubjcet {
  2563. for k2, v2 := range listYx {
  2564. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] == 0 {
  2565. listYx[k2].IndustrialSubjectList = append(listYx[k2].IndustrialSubjectList, v)
  2566. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] = v2.IndustrialManagementId
  2567. }
  2568. }
  2569. for k2, v2 := range listHz {
  2570. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] == 0 {
  2571. listHz[k2].IndustrialSubjectList = append(listHz[k2].IndustrialSubjectList, v)
  2572. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] = v2.IndustrialManagementId
  2573. }
  2574. }
  2575. }
  2576. }
  2577. if keyWord != "" {
  2578. keyWordItem := new(models.CygxUserSearchKeyWord)
  2579. keyWordItem.UserId = user.UserId
  2580. keyWordItem.KeyWord = keyWord
  2581. keyWordItem.PageType = "ReortSearch"
  2582. keyWordItem.CreateTime = time.Now()
  2583. go models.AddUserSearchKeyWord(keyWordItem)
  2584. }
  2585. resp := new(models.SearchResourceResp)
  2586. if len(listYx) == 0 {
  2587. listYx = make([]*models.IndustrialManagementHotResp, 0)
  2588. }
  2589. if len(listHz) == 0 {
  2590. listHz = make([]*models.IndustrialManagementHotResp, 0)
  2591. }
  2592. resp.ListYx = listYx
  2593. resp.ListHz = listHz
  2594. br.Ret = 200
  2595. br.Success = true
  2596. br.Msg = "获取成功"
  2597. br.Data = resp
  2598. }
  2599. // @Title 报告搜索、资源包搜索接口
  2600. // @Description 报告搜索、资源包搜索接口接口
  2601. // @Param KeyWord query string true "搜索关键词"
  2602. // @Param PageSize query int true "每页数据条数"
  2603. // @Success 200 {object} models.SearchReportAndResourceResp
  2604. // @router /searchReportAndResource [get]
  2605. func (this *ReportController) SearchReportAndResource() {
  2606. br := new(models.BaseResponse).Init()
  2607. defer func() {
  2608. this.Data["json"] = br
  2609. this.ServeJSON()
  2610. }()
  2611. user := this.User
  2612. if user == nil {
  2613. br.Msg = "请重新登录"
  2614. br.Ret = 408
  2615. return
  2616. }
  2617. uid := user.UserId
  2618. keyWord := this.GetString("KeyWord")
  2619. pageSize, _ := this.GetInt("PageSize")
  2620. var condition string
  2621. var sqlGroup string
  2622. //匹配报告标题、
  2623. condition = `AND ( a.title LIKE '%` + keyWord + `%' OR a.body LIKE '%` + keyWord + `%' OR a.annotation LIKE '%` + keyWord + `%' OR a.abstract LIKE '%` + keyWord + `%') AND a.publish_status = 1 `
  2624. sqlGroup = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2625. if pageSize > 0 {
  2626. sqlGroup += ` LIMIT 5 `
  2627. } else {
  2628. sqlGroup += ` LIMIT 100 `
  2629. }
  2630. ListYxReport, err := models.GetArticleCollectionList(` AND a.article_id >= 1000000 `+condition+sqlGroup, user.UserId)
  2631. if err != nil {
  2632. br.Msg = "获取信息失败"
  2633. br.ErrMsg = "获取研选文章列表失败,Err:" + err.Error()
  2634. return
  2635. }
  2636. ListHzReport, err := models.GetReoprtSearchList(` AND a.article_id < 1000000 `+condition+` OR ( article_type = 'lyjh' `+condition+` ) OR ( a.sub_category_name = '专项调研' `+condition+` ) `+sqlGroup, user.UserId)
  2637. if err != nil {
  2638. br.Msg = "获取信息失败"
  2639. br.ErrMsg = "获取弘则报告文章列表失败,Err:" + err.Error()
  2640. return
  2641. }
  2642. keyWordArr, err := services.GetIndustryMapNameSliceV3(keyWord)
  2643. if err != nil {
  2644. br.Msg = "获取失败"
  2645. br.ErrMsg = "获取分词失败,GetIndustryMapNameSliceV3 Err: " + err.Error()
  2646. return
  2647. }
  2648. keyWordArr = services.RemoveDuplicatesAndEmpty(keyWordArr)
  2649. var keyWordIk string
  2650. if len(keyWordArr) > 1 {
  2651. keyWordIk = services.KeyWordArrSqlRegexp(keyWordArr)
  2652. var conditionIk string
  2653. var sqlGroupIk string
  2654. conditionIk = `AND ( a.title REGEXP '` + keyWordIk + `' OR a.annotation REGEXP '` + keyWordIk + `' OR a.abstract REGEXP '` + keyWordIk + `') AND a.publish_status = 1 `
  2655. sqlGroupIk = ` GROUP BY a.article_id ORDER BY a.publish_date DESC `
  2656. if pageSize > 0 {
  2657. sqlGroupIk += ` LIMIT 5 `
  2658. } else {
  2659. sqlGroupIk += ` LIMIT 20 `
  2660. }
  2661. //研选的联想词列表
  2662. ListYxReportIk, err := models.GetArticleCollectionList(` AND a.article_id >= 1000000 `+conditionIk+sqlGroupIk, user.UserId)
  2663. if err != nil && err.Error() != utils.ErrNoRow() {
  2664. br.Msg = "获取信息失败"
  2665. br.ErrMsg = "获取研选IK文章列表失败,Err:" + err.Error()
  2666. return
  2667. }
  2668. if len(ListYxReportIk) > 0 {
  2669. for _, v := range ListYxReportIk {
  2670. ListYxReport = append(ListYxReport, v)
  2671. }
  2672. }
  2673. //弘则的联想词列表
  2674. ListHzReportIk, err := models.GetReoprtSearchList(` AND a.article_id < 1000000 `+conditionIk+sqlGroupIk, user.UserId)
  2675. if err != nil && err.Error() != utils.ErrNoRow() {
  2676. br.Msg = "获取信息失败"
  2677. br.ErrMsg = "获取研选IK文章列表失败,Err:" + err.Error()
  2678. return
  2679. }
  2680. if len(ListHzReportIk) > 0 {
  2681. for _, v := range ListHzReportIk {
  2682. ListHzReport = append(ListHzReport, v)
  2683. }
  2684. }
  2685. }
  2686. for k, v := range ListHzReport {
  2687. ListHzReport[k].Source = 1
  2688. if v.MyCollectNum > 0 {
  2689. ListHzReport[k].IsCollect = true
  2690. }
  2691. }
  2692. for k, v := range ListYxReport {
  2693. ListYxReport[k].Source = 2
  2694. if v.MyCollectNum > 0 {
  2695. ListYxReport[k].IsCollect = true
  2696. }
  2697. }
  2698. var articleIds string
  2699. for _, v := range ListHzReport {
  2700. articleIds += strconv.Itoa(v.ArticleId) + ","
  2701. }
  2702. for _, v := range ListYxReport {
  2703. articleIds += strconv.Itoa(v.ArticleId) + ","
  2704. }
  2705. articleIds = strings.TrimRight(articleIds, ",")
  2706. silcearticleIds := strings.Split(articleIds, ",")
  2707. var parsindustrial []interface{}
  2708. parsindustrial = make([]interface{}, 0)
  2709. articleIdList := make([]string, 0)
  2710. for _, v := range silcearticleIds {
  2711. articleIdList = append(articleIdList, v)
  2712. }
  2713. conditionindustrial := ` AND mg.article_id IN ( ` + utils.GetOrmInReplace(len(silcearticleIds)) + ` ) `
  2714. parsindustrial = append(parsindustrial, articleIdList)
  2715. industrialList, err := models.GetIndustrialListByarticleId(parsindustrial, conditionindustrial)
  2716. if err != nil {
  2717. return
  2718. }
  2719. industrialMap := make(map[int][]*models.IndustrialManagementResp)
  2720. if len(industrialList) > 0 {
  2721. for _, v := range industrialList {
  2722. item := new(models.IndustrialManagementResp)
  2723. //item.ArticleId = v.ArticleId
  2724. item.IndustrialManagementId = v.IndustrialManagementId
  2725. item.IndustryName = v.IndustryName
  2726. item.ChartPermissionId = v.ChartPermissionId
  2727. industrialMap[v.ArticleId] = append(industrialMap[v.ArticleId], item)
  2728. }
  2729. }
  2730. for k, v := range ListHzReport {
  2731. if len(industrialMap[v.ArticleId]) > 0 {
  2732. ListHzReport[k].List = industrialMap[v.ArticleId]
  2733. } else {
  2734. ListHzReport[k].List = make([]*models.IndustrialManagementResp, 0)
  2735. }
  2736. }
  2737. for k, v := range ListYxReport {
  2738. if len(industrialMap[v.ArticleId]) > 0 {
  2739. ListYxReport[k].List = industrialMap[v.ArticleId]
  2740. } else {
  2741. ListYxReport[k].List = make([]*models.IndustrialManagementResp, 0)
  2742. }
  2743. }
  2744. //获取文章关联的产业
  2745. if len(ListYxReport) == 0 {
  2746. ListYxReport = make([]*models.ArticleCollectionResp, 0)
  2747. }
  2748. if len(ListHzReport) == 0 {
  2749. ListHzReport = make([]*models.ArticleCollectionResp, 0)
  2750. }
  2751. fllowList, err := models.GetUserFllowIndustrialList(uid)
  2752. if err != nil {
  2753. br.Msg = "获取失败"
  2754. br.ErrMsg = "获取失败,GetUserFllowIndustrialList Err:" + err.Error()
  2755. return
  2756. }
  2757. fllowMap := make(map[int]int)
  2758. if len(fllowList) > 0 {
  2759. for _, v := range fllowList {
  2760. fllowMap[v.IndustrialManagementId] = v.IndustrialManagementId
  2761. }
  2762. }
  2763. var conditionOr string
  2764. conditionOr += ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2765. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id < ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2766. listHzResource, err := models.GetSearchResourceList(user.UserId, condition, 0, pageSize)
  2767. if err != nil {
  2768. br.Msg = "获取信息失败"
  2769. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2770. return
  2771. }
  2772. conditionOr = ` OR ( m.subject_names LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + ` AND publish_status = 1 ) `
  2773. condition = ` AND m.industry_name LIKE '%` + keyWord + `%' AND a.article_id >= ` + strconv.Itoa(utils.SummaryArticleId) + conditionOr
  2774. listYxResource, err := models.GetSearchResourceList(user.UserId, condition, 0, pageSize)
  2775. if err != nil {
  2776. br.Msg = "获取信息失败"
  2777. br.ErrMsg = "获取文章列表失败,Err:" + err.Error()
  2778. return
  2779. }
  2780. //合并产业关联的标的
  2781. listSubjcet, err := models.GetThemeHeatSubjectList("")
  2782. if err != nil {
  2783. br.Msg = "获取信息失败"
  2784. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2785. return
  2786. }
  2787. industrialIdArr := make([]int, 0)
  2788. nowTime := time.Now().Local()
  2789. threeMonBefore := nowTime.AddDate(0, -3, 0)
  2790. mapHot := make(map[string]int)
  2791. hotCondition := ` ORDER BY sum_num DESC `
  2792. listHot, err := models.GetThemeHeatList(user.UserId, hotCondition, 0, 3)
  2793. if err != nil {
  2794. br.Msg = "获取信息失败"
  2795. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2796. return
  2797. }
  2798. for _, v := range listHot {
  2799. mapHot[v.IndustryName] = v.IndustrialManagementId
  2800. }
  2801. orderSrt := "man.recommended_index DESC,update_time DESC"
  2802. for k, v := range listHzResource {
  2803. // 关联报告发布时间均在3个月内则标记New
  2804. if v.MinReportTime != "" {
  2805. t, e := time.Parse(utils.FormatDateTime, v.MinReportTime)
  2806. if e != nil {
  2807. err = errors.New("报告最早发布时间有误,GetindustryVideo " + e.Error())
  2808. return
  2809. }
  2810. if t.After(threeMonBefore) {
  2811. listHzResource[k].IsNew = true
  2812. }
  2813. }
  2814. //弘则资源包不展示hot标签
  2815. //if mapHot[v.IndustryName] > 0 {
  2816. // listHzResource[k].IsHot = true
  2817. //}
  2818. listHzResource[k].Source = 1
  2819. if fllowMap[v.IndustrialManagementId] > 0 {
  2820. listHzResource[k].IsFollw = true
  2821. }
  2822. industrialIdSlice := make([]int, 0)
  2823. articleIdArr := make([]int, 0)
  2824. industrialIdSlice = append(industrialIdSlice, v.IndustrialManagementId)
  2825. listUpdateTime, err := models.GetNewArticleDetailByIndustrialIds(industrialIdSlice)
  2826. if err != nil && err.Error() != utils.ErrNoRow() {
  2827. return
  2828. }
  2829. for _, v := range listUpdateTime {
  2830. articleIdArr = append(articleIdArr, v.ArticleId)
  2831. }
  2832. if err != nil {
  2833. return
  2834. }
  2835. mapHistroyArticleId := make(map[int]int)
  2836. if user.UserId > 0 {
  2837. listArticleHistory, e := models.GetUserToArticleHistory(user.UserId, articleIdArr)
  2838. if e != nil && e.Error() != utils.ErrNoRow() {
  2839. err = errors.New("获取产业关联的视频失败,GetindustryVideo " + e.Error())
  2840. return
  2841. }
  2842. for _, v := range listArticleHistory {
  2843. mapHistroyArticleId[v.ArticleId] = v.ArticleId
  2844. }
  2845. }
  2846. condition2 := ` AND man.industry_name LIKE '%` + keyWord + `%' `
  2847. list, err := models.GetIndustrialManagementAll(uid, condition2, orderSrt, 0, 20)
  2848. if err != nil {
  2849. br.Msg = "获取信息失败"
  2850. br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
  2851. return
  2852. }
  2853. for _, v2 := range list {
  2854. if mapHistroyArticleId[v2.ArticleId] == 0 && user.CreatedTime.Before(utils.StrDateToTime(v.PublishDate)) && utils.StrTimeToTime(utils.OnlineTime).Before(utils.StrDateToTime(v.PublishDate)) {
  2855. listHzResource[k].IsRed = true
  2856. }
  2857. }
  2858. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2859. }
  2860. for k, v := range listYxResource {
  2861. // 关联报告发布时间均在3个月内则标记New
  2862. if v.MinReportTime != "" {
  2863. t, e := time.Parse(utils.FormatDateTime, v.MinReportTime)
  2864. if e != nil {
  2865. err = errors.New("报告最早发布时间有误,GetindustryVideo " + e.Error())
  2866. return
  2867. }
  2868. if t.After(threeMonBefore) {
  2869. listYxResource[k].IsNew = true
  2870. }
  2871. }
  2872. if mapHot[v.IndustryName] > 0 {
  2873. listYxResource[k].IsHot = true
  2874. }
  2875. listYxResource[k].Source = 2
  2876. if fllowMap[v.IndustrialManagementId] > 0 {
  2877. listYxResource[k].IsFollw = true
  2878. }
  2879. industrialIdArr = append(industrialIdArr, v.IndustrialManagementId)
  2880. }
  2881. if len(industrialIdArr) > 0 {
  2882. //查询产业视频
  2883. industrialVideoMap := make(map[int]*models.MicroVideoSimpleInfo)
  2884. // 获取默认图配置
  2885. _, videoMap, _, _, e := services.GetMicroRoadShowDefaultImgConfig()
  2886. if e != nil {
  2887. br.Msg = "获取视频默认配置图失败"
  2888. br.ErrMsg = "获取视频默认配置图失败, Err: " + e.Error()
  2889. return
  2890. }
  2891. videoList, err := models.GetMicroRoadshowVideoByIndustryIds(industrialIdArr)
  2892. if err != nil {
  2893. br.Msg = "产业视频列表失败"
  2894. br.ErrMsg = "产业视频列表失败, Err: " + err.Error()
  2895. return
  2896. }
  2897. for _, v := range videoList {
  2898. tmp := &models.MicroVideoSimpleInfo{
  2899. Id: v.VideoId,
  2900. Title: "5min逻辑【" + v.IndustryName + "】解析",
  2901. ResourceUrl: v.VideoUrl,
  2902. BackgroundImg: v.ImgUrl,
  2903. PlaySeconds: v.VideoDuration,
  2904. DetailImgUrl: v.DetailImgUrl,
  2905. ChartPermissionName: v.ChartPermissionName,
  2906. ChartPermissionId: v.ChartPermissionId,
  2907. }
  2908. if tmp.BackgroundImg == "" {
  2909. tmp.BackgroundImg = videoMap[v.ChartPermissionId]
  2910. }
  2911. industrialVideoMap[v.IndustryId] = tmp
  2912. }
  2913. //查询权限
  2914. // 用户权限
  2915. authInfo, permissionArr, e := services.GetUserRaiPermissionInfo(user.UserId, user.CompanyId)
  2916. if e != nil {
  2917. br.Msg = "获取失败"
  2918. br.ErrMsg = "获取用户权限失败, Err: " + e.Error()
  2919. return
  2920. }
  2921. for k, v := range listHzResource {
  2922. //展示产业视频
  2923. if video, ok := industrialVideoMap[v.IndustrialManagementId]; ok {
  2924. au := new(models.UserPermissionAuthInfo)
  2925. au.SellerName = authInfo.SellerName
  2926. au.SellerMobile = authInfo.SellerMobile
  2927. au.HasPermission = authInfo.HasPermission
  2928. au.OperationMode = authInfo.OperationMode
  2929. if au.HasPermission == 1 {
  2930. // 非宏观权限进一步判断是否有权限
  2931. if video.ChartPermissionId != utils.HONG_GUAN_ID && !utils.InArrayByStr(permissionArr, video.ChartPermissionName) {
  2932. au.HasPermission = 2
  2933. }
  2934. }
  2935. // 无权限的弹框提示
  2936. if au.HasPermission != 1 {
  2937. if au.OperationMode == services.UserPermissionOperationModeCall {
  2938. au.PopupMsg = services.UserPermissionPopupMsgCallMicroVideo
  2939. } else {
  2940. au.PopupMsg = services.UserPermissionPopupMsgApplyMicroVideo
  2941. }
  2942. video.ResourceUrl = ""
  2943. }
  2944. listHzResource[k].AuthInfo = au
  2945. listHzResource[k].IndustryVideo = video
  2946. }
  2947. }
  2948. //合并产业关联的标的
  2949. listSubjcet, err = models.GetIndustrialSubjectAllByIndustrialId(industrialIdArr)
  2950. if err != nil {
  2951. br.Msg = "获取信息失败"
  2952. br.ErrMsg = "获取标的信息失败,Err:" + err.Error()
  2953. return
  2954. }
  2955. //严选的产业只关联研选下面的标的
  2956. var yxcondition string
  2957. var yxPer []interface{}
  2958. yxcondition = ` AND ag.article_id >= ?`
  2959. yxPer = append(yxPer, utils.SummaryArticleId)
  2960. listYxAticleSubject, err := models.GetSubjectArticleGroupManagementList(yxcondition, yxPer)
  2961. if err != nil && err.Error() != utils.ErrNoRow() {
  2962. br.Msg = "获取信息失败"
  2963. br.ErrMsg = "获取研选报告关联的标的信息失败,GetSubjectArticleGroupManagementListErr:" + err.Error()
  2964. return
  2965. }
  2966. mapYxSubject := make(map[int]int)
  2967. for _, v := range listYxAticleSubject {
  2968. mapYxSubject[v.IndustrialSubjectId] = v.IndustrialSubjectId
  2969. }
  2970. mapIndustrial := make(map[string]int)
  2971. for _, v := range listSubjcet {
  2972. for k2, v2 := range listYxResource {
  2973. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] == 0 && mapYxSubject[v.IndustrialSubjectId] > 0 {
  2974. listYxResource[k2].IndustrialSubjectList = append(listYxResource[k2].IndustrialSubjectList, v)
  2975. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Yx", v.SubjectName)] = v2.IndustrialManagementId
  2976. }
  2977. }
  2978. for k2, v2 := range listHzResource {
  2979. if v2.IndustrialManagementId == v.IndustrialManagementId && mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] == 0 {
  2980. listHzResource[k2].IndustrialSubjectList = append(listHzResource[k2].IndustrialSubjectList, v)
  2981. mapIndustrial[fmt.Sprint(v2.IndustrialManagementId, "Hz", v.SubjectName)] = v2.IndustrialManagementId
  2982. }
  2983. }
  2984. }
  2985. }
  2986. resp := new(models.SearchReportAndResourceResp)
  2987. if len(listYxResource) == 0 {
  2988. listYxResource = make([]*models.IndustrialManagementHotResp, 0)
  2989. }
  2990. if len(listHzResource) == 0 {
  2991. listHzResource = make([]*models.IndustrialManagementHotResp, 0)
  2992. }
  2993. if keyWord != "" {
  2994. keyWordItem := new(models.CygxUserSearchKeyWord)
  2995. keyWordItem.UserId = user.UserId
  2996. keyWordItem.KeyWord = keyWord
  2997. keyWordItem.PageType = "ReortSearch"
  2998. keyWordItem.CreateTime = time.Now()
  2999. go models.AddUserSearchKeyWord(keyWordItem)
  3000. //go services.AddUserSearchLog(user, keyWord, 5)
  3001. }
  3002. resp.ListHzResource = listHzResource
  3003. resp.ListYxResource = listYxResource
  3004. resp.ListYxReport = ListYxReport
  3005. resp.ListHzReport = ListHzReport
  3006. br.Ret = 200
  3007. br.Success = true
  3008. br.Msg = "获取成功"
  3009. br.Data = resp
  3010. }
  3011. // @Title 产业报告公司列表
  3012. // @Description 获取产业报告公司列表接口
  3013. // @Param ChartPermissionId query int true "行业id"
  3014. // @Success 200 {object} models.IndustrialManagementList
  3015. // @router /home/stockName [get]
  3016. func (this *ReportController) StockNameList() {
  3017. br := new(models.BaseResponse).Init()
  3018. defer func() {
  3019. this.Data["json"] = br
  3020. this.ServeJSON()
  3021. }()
  3022. user := this.User
  3023. if user == nil {
  3024. br.Msg = "请重新登录"
  3025. br.Ret = 408
  3026. return
  3027. }
  3028. //uid := user.UserId
  3029. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  3030. list, err := models.GetSummaryArticle(chartPermissionId)
  3031. if err != nil {
  3032. br.Msg = "获取综述报告公司名称失败"
  3033. br.ErrMsg = "获取综述报告公司名称失败,Err:" + err.Error()
  3034. return
  3035. }
  3036. var respList []*models.SummaryArticleStock
  3037. for _, item := range list {
  3038. sliceSubjects := strings.Split(item.Stock, "/")
  3039. if len(sliceSubjects) > 0 {
  3040. for i, vSubject := range sliceSubjects {
  3041. sliceKuohao := strings.Split(vSubject, "(") //过滤括号
  3042. sliceXiahuaxian := strings.Split(sliceKuohao[0], "-") //过滤下划线
  3043. subject := sliceXiahuaxian[0]
  3044. if i > 0 {
  3045. newItem := models.SummaryArticleStock{
  3046. Id: item.Id,
  3047. ArticleId: item.ArticleId,
  3048. Stock: subject,
  3049. }
  3050. respList = append(respList, &newItem)
  3051. } else {
  3052. item.Stock = subject
  3053. respList = append(respList, item)
  3054. }
  3055. }
  3056. }
  3057. //index := strings.Index(item.Stock, "(")
  3058. //item.Stock = item.Stock[:index]
  3059. //if strings.Contains(item.Stock, "-B"){
  3060. // item.Stock = strings.Replace(item.Stock, "-B", "", -1)
  3061. //}
  3062. //if strings.Contains(item.Stock, "-W"){
  3063. // item.Stock = strings.Replace(item.Stock, "-W", "", -1)
  3064. //}
  3065. }
  3066. resp := new(models.SummaryArticleStockResp)
  3067. resp.List = respList
  3068. br.Ret = 200
  3069. br.Success = true
  3070. br.Msg = "获取成功"
  3071. br.Data = resp
  3072. }
  3073. // @Title 文章留言接口
  3074. // @Description 文章留言接口
  3075. // @Param request body models.AddCygxActivityHelpAsk true "type json string"
  3076. // @Success 200 {object} models.TacticsListResp
  3077. // @router /commentAdd [post]
  3078. func (this *ReportController) CommentAdd() {
  3079. br := new(models.BaseResponse).Init()
  3080. defer func() {
  3081. this.Data["json"] = br
  3082. this.ServeJSON()
  3083. }()
  3084. user := this.User
  3085. if user == nil {
  3086. br.Msg = "请重新登录"
  3087. br.Ret = 408
  3088. return
  3089. }
  3090. var req models.AddCygxArticleCommentReq
  3091. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  3092. if err != nil {
  3093. br.Msg = "参数解析异常!"
  3094. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  3095. return
  3096. }
  3097. if req.ArticleId <= 0 {
  3098. br.Msg = "文章不存在"
  3099. br.ErrMsg = "文章不存在,文章ID错误"
  3100. return
  3101. }
  3102. if req.Content == "" {
  3103. br.Msg = "建议内容不可为空"
  3104. return
  3105. }
  3106. content := req.Content
  3107. itemToken, err := services.WxGetToken()
  3108. if err != nil {
  3109. br.Msg = "GetWxAccessToken Err:" + err.Error()
  3110. return
  3111. }
  3112. if itemToken.AccessToken == "" {
  3113. br.Msg = "accessToken is empty"
  3114. return
  3115. }
  3116. commerr, err := weapp.MSGSecCheck(itemToken.AccessToken, content)
  3117. if err != nil {
  3118. br.Msg = "内容校验失败!"
  3119. br.ErrMsg = "内容校验失败,Err:" + err.Error()
  3120. return
  3121. }
  3122. if commerr.ErrCode != 0 {
  3123. br.Msg = "内容违规,请重新提交!"
  3124. br.ErrMsg = "内容违规,Err:" + commerr.ErrMSG
  3125. return
  3126. }
  3127. articleId := req.ArticleId
  3128. articleInfo, errInfo := models.GetArticleDetailById(articleId)
  3129. if articleInfo == nil {
  3130. br.Msg = "操作失败"
  3131. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3132. return
  3133. }
  3134. if errInfo != nil {
  3135. br.Msg = "操作失败"
  3136. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3137. return
  3138. }
  3139. companyDetail, err := models.GetCompanyDetailById(user.CompanyId)
  3140. if err != nil {
  3141. br.Msg = "提交失败!"
  3142. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  3143. return
  3144. }
  3145. if companyDetail == nil {
  3146. br.Msg = "提交失败!"
  3147. br.ErrMsg = "客户不存在,uid:" + strconv.Itoa(user.UserId)
  3148. return
  3149. }
  3150. item := models.CygxArticleComment{
  3151. UserId: user.UserId,
  3152. ArticleId: req.ArticleId,
  3153. CreateTime: time.Now(),
  3154. Mobile: user.Mobile,
  3155. Email: user.Email,
  3156. CompanyId: user.CompanyId,
  3157. CompanyName: companyDetail.CompanyName,
  3158. Content: content,
  3159. Title: articleInfo.Title,
  3160. }
  3161. _, err = models.AddArticleComment(&item)
  3162. if err != nil {
  3163. br.Msg = "提交失败"
  3164. br.ErrMsg = "提交留言失败,Err:" + err.Error()
  3165. return
  3166. }
  3167. //获取销售信息
  3168. //sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  3169. //if err != nil && err.Error() != utils.ErrNoRow() {
  3170. // br.Msg = "提交失败"
  3171. // br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  3172. // return
  3173. //}
  3174. //// 给所属销售发送消息
  3175. //var openIdList []*models.OpenIdList
  3176. //if sellerItem != nil {
  3177. // list, _ := models.GetWxOpenIdByMobileList(sellerItem.Mobile)
  3178. // for _, idList := range list {
  3179. // openIdList = append(openIdList, idList)
  3180. // }
  3181. // if openIdList != nil {
  3182. // // 给芳姐发消息
  3183. // cnf, _ := models.GetConfigByCode("tpl_msg")
  3184. // if cnf != nil {
  3185. // list, _ := models.GetWxOpenIdByMobileList(cnf.ConfigValue)
  3186. // for _, idList := range list {
  3187. // openIdList = append(openIdList, idList)
  3188. // }
  3189. // }
  3190. // if articleId > 1000000 {
  3191. // //发给汪洋
  3192. // list, _ := models.GetWxOpenIdByMobileList(utils.ActSendMsgMobile)
  3193. // for _, idList := range list {
  3194. // openIdList = append(openIdList, idList)
  3195. // }
  3196. // }
  3197. // services.SendCommentWxTemplateMsg(articleInfo.Title, user.CompanyName, user.RealName, sellerItem.RealName, item.CreateTime.Format(utils.FormatDateTime), req.Content, openIdList, req.ArticleId)
  3198. // }
  3199. //}
  3200. services.SendCommentWxTemplateMsg(req, user, articleInfo)
  3201. br.Ret = 200
  3202. br.Success = true
  3203. br.Msg = "提交成功"
  3204. }
  3205. // @Title 记录用户浏览音频回放接口
  3206. // @Description 记录用户浏览音频回放接口
  3207. // @Param request body models.ArticleIdReq true "type json string"
  3208. // @Success Ret=200 操作成功
  3209. // @router /voiceHistory/add [post]
  3210. func (this *ReportController) ResearchSummaryVoiceHistoryAdd() {
  3211. br := new(models.BaseResponse).Init()
  3212. defer func() {
  3213. this.Data["json"] = br
  3214. this.ServeJSON()
  3215. }()
  3216. user := this.User
  3217. if user == nil {
  3218. br.Msg = "请登录"
  3219. br.ErrMsg = "请登录,用户信息为空"
  3220. br.Ret = 408
  3221. return
  3222. }
  3223. uid := user.UserId
  3224. var req models.ArticleIdReq
  3225. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  3226. if err != nil {
  3227. br.Msg = "参数解析异常!"
  3228. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  3229. return
  3230. }
  3231. articleId := req.ArticleId
  3232. playSeconds := req.PlaySeconds
  3233. pageRouter := req.PageRouter
  3234. if pageRouter == "本周研究汇总" {
  3235. articleInfo, errInfo := models.GetCygxResearchSummaryInfoById(articleId)
  3236. if articleInfo == nil {
  3237. br.Msg = "操作失败"
  3238. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3239. return
  3240. }
  3241. if errInfo != nil {
  3242. br.Msg = "操作失败"
  3243. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3244. return
  3245. }
  3246. var sellerName string
  3247. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  3248. if err != nil {
  3249. br.Msg = "报名失败!"
  3250. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  3251. return
  3252. }
  3253. item := models.CygxResearchSummaryVoiceHistory{
  3254. ArticleId: articleId,
  3255. UserId: uid,
  3256. CreateTime: time.Now(),
  3257. Mobile: user.Mobile,
  3258. Email: user.Email,
  3259. CompanyId: user.CompanyId,
  3260. CompanyName: user.CompanyName,
  3261. RealName: user.RealName,
  3262. SellerName: sellerName,
  3263. PlaySeconds: strconv.Itoa(req.PlaySeconds),
  3264. ModifyTime: time.Now(),
  3265. }
  3266. if playSeconds != 0 {
  3267. lastItem, err := models.GetLastCygxResearchSummaryVoiceHistory(articleId, user.UserId)
  3268. if err != nil {
  3269. br.Msg = "操作失败"
  3270. br.ErrMsg = "操作失败,GetLastCygxResearchSummaryVoiceHistory Err:" + err.Error()
  3271. return
  3272. }
  3273. err = models.UpdateLastCygxResearchSummaryVoiceHistory(strconv.Itoa(req.PlaySeconds), lastItem.Id)
  3274. if err != nil {
  3275. br.Msg = "更新失败"
  3276. br.ErrMsg = "更新失败,UpdateLastCygxResearchSummaryVoiceHistory Err:" + err.Error()
  3277. return
  3278. }
  3279. } else {
  3280. err = models.AddCygxResearchSummaryVoiceHistory(&item)
  3281. if err != nil {
  3282. br.Msg = "操作失败"
  3283. br.ErrMsg = "操作失败,Err:" + err.Error()
  3284. return
  3285. }
  3286. err = models.UpdateResearchSummaryVoiceCounts(articleId)
  3287. if err != nil {
  3288. br.Msg = "更新失败"
  3289. br.ErrMsg = "更新失败,Err:" + err.Error()
  3290. return
  3291. }
  3292. }
  3293. } else if pageRouter == "上周纪要汇总" {
  3294. articleInfo, errInfo := models.GetCygxMinutesSummaryInfoById(articleId)
  3295. if articleInfo == nil {
  3296. br.Msg = "操作失败"
  3297. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3298. return
  3299. }
  3300. if errInfo != nil {
  3301. br.Msg = "操作失败"
  3302. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3303. return
  3304. }
  3305. var sellerName string
  3306. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  3307. if err != nil {
  3308. br.Msg = "报名失败!"
  3309. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  3310. return
  3311. }
  3312. item := models.CygxMinutesSummaryVoiceHistory{
  3313. ArticleId: articleId,
  3314. UserId: uid,
  3315. CreateTime: time.Now(),
  3316. Mobile: user.Mobile,
  3317. Email: user.Email,
  3318. CompanyId: user.CompanyId,
  3319. CompanyName: user.CompanyName,
  3320. RealName: user.RealName,
  3321. SellerName: sellerName,
  3322. PlaySeconds: strconv.Itoa(req.PlaySeconds),
  3323. ModifyTime: time.Now(),
  3324. }
  3325. if playSeconds != 0 {
  3326. lastItem, err := models.GetLastCygxMinutesSummaryVoiceHistory(articleId, user.UserId)
  3327. if err != nil {
  3328. br.Msg = "操作失败"
  3329. br.ErrMsg = "操作失败,GetLastCygxSummaryVoiceHistory Err:" + err.Error()
  3330. return
  3331. }
  3332. err = models.UpdateLastCygxMinutesSummaryVoiceHistory(strconv.Itoa(req.PlaySeconds), lastItem.Id)
  3333. if err != nil {
  3334. br.Msg = "更新失败"
  3335. br.ErrMsg = "更新失败,UpdateLastCygxSummaryVoiceHistory Err:" + err.Error()
  3336. return
  3337. }
  3338. } else {
  3339. err = models.AddCygxMinutesSummaryVoiceHistory(&item)
  3340. if err != nil {
  3341. br.Msg = "操作失败"
  3342. br.ErrMsg = "操作失败,Err:" + err.Error()
  3343. return
  3344. }
  3345. err = models.UpdateMinutesSummaryVoiceCounts(articleId)
  3346. if err != nil {
  3347. br.Msg = "更新失败"
  3348. br.ErrMsg = "更新失败,Err:" + err.Error()
  3349. return
  3350. }
  3351. }
  3352. } else if pageRouter == "报告精选" {
  3353. articleInfo, errInfo := models.GetCygxReportSelectionInfoById(articleId)
  3354. if articleInfo == nil {
  3355. br.Msg = "操作失败"
  3356. br.ErrMsg = "文章ID错误,不存在articleId:" + strconv.Itoa(articleId)
  3357. return
  3358. }
  3359. if errInfo != nil {
  3360. br.Msg = "操作失败"
  3361. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  3362. return
  3363. }
  3364. var sellerName string
  3365. sellerName, err = models.GetCompanySellerName(user.CompanyId)
  3366. if err != nil {
  3367. br.Msg = "报名失败!"
  3368. br.ErrMsg = "获取对应销售失败,Err:" + err.Error()
  3369. return
  3370. }
  3371. item := models.CygxReportSelectionVoiceHistory{
  3372. ArticleId: articleId,
  3373. UserId: uid,
  3374. CreateTime: time.Now(),
  3375. Mobile: user.Mobile,
  3376. Email: user.Email,
  3377. CompanyId: user.CompanyId,
  3378. CompanyName: user.CompanyName,
  3379. RealName: user.RealName,
  3380. SellerName: sellerName,
  3381. PlaySeconds: strconv.Itoa(req.PlaySeconds),
  3382. ModifyTime: time.Now(),
  3383. }
  3384. if playSeconds != 0 {
  3385. lastItem, err := models.GetLastCygxReportSelectionVoiceHistory(articleId, user.UserId)
  3386. if err != nil {
  3387. br.Msg = "操作失败"
  3388. br.ErrMsg = "操作失败,GetLastCygxSummaryVoiceHistory Err:" + err.Error()
  3389. return
  3390. }
  3391. err = models.UpdateLastCygxReportSelectionVoiceHistory(strconv.Itoa(req.PlaySeconds), lastItem.Id)
  3392. if err != nil {
  3393. br.Msg = "更新失败"
  3394. br.ErrMsg = "更新失败,UpdateLastCygxSummaryVoiceHistory Err:" + err.Error()
  3395. return
  3396. }
  3397. } else {
  3398. err = models.AddCygxReportSelectionVoiceHistory(&item)
  3399. if err != nil {
  3400. br.Msg = "操作失败"
  3401. br.ErrMsg = "操作失败,Err:" + err.Error()
  3402. return
  3403. }
  3404. err = models.UpdateReportSelectionVoiceCounts(articleId)
  3405. if err != nil {
  3406. br.Msg = "更新失败"
  3407. br.ErrMsg = "更新失败,Err:" + err.Error()
  3408. return
  3409. }
  3410. }
  3411. }
  3412. br.Ret = 200
  3413. br.Success = true
  3414. br.Msg = "操作成功"
  3415. return
  3416. }