report.go 130 KB

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