report.go 111 KB

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