report.go 125 KB

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