report.go 133 KB

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