user.go 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hongze_cygx/models"
  7. "hongze/hongze_cygx/services"
  8. "hongze/hongze_cygx/utils"
  9. "strconv"
  10. "strings"
  11. "time"
  12. )
  13. // 用户
  14. type UserController struct {
  15. BaseAuthController
  16. }
  17. type UserCommonController struct {
  18. BaseCommonController
  19. }
  20. // @Title 登录
  21. // @Description 登录接口
  22. // @Param request body models.LoginReq true "type json string"
  23. // @Success 200 {object} models.LoginResp
  24. // @router /login [post]
  25. func (this *UserController) Login() {
  26. br := new(models.BaseResponse).Init()
  27. defer func() {
  28. this.Data["json"] = br
  29. this.ServeJSON()
  30. }()
  31. var req models.LoginReq
  32. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  33. if err != nil {
  34. br.Msg = "参数解析异常!"
  35. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  36. return
  37. }
  38. user := this.User
  39. if user == nil {
  40. br.Msg = "请登录"
  41. br.ErrMsg = "请登录"
  42. br.Ret = 408
  43. return
  44. }
  45. unionId := this.User.UnionId
  46. openId := this.User.OpenId
  47. if unionId == "" {
  48. br.Msg = "参数错误"
  49. br.ErrMsg = "参数错误,unionId 为空"
  50. return
  51. }
  52. if req.LoginType == 1 || req.LoginType == 3 {
  53. if req.Mobile == "" {
  54. br.Msg = "参数错误"
  55. br.ErrMsg = "参数错误,手机号为空 为空"
  56. return
  57. }
  58. if req.LoginType == 3 {
  59. item, err := models.GetMsgCode(req.Mobile, req.VCode)
  60. if err != nil {
  61. if err.Error() == utils.ErrNoRow() {
  62. br.Msg = "验证码错误,请重新输入"
  63. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  64. return
  65. } else {
  66. br.Msg = "验证码错误,请重新输入"
  67. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  68. return
  69. }
  70. }
  71. if item == nil {
  72. br.Msg = "验证码错误,请重新输入"
  73. return
  74. }
  75. }
  76. req.Mobile = strings.Trim(req.Mobile, " ")
  77. } else if req.LoginType == 2 {
  78. if req.Email == "" {
  79. br.ErrMsg = "邮箱不能为空,请输入邮箱"
  80. br.Msg = "邮箱不能为空,请输入邮箱"
  81. return
  82. }
  83. if !utils.ValidateEmailFormatat(req.Email) {
  84. br.ErrMsg = "邮箱格式错误,请重新输入"
  85. br.Msg = "邮箱格式错误,请重新输入"
  86. return
  87. }
  88. item, err := models.GetMsgCode(req.Email, req.VCode)
  89. if err != nil {
  90. if err.Error() == utils.ErrNoRow() {
  91. br.Msg = "验证码错误,请重新输入"
  92. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  93. return
  94. } else {
  95. br.Msg = "验证码错误,请重新输入"
  96. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  97. return
  98. }
  99. }
  100. if item == nil {
  101. br.Msg = "验证码错误,请重新输入"
  102. return
  103. }
  104. } else {
  105. br.Msg = "无效的登录方式"
  106. br.ErrMsg = "无效的登录方式,Err:"
  107. return
  108. }
  109. if len(req.Mobile) >= 11 && req.CountryCode == "" {
  110. req.CountryCode = "86"
  111. }
  112. user, err = services.BindWxUser(openId, req.Mobile, req.Email, req.CountryCode)
  113. if err != nil {
  114. br.Msg = "登录失败"
  115. br.ErrMsg = "绑定手机号失败:" + err.Error()
  116. return
  117. }
  118. userId := user.UserId
  119. var token string
  120. tokenItem, err := models.GetTokenByOpenId(openId)
  121. if err != nil && err.Error() != utils.ErrNoRow() {
  122. br.Msg = "登录失败"
  123. br.ErrMsg = "登录失败,获取token失败:" + err.Error()
  124. return
  125. }
  126. if tokenItem == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  127. timeUnix := time.Now().Unix()
  128. timeUnixStr := strconv.FormatInt(timeUnix, 10)
  129. token = utils.MD5(openId) + utils.MD5(timeUnixStr)
  130. //新增session
  131. {
  132. session := new(models.CygxSession)
  133. session.OpenId = unionId
  134. session.UnionId = unionId
  135. session.UserId = userId
  136. session.CreatedTime = time.Now()
  137. session.LastUpdatedTime = time.Now()
  138. session.ExpireTime = time.Now().AddDate(0, 1, 0)
  139. session.AccessToken = token
  140. err = models.AddSession(session)
  141. if err != nil {
  142. br.Msg = "登录失败"
  143. br.ErrMsg = "登录失败,新增用户session信息失败:" + err.Error()
  144. return
  145. }
  146. }
  147. } else {
  148. token = tokenItem.AccessToken
  149. }
  150. //新增登录日志
  151. {
  152. loginLog := new(models.WxUserLog)
  153. loginLog.UserId = userId
  154. loginLog.OpenId = openId
  155. loginLog.Mobile = req.Mobile
  156. loginLog.Email = req.Email
  157. loginLog.CreateTime = time.Now()
  158. loginLog.Handle = "wechat_user_login"
  159. loginLog.Remark = token
  160. go models.AddWxUserLog(loginLog)
  161. }
  162. //添加邀请绑定关系
  163. {
  164. if req.ShareUserCode != "" {
  165. count, _ := models.GetUserInviteeCount(userId)
  166. if count == 0 {
  167. userItem := new(models.UserInvitee)
  168. userItem.CreateTime = time.Now()
  169. userItem.InviteedUserId = strconv.Itoa(userId)
  170. userItem.InviteeUserId = req.ShareUserCode
  171. shareUserId, _ := strconv.Atoi(req.ShareUserCode)
  172. inviteeUser, _ := models.GetWxUserItemByUserId(shareUserId)
  173. if inviteeUser != nil {
  174. userItem.InviteeMobile = inviteeUser.Mobile
  175. userItem.InviteeCompany = inviteeUser.CompanyName
  176. userItem.InviteeCompanyId = inviteeUser.CompanyId
  177. userItem.InviteeEmail = inviteeUser.Email
  178. }
  179. models.AddUserInvite(userItem)
  180. }
  181. }
  182. }
  183. //先关注后登录,更新用户是否关注过查研观向小助手公众号
  184. {
  185. services.UpdateCygxSubscribe(userId, unionId)
  186. }
  187. resp := new(models.LoginResp)
  188. resp.UserId = userId
  189. resp.Authorization = token
  190. if user.CompanyId == 1 {
  191. resp.IsPotential = true
  192. }
  193. br.Ret = 200
  194. br.Success = true
  195. br.Data = resp
  196. br.Msg = "登录成功"
  197. }
  198. // @Title 获取用户详情
  199. // @Description 获取用户详情接口
  200. // @Success 200 {object} models.UserDetail
  201. // @router /detail [get]
  202. func (this *UserController) Detail() {
  203. br := new(models.BaseResponse).Init()
  204. defer func() {
  205. this.Data["json"] = br
  206. this.ServeJSON()
  207. }()
  208. user := this.User
  209. if user == nil {
  210. br.Msg = "请登录"
  211. br.ErrMsg = "请登录,用户信息为空"
  212. br.Ret = 408
  213. return
  214. }
  215. uid := user.UserId
  216. var hasPermission int
  217. detail := new(models.UserDetail)
  218. if uid > 0 {
  219. var err error
  220. detail, err = models.GetUserDetailByUserId(uid)
  221. if err != nil && err.Error() != utils.ErrNoRow() {
  222. br.Msg = "获取信息失败"
  223. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  224. return
  225. }
  226. if detail == nil {
  227. br.Msg = "获取信息失败"
  228. br.ErrMsg = "获取信息失败,Err:用户不存在"
  229. return
  230. }
  231. userRecord, _ := models.GetUserRecordByUserId(uid, utils.WxPlatform)
  232. if userRecord != nil {
  233. detail.NickName = userRecord.NickName
  234. if detail.Headimgurl == "" {
  235. detail.Headimgurl = userRecord.Headimgurl
  236. }
  237. if detail.Headimgurl == "" {
  238. userRecord, _ = models.GetUserRecordByUserId(uid, 1)
  239. if userRecord != nil {
  240. detail.NickName = userRecord.NickName
  241. detail.Headimgurl = userRecord.Headimgurl
  242. }
  243. }
  244. }
  245. if user.CompanyId > 1 {
  246. companyItem, err := models.GetCompanyDetailById(user.CompanyId)
  247. if err != nil && err.Error() != utils.ErrNoRow() {
  248. br.Msg = "获取信息失败"
  249. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  250. return
  251. }
  252. if companyItem != nil && companyItem.CompanyId > 0 {
  253. detail.CompanyName = companyItem.CompanyName
  254. //if companyItem.Status == "试用" || companyItem.Status == "永续" || companyItem.Status == "正式" {
  255. //permissionStr, err := models.GetCompanyPermissionByUser(companyItem.CompanyId)
  256. //if err != nil {
  257. // br.Msg = "获取信息失败"
  258. // br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  259. // return
  260. //}
  261. var permissionStr string
  262. permissionList, err := models.GetCompanyPermissionList(companyItem.CompanyId)
  263. if err != nil {
  264. br.Msg = "获取信息失败"
  265. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  266. return
  267. }
  268. mapIsUpgrade := make(map[string]string)
  269. mapZhukKeGuan := make(map[string]int)
  270. for _, v := range permissionList {
  271. mapZhukKeGuan[v.PermissionName] += 1
  272. if v.IsUpgrade == 1 {
  273. mapIsUpgrade[v.PermissionName] = v.PermissionName + "(升级)"
  274. }
  275. }
  276. mapPermissionName := make(map[string]string)
  277. //处理升级,并且合并主客观
  278. for _, v := range permissionList {
  279. if _, ok := mapPermissionName[v.PermissionName]; ok {
  280. continue
  281. }
  282. if _, ok := mapIsUpgrade[v.PermissionName]; ok {
  283. permissionStr += mapIsUpgrade[v.PermissionName] + ","
  284. } else {
  285. if mapZhukKeGuan[v.PermissionName] == 1 {
  286. permissionStr += v.Remark + ","
  287. } else {
  288. permissionStr += v.PermissionName + ","
  289. }
  290. }
  291. mapPermissionName[v.PermissionName] = v.PermissionName
  292. }
  293. permissionStr = strings.TrimRight(permissionStr, ",")
  294. //permissionStrOld, err := models.GetCompanyPermission(companyItem.CompanyId)
  295. //if err != nil {
  296. // br.Msg = "获取信息失败"
  297. // br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  298. // return
  299. //}
  300. //permissionStrListOld := strings.Split(permissionStrOld, ",")
  301. //for _, v := range permissionStrListOld {
  302. // if strings.Count(permissionStr, v) > 1 {
  303. // permissionStr = strings.Replace(permissionStr, v+"(主观)", v, -1)
  304. // permissionStr = strings.Replace(permissionStr, v+"(客观),", "", -1)
  305. // }
  306. //}
  307. detail.PermissionName = permissionStr
  308. //} else {
  309. if permissionStr == "" {
  310. hasPermission = 1
  311. }
  312. //}
  313. detail.SellerName = companyItem.SellerName
  314. detail.SellerMobile = companyItem.Mobile
  315. tatolSpecil, err := services.GetSpecialTripUserSchedule(user.UserId)
  316. if err != nil {
  317. br.Msg = "获取信息失败"
  318. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  319. return
  320. }
  321. detail.ScheduleNum += tatolSpecil
  322. microRoadshowCollectcount, err := models.GetUserMicroRoadshowCollectcount(user.UserId)
  323. if err != nil {
  324. br.Msg = "获取信息失败"
  325. br.ErrMsg = "获取微路演收藏信息失败,GetUserMicroRoadshowCollectcount Err:" + err.Error()
  326. return
  327. }
  328. detail.ConNum += microRoadshowCollectcount
  329. } else {
  330. hasPermission = 1
  331. }
  332. } else {
  333. //判断是否已经申请过
  334. applyCount, err := models.GetApplyRecordCount(uid)
  335. if err != nil && err.Error() != utils.ErrNoRow() {
  336. br.Msg = "获取信息失败"
  337. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  338. return
  339. }
  340. if applyCount > 0 {
  341. hasPermission = 3
  342. } else {
  343. hasPermission = 2
  344. }
  345. detail.CompanyName = detail.Note
  346. }
  347. detail.HasPermission = hasPermission
  348. } else {
  349. ur, _ := models.GetUserRecordByOpenId(user.OpenId)
  350. if ur != nil {
  351. detail.NickName = ur.NickName
  352. detail.Email = ur.BindAccount
  353. detail.Mobile = ur.BindAccount
  354. detail.NickName = ur.NickName
  355. detail.Headimgurl = ur.Headimgurl
  356. }
  357. hasPermission = 2
  358. detail.HasPermission = hasPermission
  359. }
  360. if detail.Headimgurl == "" {
  361. detail.Headimgurl = utils.DefaultHeadimgurl
  362. }
  363. br.Ret = 200
  364. br.Success = true
  365. br.Msg = "获取成功"
  366. br.Data = detail
  367. }
  368. // @Title 校验用户状态信息
  369. // @Description 校验用户状态信息
  370. // @Success 200 {object} models.CheckStatusResp
  371. // @router /check/status [get]
  372. func (this *UserController) CheckLogin() {
  373. br := new(models.BaseResponse).Init()
  374. defer func() {
  375. this.Data["json"] = br
  376. this.ServeJSON()
  377. }()
  378. user := this.User
  379. if user == nil {
  380. br.Msg = "请登录"
  381. br.ErrMsg = "请登录"
  382. br.Ret = 408
  383. return
  384. }
  385. uid := user.UserId
  386. resp := new(models.CheckStatusResp)
  387. if uid > 0 {
  388. //判断token是否过期
  389. userRecord, err := models.GetUserRecordByUserId(uid, utils.WxPlatform)
  390. if err != nil {
  391. br.Msg = "获取用户信息失败"
  392. br.ErrMsg = "获取用户信息失败,Err:" + err.Error()
  393. return
  394. }
  395. permissionStr, err := models.GetCompanyPermission(user.CompanyId)
  396. if err != nil {
  397. br.Msg = "获取信息失败"
  398. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  399. return
  400. }
  401. resp.PermissionName = permissionStr
  402. if user.Mobile == "" && user.Email == "" {
  403. resp.IsBind = true
  404. }
  405. if userRecord.UnionId == "" {
  406. resp.IsAuth = true
  407. }
  408. } else {
  409. resp.IsBind = true
  410. if user.UnionId == "" {
  411. resp.IsAuth = true
  412. }
  413. resp.PermissionName = ""
  414. }
  415. br.Success = true
  416. br.Msg = "获取成功"
  417. br.Data = resp
  418. br.Ret = 200
  419. }
  420. // @Title 获取我的收藏
  421. // @Description 获取我的收藏列表
  422. // @Param PageSize query int true "PageSize"
  423. // @Param CurrentIndex query int true "CurrentIndex"
  424. // @Success 200 {object} models.ArticleCollectListResp
  425. // @router /collect/list [get]
  426. func (this *UserController) CollectList() {
  427. br := new(models.BaseResponse).Init()
  428. defer func() {
  429. this.Data["json"] = br
  430. this.ServeJSON()
  431. }()
  432. userId := this.User.UserId
  433. var pageSize, currentIndex, startSize int
  434. pageSize, _ = this.GetInt("PageSize")
  435. currentIndex, _ = this.GetInt("CurrentIndex")
  436. if pageSize <= 0 {
  437. pageSize = utils.PageSize20
  438. }
  439. if currentIndex <= 0 {
  440. currentIndex = 1
  441. }
  442. startSize = utils.StartIndex(currentIndex, pageSize)
  443. total, err := models.GetArticleUserCollectCount(userId)
  444. if err != nil {
  445. br.Msg = "获取数据失败"
  446. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  447. return
  448. }
  449. list, err := models.GetArticleUserCollectList(startSize, pageSize, userId)
  450. if err != nil {
  451. br.Msg = "获取数据失败"
  452. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  453. return
  454. }
  455. resp := new(models.ArticleReportBillboardLIstPageResp)
  456. if len(list) == 0 {
  457. page := paging.GetPaging(currentIndex, pageSize, total)
  458. resp.List = list
  459. resp.Paging = page
  460. br.Msg = "获取成功!"
  461. br.Ret = 200
  462. br.Success = true
  463. br.Data = resp
  464. return
  465. }
  466. var condition string
  467. var pars []interface{}
  468. var articleIds []string
  469. for _, v := range list {
  470. articleIds = append(articleIds, strconv.Itoa(v.ArticleId))
  471. }
  472. articleIdStr := strings.Join(articleIds, ",")
  473. //获取文章关联的产业
  474. pars = make([]interface{}, 0)
  475. condition = ` AND mg.article_id IN ( ` + utils.GetOrmInReplace(len(articleIds)) + ` ) `
  476. pars = append(pars, articleIds)
  477. industrialList, err := models.GetIndustrialListByarticleId(pars, condition)
  478. if err != nil {
  479. br.Msg = "获取失败"
  480. br.ErrMsg = "获取失败,GetSubjectList Err:" + err.Error()
  481. return
  482. }
  483. industrialMap := make(map[int][]*models.IndustrialManagementIdInt)
  484. if len(industrialList) > 0 {
  485. for _, v := range industrialList {
  486. item := new(models.IndustrialManagementIdInt)
  487. item.ArticleId = v.ArticleId
  488. if v.ArticleId > utils.SummaryArticleId {
  489. item.IsResearch = true
  490. }
  491. item.IndustrialManagementId = v.IndustrialManagementId
  492. item.IndustryName = v.IndustryName
  493. industrialMap[v.ArticleId] = append(industrialMap[v.ArticleId], item)
  494. }
  495. }
  496. for k, v := range list {
  497. if len(industrialMap[v.ArticleId]) > 0 {
  498. list[k].List = industrialMap[v.ArticleId]
  499. } else {
  500. list[k].List = make([]*models.IndustrialManagementIdInt, 0)
  501. }
  502. }
  503. articleMap := make(map[int]*models.ArticleDetail)
  504. if articleIdStr != "" {
  505. articleList, err := models.GetArticleDetailByIdStr(articleIdStr)
  506. if err != nil {
  507. br.Msg = "获取数据失败"
  508. br.ErrMsg = "获取报告详情信息失败,Err:" + err.Error()
  509. return
  510. }
  511. for _, v := range articleList {
  512. if _, ok := articleMap[v.ArticleId]; !ok {
  513. articleMap[v.ArticleId] = v
  514. }
  515. }
  516. }
  517. //处理文章PV收藏等数量
  518. mapArticleCollectNum := make(map[int]*models.CygxArticleNum)
  519. if len(articleIds) > 0 {
  520. articleCollectNumList, err := models.GetArticleCollectNum(articleIds, userId)
  521. if err != nil && err.Error() != utils.ErrNoRow() {
  522. br.Msg = "获取失败"
  523. br.ErrMsg = "获取失败,GetArticleCollectNum Err:" + err.Error()
  524. return
  525. }
  526. for _, v := range articleCollectNumList {
  527. mapArticleCollectNum[v.ArticleId] = v
  528. }
  529. }
  530. lyjhTypeMap, _ := services.GetLyjhTypeMap()
  531. lenList := len(list)
  532. for i := 0; i < lenList; i++ {
  533. item := list[i]
  534. article := articleMap[item.ArticleId]
  535. list[i].Title = article.Title
  536. list[i].DepartmentId = article.DepartmentId
  537. list[i].NickName = article.NickName
  538. list[i].PublishDate = article.PublishDate
  539. if article.ArticleId < utils.SummaryArticleId {
  540. list[i].Source = 1
  541. } else {
  542. list[i].Source = 2
  543. }
  544. if mapArticleCollectNum[article.ArticleId] != nil {
  545. list[i].CollectNum = mapArticleCollectNum[article.ArticleId].CollectNum
  546. list[i].Pv = mapArticleCollectNum[article.ArticleId].Pv
  547. list[i].IsCollect = mapArticleCollectNum[article.ArticleId].IsCollect
  548. }
  549. if _, ok := lyjhTypeMap[item.CategoryId]; ok && list[i].ArticleId >= utils.SummaryArticleId {
  550. list[i].IsRoadShow = true
  551. }
  552. }
  553. page := paging.GetPaging(currentIndex, pageSize, total)
  554. resp.List = list
  555. resp.Paging = page
  556. br.Msg = "获取成功!"
  557. br.Ret = 200
  558. br.Success = true
  559. br.Data = resp
  560. }
  561. // @Title 获取申请访谈列表
  562. // @Description 获取申请访谈列表
  563. // @Param PageSize query int true "PageSize"
  564. // @Param CurrentIndex query int true "CurrentIndex"
  565. // @Success 200 {object} models.ArticleInterviewApplyListResp
  566. // @router /interview/apply/list [get]
  567. func (this *UserController) InterviewApplyList() {
  568. br := new(models.BaseResponse).Init()
  569. defer func() {
  570. this.Data["json"] = br
  571. this.ServeJSON()
  572. }()
  573. userId := this.User.UserId
  574. var pageSize, currentIndex, startSize int
  575. pageSize, _ = this.GetInt("PageSize")
  576. currentIndex, _ = this.GetInt("CurrentIndex")
  577. if pageSize <= 0 {
  578. pageSize = utils.PageSize20
  579. }
  580. if currentIndex <= 0 {
  581. currentIndex = 1
  582. }
  583. startSize = utils.StartIndex(currentIndex, pageSize)
  584. total, err := models.GetArticleUserInterviewApplyCount(userId)
  585. if err != nil {
  586. br.Msg = "获取数据失败"
  587. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  588. return
  589. }
  590. list, err := models.GetArticleUserInterviewApplyList(startSize, pageSize, userId)
  591. if err != nil {
  592. br.Msg = "获取数据失败"
  593. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  594. return
  595. }
  596. var articleIds []string
  597. for _, v := range list {
  598. articleIds = append(articleIds, strconv.Itoa(v.ArticleId))
  599. }
  600. articleIdStr := strings.Join(articleIds, ",")
  601. articleMap := make(map[int]*models.ArticleDetail)
  602. if articleIdStr != "" {
  603. articleList, err := models.GetArticleDetailByIdStr(articleIdStr)
  604. if err != nil {
  605. br.Msg = "获取数据失败"
  606. br.ErrMsg = "获取报告详情信息失败,Err:" + err.Error()
  607. return
  608. }
  609. for _, v := range articleList {
  610. if _, ok := articleMap[v.ArticleId]; !ok {
  611. articleMap[v.ArticleId] = v
  612. }
  613. }
  614. }
  615. lenList := len(list)
  616. for i := 0; i < lenList; i++ {
  617. item := list[i]
  618. article := articleMap[item.ArticleId]
  619. bodySub, _ := services.GetReportContentTextSub(article.Body)
  620. list[i].Title = article.Title
  621. list[i].TitleEn = article.TitleEn
  622. list[i].UpdateFrequency = article.UpdateFrequency
  623. list[i].CreateDate = article.CreateDate
  624. list[i].PublishDate = article.PublishDate
  625. list[i].Body = bodySub
  626. list[i].Abstract = article.Abstract
  627. list[i].CategoryName = article.CategoryName
  628. list[i].SubCategoryName = article.SubCategoryName
  629. list[i].ExpertBackground = article.ExpertBackground
  630. list[i].ExpertNumber = article.ExpertNumber
  631. }
  632. page := paging.GetPaging(currentIndex, pageSize, total)
  633. resp := new(models.ArticleInterviewApplyListResp)
  634. resp.List = list
  635. resp.Paging = page
  636. br.Msg = "获取成功!"
  637. br.Ret = 200
  638. br.Success = true
  639. br.Data = resp
  640. }
  641. // @Title 获取浏览历史列表
  642. // @Description 获取浏览历史列表
  643. // @Param PageSize query int true "PageSize"
  644. // @Param CurrentIndex query int true "CurrentIndex"
  645. // @Success 200 {object} models.ArticleBrowseHistoryListResp
  646. // @router /browse/history/list [get]
  647. func (this *UserController) BrowseHistoryList() {
  648. br := new(models.BaseResponse).Init()
  649. defer func() {
  650. this.Data["json"] = br
  651. this.ServeJSON()
  652. }()
  653. userId := this.User.UserId
  654. var pageSize, currentIndex, startSize int
  655. pageSize, _ = this.GetInt("PageSize")
  656. currentIndex, _ = this.GetInt("CurrentIndex")
  657. if pageSize <= 0 {
  658. pageSize = utils.PageSize20
  659. }
  660. if currentIndex <= 0 {
  661. currentIndex = 1
  662. }
  663. startSize = utils.StartIndex(currentIndex, pageSize)
  664. endDate := time.Now().AddDate(0, -1, 0).Format(utils.FormatDate)
  665. total, err := models.GetArticleUserBrowseHistoryCount(userId, endDate)
  666. if err != nil {
  667. br.Msg = "获取数据失败"
  668. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  669. return
  670. }
  671. list, err := models.GetArticleUserBrowseHistoryList(startSize, pageSize, userId, endDate)
  672. if err != nil {
  673. br.Msg = "获取数据失败"
  674. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  675. return
  676. }
  677. resp := new(models.ArticleReportBillboardLIstPageResp)
  678. if len(list) == 0 {
  679. page := paging.GetPaging(currentIndex, pageSize, total)
  680. resp.List = list
  681. resp.Paging = page
  682. br.Msg = "获取成功!"
  683. br.Ret = 200
  684. br.Success = true
  685. br.Data = resp
  686. return
  687. }
  688. var articleIds []string
  689. var condition string
  690. var pars []interface{}
  691. for _, v := range list {
  692. articleIds = append(articleIds, strconv.Itoa(v.ArticleId))
  693. }
  694. articleIdStr := strings.Join(articleIds, ",")
  695. //获取文章关联的产业
  696. pars = make([]interface{}, 0)
  697. condition = ` AND mg.article_id IN ( ` + utils.GetOrmInReplace(len(articleIds)) + ` ) `
  698. pars = append(pars, articleIds)
  699. industrialList, err := models.GetIndustrialListByarticleId(pars, condition)
  700. if err != nil {
  701. br.Msg = "获取失败"
  702. br.ErrMsg = "获取失败,GetSubjectList Err:" + err.Error()
  703. return
  704. }
  705. industrialMap := make(map[int][]*models.IndustrialManagementIdInt)
  706. if len(industrialList) > 0 {
  707. for _, v := range industrialList {
  708. item := new(models.IndustrialManagementIdInt)
  709. item.ArticleId = v.ArticleId
  710. if v.ArticleId > utils.SummaryArticleId {
  711. item.IsResearch = true
  712. }
  713. item.IndustrialManagementId = v.IndustrialManagementId
  714. item.IndustryName = v.IndustryName
  715. industrialMap[v.ArticleId] = append(industrialMap[v.ArticleId], item)
  716. }
  717. }
  718. for k, v := range list {
  719. if len(industrialMap[v.ArticleId]) > 0 {
  720. list[k].List = industrialMap[v.ArticleId]
  721. } else {
  722. list[k].List = make([]*models.IndustrialManagementIdInt, 0)
  723. }
  724. }
  725. articleMap := make(map[int]*models.ArticleDetail)
  726. if articleIdStr != "" {
  727. articleList, err := models.GetArticleDetailByIdStr(articleIdStr)
  728. if err != nil {
  729. br.Msg = "获取数据失败"
  730. br.ErrMsg = "获取报告详情信息失败,Err:" + err.Error()
  731. return
  732. }
  733. for _, v := range articleList {
  734. if _, ok := articleMap[v.ArticleId]; !ok {
  735. articleMap[v.ArticleId] = v
  736. }
  737. }
  738. }
  739. //处理文章PV收藏等数量
  740. mapArticleCollectNum := make(map[int]*models.CygxArticleNum)
  741. if len(articleIds) > 0 {
  742. articleCollectNumList, err := models.GetArticleCollectNum(articleIds, userId)
  743. if err != nil && err.Error() != utils.ErrNoRow() {
  744. br.Msg = "获取失败"
  745. br.ErrMsg = "获取失败,GetArticleCollectNum Err:" + err.Error()
  746. return
  747. }
  748. for _, v := range articleCollectNumList {
  749. mapArticleCollectNum[v.ArticleId] = v
  750. }
  751. }
  752. lenList := len(list)
  753. for i := 0; i < lenList; i++ {
  754. item := list[i]
  755. article := articleMap[item.ArticleId]
  756. if article != nil {
  757. list[i].Title = article.Title
  758. list[i].PublishDate = utils.TimeRemoveHms2(article.PublishDate)
  759. list[i].DepartmentId = article.DepartmentId
  760. list[i].NickName = article.NickName
  761. if article.ArticleId < utils.SummaryArticleId {
  762. list[i].Source = 1
  763. } else {
  764. list[i].Source = 2
  765. }
  766. if mapArticleCollectNum[article.ArticleId] != nil {
  767. list[i].CollectNum = mapArticleCollectNum[article.ArticleId].CollectNum
  768. list[i].Pv = mapArticleCollectNum[article.ArticleId].Pv
  769. list[i].IsCollect = mapArticleCollectNum[article.ArticleId].IsCollect
  770. }
  771. //list[i].TitleEn = article.TitleEn
  772. //list[i].UpdateFrequency = article.UpdateFrequency
  773. //list[i].CreateDate = article.CreateDate
  774. //list[i].Body, _ = services.GetReportContentTextSub(article.Body)
  775. //list[i].Abstract = article.Abstract
  776. //list[i].CategoryName = article.CategoryName
  777. //list[i].SubCategoryName = article.SubCategoryName
  778. }
  779. }
  780. page := paging.GetPaging(currentIndex, pageSize, total)
  781. resp.List = list
  782. resp.Paging = page
  783. br.Msg = "获取成功!"
  784. br.Ret = 200
  785. br.Success = true
  786. br.Data = resp
  787. }
  788. // @Title 未付费申请试用
  789. // @Description 未付费申请试用
  790. // @Param request body models.ApplyTryReq true "type json string"
  791. // @Success 200
  792. // @router /apply/try [post]
  793. func (this *UserController) ApplyTryOut() {
  794. br := new(models.BaseResponse).Init()
  795. defer func() {
  796. this.Data["json"] = br
  797. this.ServeJSON()
  798. }()
  799. user := this.User
  800. if user == nil {
  801. br.Msg = "请登录"
  802. br.ErrMsg = "请登录,SysUser Is Empty"
  803. br.Ret = 408
  804. return
  805. }
  806. mobile := user.Mobile
  807. var req models.ApplyTryReq
  808. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  809. if err != nil {
  810. br.Msg = "参数解析异常!"
  811. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  812. return
  813. }
  814. if req.RealName == "" {
  815. req.RealName = user.RealName
  816. }
  817. if req.CompanyName == "" {
  818. req.CompanyName = user.CompanyName
  819. }
  820. uid := user.UserId
  821. var title string
  822. tryType := req.TryType
  823. detailId := req.DetailId
  824. var isResearch bool // 是否属于研选
  825. if tryType == "Article" {
  826. detail, err := models.GetArticleDetailById(detailId)
  827. if err != nil {
  828. br.Msg = "获取信息失败"
  829. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  830. return
  831. }
  832. title = detail.Title
  833. if detail.ArticleTypeId > 0 {
  834. isResearch = true
  835. }
  836. } else if tryType == "Activity" {
  837. detail, err := models.GetAddActivityInfoById(detailId)
  838. if err != nil {
  839. br.Msg = "操作失败"
  840. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(detailId)
  841. return
  842. }
  843. title = detail.ActivityName
  844. if strings.Contains(detail.ChartPermissionName, utils.CHART_PERMISSION_NAME_YANXUAN) {
  845. isResearch = true
  846. }
  847. } else if tryType == "MicroAudio" {
  848. // 微路演音频
  849. microAudio, e := models.GetCygxActivityVoiceById(detailId)
  850. if e != nil {
  851. br.Msg = "操作失败"
  852. br.ErrMsg = "微路演音频信息有误, 不存在的VoiceId: " + strconv.Itoa(detailId)
  853. return
  854. }
  855. title = microAudio.VoiceName
  856. } else if tryType == "MicroVideo" {
  857. // 微路演视频
  858. microVideo, e := models.GetMicroRoadshowVideoById(detailId)
  859. if e != nil {
  860. br.Msg = "操作失败"
  861. br.ErrMsg = "微路演视频信息有误, 不存在的VideoId: " + strconv.Itoa(detailId)
  862. return
  863. }
  864. title = microVideo.VideoName
  865. } else if tryType == "Researchsummary" {
  866. // 本周研究汇总
  867. ResearchSummaryInfo, e := models.GetCygxResearchSummaryInfoById(detailId)
  868. if e != nil {
  869. br.Msg = "操作失败"
  870. br.ErrMsg = "本周研究汇总信息有误, 不存在的detailId: " + strconv.Itoa(detailId)
  871. return
  872. }
  873. title = ResearchSummaryInfo.Title
  874. } else if tryType == "Minutessummary" {
  875. // 上周纪要汇总
  876. MinutesSummaryInfo, e := models.GetCygxMinutesSummaryInfoById(detailId)
  877. if e != nil {
  878. br.Msg = "操作失败"
  879. br.ErrMsg = "上周纪要汇总信息有误, 不存在的detailId: " + strconv.Itoa(detailId)
  880. return
  881. }
  882. title = MinutesSummaryInfo.Title
  883. } else if tryType == "ReportSelection" {
  884. // 报告精选
  885. ReportSelectionInfo, e := models.GetCygxReportSelectionInfoById(detailId)
  886. if e != nil {
  887. br.Msg = "操作失败"
  888. br.ErrMsg = "报告精选信息有误, 不存在的detailId: " + strconv.Itoa(detailId)
  889. return
  890. }
  891. title = ReportSelectionInfo.Title
  892. } else if tryType == "ProductInterior" {
  893. // 产品内测
  894. ProductInteriorDetail, e := models.GetCygxProductInteriorDetail(detailId)
  895. if e != nil {
  896. br.Msg = "操作失败"
  897. br.ErrMsg = "产品内测信息有误, 不存在的detailId: " + strconv.Itoa(detailId)
  898. return
  899. }
  900. title = ProductInteriorDetail.Title
  901. }
  902. fmt.Println(title)
  903. //缓存校验
  904. cacheKey := fmt.Sprint("xygx:apply_record:add:", uid)
  905. ttlTime := utils.Rc.GetRedisTTL(cacheKey)
  906. if ttlTime > 0 {
  907. br.Msg = "申请失败,申请过于频繁"
  908. br.ErrMsg = "申请失败,申请过于频繁"
  909. return
  910. }
  911. utils.Rc.SetNX(cacheKey, user.Mobile, time.Second*10)
  912. //判断是否已经申请过
  913. applyCount, err := models.GetApplyRecordCount(uid)
  914. if err != nil && err.Error() != utils.ErrNoRow() {
  915. br.Msg = "获取信息失败"
  916. br.ErrMsg = "判断是否已申请过试用失败,Err:" + err.Error()
  917. return
  918. }
  919. if applyCount > 0 {
  920. br.Msg = "您已提交申请,请耐心等待。"
  921. br.IsSendEmail = false
  922. return
  923. }
  924. //判断是否存在申请
  925. var sellerMobile string
  926. if req.ApplyMethod == 2 {
  927. if req.BusinessCardUrl == "" {
  928. br.Msg = "请上传名片"
  929. return
  930. }
  931. if req.RealName == "" {
  932. br.Msg = "请输入姓名"
  933. return
  934. }
  935. if req.CompanyName == "" {
  936. br.Msg = "请输入公司名称"
  937. return
  938. }
  939. if req.BusinessCardUrl != "" && utils.RunMode == "release" {
  940. card, err := services.GetBusinessCard(req.BusinessCardUrl)
  941. if err != nil {
  942. br.Msg = "名片识别失败"
  943. br.ErrMsg = "名片识别失败,Err:" + err.Error()
  944. return
  945. }
  946. mobileStr := strings.Join(card.WordsResult.MOBILE, ",")
  947. isFlag := true
  948. if mobile != "" {
  949. if strings.Contains(mobileStr, mobile) || mobileStr == "" {
  950. isFlag = true
  951. } else {
  952. isFlag = false
  953. }
  954. }
  955. if !isFlag {
  956. //阿里云识别
  957. if utils.RunMode == "release" {
  958. aliyunResult, err := services.AliyunBusinessCard(req.BusinessCardUrl)
  959. if err != nil {
  960. br.Msg = "识别失败"
  961. br.ErrMsg = "识别失败,Err:" + err.Error()
  962. return
  963. }
  964. if !aliyunResult.Success {
  965. br.Msg = "识别失败"
  966. br.ErrMsg = "识别失败"
  967. return
  968. }
  969. mobileStr := strings.Join(aliyunResult.TelCell, ",")
  970. if mobile != "" {
  971. if strings.Contains(mobileStr, mobile) {
  972. isFlag = true
  973. } else {
  974. isFlag = false
  975. }
  976. }
  977. }
  978. }
  979. if !isFlag {
  980. br.Msg = "名片手机号与所填手机号不匹配,请重新填写"
  981. br.ErrMsg = "mobile:" + mobile
  982. return
  983. }
  984. }
  985. }
  986. //获取销售信息
  987. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 2)
  988. if err != nil && err.Error() != utils.ErrNoRow() {
  989. br.Msg = "申请失败"
  990. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  991. return
  992. }
  993. //用户状态,1:潜在客户 、2:现有客户 、3:FICC客户 、4:现有客户(正式,无对应权限) 、5:现有客户(试用,无对应权限) 、6:现有客户(试用暂停) 、7:现有客户(冻结) 、8:现有客户(流失)?
  994. CompanyIdType := 1
  995. applyMethod := ""
  996. if sellerItem != nil {
  997. companyItem, err := models.GetCompanyDetailById(user.CompanyId)
  998. if err != nil && err.Error() != utils.ErrNoRow() {
  999. br.Msg = "获取信息失败"
  1000. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  1001. return
  1002. }
  1003. if companyItem != nil && companyItem.CompanyId > 0 {
  1004. companyProduct, err := models.GetCompanyProductDetail(user.CompanyId, 2)
  1005. if err != nil && err.Error() != utils.ErrNoRow() {
  1006. br.Msg = "获取信息失败"
  1007. br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
  1008. return
  1009. }
  1010. if companyProduct != nil && companyProduct.IsSuspend == 1 {
  1011. CompanyIdType = 6
  1012. } else {
  1013. switch companyItem.Status {
  1014. case "正式":
  1015. CompanyIdType = 4
  1016. case "试用":
  1017. CompanyIdType = 5
  1018. case "冻结":
  1019. CompanyIdType = 7
  1020. case "流失":
  1021. CompanyIdType = 8
  1022. }
  1023. }
  1024. applyMethod = companyItem.Status + "客户申请"
  1025. if detailId > 0 {
  1026. if companyProduct != nil && companyProduct.IsSuspend == 1 {
  1027. applyMethod = "试用暂停客户"
  1028. } else {
  1029. if companyItem.Status == "正式" || companyItem.Status == "试用" {
  1030. applyMethod = companyItem.Status + "客户申请,无对应权限"
  1031. } else if companyItem.Status == "冻结" || companyItem.Status == "流失" {
  1032. applyMethod = companyItem.Status + "客户"
  1033. }
  1034. }
  1035. applyMethod = applyMethod + "," + title
  1036. }
  1037. openIpItem, _ := models.GetUserRecordByMobile(4, sellerItem.Mobile)
  1038. if openIpItem != nil && openIpItem.OpenId != "" {
  1039. if req.ApplyMethod != 2 {
  1040. req.RealName = user.RealName
  1041. req.CompanyName = user.CompanyName
  1042. }
  1043. go services.SendPermissionApplyTemplateMsg(req.RealName, req.CompanyName, mobile, applyMethod, openIpItem)
  1044. }
  1045. }
  1046. } else {
  1047. //获取销售信息
  1048. sellerItem, err := models.GetSellerByCompanyIdCheckFicc(user.CompanyId, 1)
  1049. if err != nil && err.Error() != utils.ErrNoRow() {
  1050. br.Msg = "申请失败"
  1051. br.ErrMsg = "获取销售信息失败,Err:" + err.Error()
  1052. return
  1053. }
  1054. if sellerItem != nil {
  1055. CompanyIdType = 3
  1056. applyMethod = "FICC客户"
  1057. } else {
  1058. CompanyIdType = 1
  1059. applyMethod = "潜在客户"
  1060. }
  1061. if detailId > 0 {
  1062. applyMethod = applyMethod + "," + title
  1063. }
  1064. }
  1065. //var configCode string
  1066. ////如果是研选的就推送给汪洋,否则就推送给王芳
  1067. //if isResearch {
  1068. // configCode = "tpl_msg_wang_yang"
  1069. //} else {
  1070. // configCode = "tpl_msg"
  1071. //}
  1072. //cnf, _ := models.GetConfigByCode(configCode)
  1073. //openIpItem, _ := models.GetUserRecordByMobile(4, cnf.ConfigValue)
  1074. //if openIpItem != nil && openIpItem.OpenId != "" {
  1075. // if req.ApplyMethod != 2 {
  1076. // req.RealName = user.RealName
  1077. // req.CompanyName = user.CompanyName
  1078. // }
  1079. // go services.SendPermissionApplyTemplateMsg(req.RealName, req.CompanyName, mobile, applyMethod, openIpItem)
  1080. //}
  1081. //如果对应销售不存在就给王芳,汪洋推模版消息
  1082. if sellerItem == nil {
  1083. go services.SendPermissionApplyTemplateMsgAdmin(req, mobile, applyMethod, isResearch)
  1084. }
  1085. err = models.AddApplyRecord(&req, user.Mobile, user.CompanyName, uid, user.CompanyId, CompanyIdType)
  1086. if err != nil {
  1087. br.Msg = "申请失败"
  1088. br.ErrMsg = "申请失败,Err:" + err.Error()
  1089. return
  1090. }
  1091. //添加成功后,设置5分钟缓存,不允许重复添加
  1092. //utils.Rc.SetNX(cacheKey, user.Mobile, time.Second*60)
  1093. br.Msg = "申请成功!"
  1094. br.Ret = 200
  1095. br.Success = true
  1096. br.Data = sellerMobile
  1097. }
  1098. // @Title 是否需要填写区号
  1099. // @Description 获取是否需要填写区号接口
  1100. // @Success 200 {object} models.CountryCode
  1101. // @router /countryCcode/isNeedAdd [get]
  1102. func (this *UserController) CountryCcode() {
  1103. br := new(models.BaseResponse).Init()
  1104. defer func() {
  1105. this.Data["json"] = br
  1106. this.ServeJSON()
  1107. }()
  1108. user := this.User
  1109. uid := user.UserId
  1110. if user == nil {
  1111. br.Msg = "请登录"
  1112. br.ErrMsg = "请登录,用户信息为空"
  1113. br.Ret = 408
  1114. return
  1115. }
  1116. //if uid == 0 {
  1117. // br.Msg = "请登录"
  1118. // br.ErrMsg = "请登录,用户信息为空"
  1119. // br.Ret = 408
  1120. // return
  1121. //}
  1122. resp := new(models.CountryCode)
  1123. if user.CountryCode == "" && len(user.Mobile) >= 11 {
  1124. err := models.ChangeUserOutboundMobileByMobile(uid)
  1125. if err != nil {
  1126. br.Msg = "操作失败"
  1127. br.ErrMsg = "操作失败,Err:" + err.Error()
  1128. return
  1129. }
  1130. }
  1131. if user.CountryCode == "" && user.Mobile != "" && len(user.Mobile) < 11 {
  1132. resp.IsNeedAddCountryCode = true
  1133. }
  1134. if user.OutboundMobile != "" {
  1135. resp.IsNeedAddCountryCode = false
  1136. }
  1137. br.Ret = 200
  1138. br.Success = true
  1139. br.Msg = "获取成功"
  1140. br.Data = resp
  1141. }
  1142. // @Title 上传用户区号
  1143. // @Description 上传用户区号接口
  1144. // @Param request body models.CountryCodeItem true "type json string"
  1145. // @Success Ret=200 新增成功
  1146. // @router /countryCcode/Add [POST]
  1147. func (this *UserController) AddCountryCcode() {
  1148. br := new(models.BaseResponse).Init()
  1149. defer func() {
  1150. this.Data["json"] = br
  1151. this.ServeJSON()
  1152. }()
  1153. user := this.User
  1154. if user == nil {
  1155. br.Msg = "请登录"
  1156. br.ErrMsg = "请登录,用户信息为空"
  1157. br.Ret = 408
  1158. return
  1159. }
  1160. var req models.CountryCodeItem
  1161. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1162. if err != nil {
  1163. br.Msg = "参数解析异常!"
  1164. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1165. return
  1166. }
  1167. err = models.AddCountryCode(req.CountryCode, user)
  1168. if err != nil {
  1169. br.Msg = "获取信息失败"
  1170. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1171. return
  1172. }
  1173. br.Ret = 200
  1174. br.Success = true
  1175. br.Msg = "新增成功"
  1176. }
  1177. // @Title 用户修改外呼手机号以及区号
  1178. // @Description 用户修改外呼手机号以及区号接口
  1179. // @Param request body models.OutboundMobileItem true "type json string"
  1180. // @Success Ret=200 操作成功
  1181. // @router /countryCcode/addOutboundMobile [POST]
  1182. func (this *UserController) AddOutboundMobile() {
  1183. br := new(models.BaseResponse).Init()
  1184. defer func() {
  1185. this.Data["json"] = br
  1186. this.ServeJSON()
  1187. }()
  1188. user := this.User
  1189. uid := user.UserId
  1190. if user == nil {
  1191. br.Msg = "请登录"
  1192. br.ErrMsg = "请登录,用户信息为空"
  1193. br.Ret = 408
  1194. return
  1195. }
  1196. var req models.OutboundMobileItem
  1197. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1198. if err != nil {
  1199. br.Msg = "参数解析异常!"
  1200. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1201. return
  1202. }
  1203. if !utils.ValidateFixedTelephoneFormatatEasy(req.OutboundMobile) {
  1204. br.Msg = "号码格式有误,请重新填写!"
  1205. br.ErrMsg = "号码格式有误,请重新填写" + req.OutboundMobile
  1206. return
  1207. }
  1208. if req.OutboundMobile == "" {
  1209. br.Msg = "请填写区号!"
  1210. return
  1211. }
  1212. item := new(models.OutboundMobileItem)
  1213. item.OutboundMobile = req.OutboundMobile
  1214. item.OutboundCountryCode = req.OutboundCountryCode
  1215. item.ActivityId = req.ActivityId
  1216. if req.ActivityId == 0 {
  1217. err = models.AddOutboundMobile(item, uid)
  1218. } else {
  1219. if user.Mobile == "" && user.OutboundMobile == "" {
  1220. items := new(models.CygxActivitySignup)
  1221. items.UserId = uid
  1222. items.ActivityId = req.ActivityId
  1223. items.CreateTime = time.Now()
  1224. items.Mobile = user.Mobile
  1225. items.Email = user.Email
  1226. items.CompanyId = user.CompanyId
  1227. items.CompanyName = user.CompanyName
  1228. items.SignupType = 1
  1229. items.FailType = 0
  1230. items.DoFailType = 0
  1231. items.OutboundMobile = req.OutboundMobile
  1232. items.CountryCode = req.OutboundCountryCode
  1233. _, err = models.AddActivitySignupFromEmail(items)
  1234. } else {
  1235. total, err := models.GetActivityCountByIdWithUid(item.ActivityId, uid)
  1236. if total == 0 {
  1237. br.Msg = "报名信息不存在"
  1238. br.ErrMsg = "报名信息不存在,Err:" + "活动ActivityId:" + strconv.Itoa(item.ActivityId) + "用户Uid:" + strconv.Itoa(uid)
  1239. return
  1240. }
  1241. if err != nil {
  1242. br.Msg = "操作失败"
  1243. br.ErrMsg = "操作失败,Err:" + err.Error()
  1244. return
  1245. }
  1246. err = models.AddOutboundMobile(item, uid)
  1247. }
  1248. }
  1249. if err != nil {
  1250. br.Msg = "操作失败"
  1251. br.ErrMsg = "操作失败,Err:" + err.Error()
  1252. return
  1253. }
  1254. br.Ret = 200
  1255. br.Success = true
  1256. br.Msg = "操作成功"
  1257. }
  1258. // @Title 获取我的提问
  1259. // @Description 获取我的提问列表
  1260. // @Success 200 {object} models.CygxAskListResp
  1261. // @router /ask/list [get]
  1262. func (this *UserController) AskList() {
  1263. br := new(models.BaseResponse).Init()
  1264. defer func() {
  1265. this.Data["json"] = br
  1266. this.ServeJSON()
  1267. }()
  1268. user := this.User
  1269. if user == nil {
  1270. br.Msg = "请登录"
  1271. br.ErrMsg = "请登录,用户信息为空"
  1272. br.Ret = 408
  1273. return
  1274. }
  1275. userId := this.User.UserId
  1276. listActcivity, err := models.GetActivityAskList(userId)
  1277. if err != nil && err.Error() != utils.ErrNoRow() {
  1278. br.Msg = "获取失败"
  1279. br.ErrMsg = "获取活动问题失败,Err:" + err.Error()
  1280. return
  1281. }
  1282. for _, v := range listActcivity {
  1283. v.AskType = "Activity"
  1284. }
  1285. listArticle, err := models.GetArticleAskList(userId)
  1286. if err != nil && err.Error() != utils.ErrNoRow() {
  1287. br.Msg = "获取失败"
  1288. br.ErrMsg = "获取文章问题失败,Err:" + err.Error()
  1289. return
  1290. }
  1291. for _, v := range listArticle {
  1292. v.AskType = "Report"
  1293. listActcivity = append(listActcivity, v)
  1294. }
  1295. resp := new(models.CygxAskListResp)
  1296. resp.List = listActcivity
  1297. br.Msg = "获取成功!"
  1298. br.Ret = 200
  1299. br.Success = true
  1300. br.Data = resp
  1301. }
  1302. // @Title 是否展示免费试用按钮
  1303. // @Description 获取是否展示免费试用按钮接口
  1304. // @Param request body models.IsShow true "type json string"
  1305. // @Success 200
  1306. // @router /isShow/freeButton [get]
  1307. func (this *UserController) IsShow() {
  1308. br := new(models.BaseResponse).Init()
  1309. defer func() {
  1310. this.Data["json"] = br
  1311. this.ServeJSON()
  1312. }()
  1313. user := this.User
  1314. if user == nil {
  1315. br.Msg = "请重新登录"
  1316. br.Ret = 408
  1317. return
  1318. }
  1319. var resp models.IsShow
  1320. detail, err := models.GetConfigByCode("free_trial_card")
  1321. if err != nil {
  1322. br.Msg = "获取数据失败"
  1323. br.ErrMsg = "城市配置信息失败,Err:" + err.Error()
  1324. return
  1325. }
  1326. companyDetail, err := models.GetCompanyDetailByIdGroup(user.CompanyId)
  1327. if err != nil && err.Error() != utils.ErrNoRow() {
  1328. br.Msg = "获取数据失败!"
  1329. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1330. return
  1331. }
  1332. count, err := models.CountCygxUserFreeeButton(user.UserId)
  1333. if err != nil && err.Error() != utils.ErrNoRow() {
  1334. br.Msg = "获取数据失败!"
  1335. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1336. return
  1337. }
  1338. if companyDetail != nil && companyDetail.IsSuspend == 0 {
  1339. if detail.ConfigValue == "1" && (companyDetail.Status == "正式" || companyDetail.Status == "试用" || companyDetail.Status == "永续") && count == 0 {
  1340. resp.IsShow = true
  1341. }
  1342. }
  1343. br.Ret = 200
  1344. br.Success = true
  1345. br.Data = resp
  1346. }
  1347. // @Title 隐藏当天的按钮
  1348. // @Description 隐藏当天的按钮接口
  1349. // @Success 200
  1350. // @router /freeButton/update [post]
  1351. func (this *UserController) FreeButtonUpdate() {
  1352. br := new(models.BaseResponse).Init()
  1353. defer func() {
  1354. this.Data["json"] = br
  1355. this.ServeJSON()
  1356. }()
  1357. user := this.User
  1358. if user == nil {
  1359. br.Msg = "请重新登录"
  1360. br.Ret = 408
  1361. return
  1362. }
  1363. count, err := models.CountCygxUserFreeeButtonByUser(user.UserId)
  1364. if err != nil {
  1365. br.Msg = "获取数据失败!"
  1366. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1367. return
  1368. }
  1369. if count == 0 {
  1370. item := new(models.CygxUserFreeeButton)
  1371. item.UserId = user.UserId
  1372. item.CompanyId = user.CompanyId
  1373. item.CreateTime = time.Now()
  1374. item.ModifyTime = time.Now()
  1375. item.EffectiveTime = time.Now().Format(utils.FormatDate)
  1376. _, err := models.AddCygxUserFreeeButton(item)
  1377. if err != nil {
  1378. br.Msg = "操作失败!"
  1379. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1380. return
  1381. }
  1382. } else {
  1383. err := models.UpdateCygxUserFreeeButton(user.UserId)
  1384. if err != nil {
  1385. br.Msg = "操作失败!"
  1386. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1387. return
  1388. }
  1389. }
  1390. br.Ret = 200
  1391. br.Success = true
  1392. br.Msg = "操作成功!"
  1393. }
  1394. // @Title 权限弹窗是否展示免费月卡
  1395. // @Description 获取权限弹窗是否展示免费月卡接口
  1396. // @Param request body models.IsShow true "type json string"
  1397. // @Success 200
  1398. // @router /isShow/alert [get]
  1399. func (this *UserController) AlertIsShow() {
  1400. br := new(models.BaseResponse).Init()
  1401. defer func() {
  1402. this.Data["json"] = br
  1403. this.ServeJSON()
  1404. }()
  1405. user := this.User
  1406. if user == nil {
  1407. br.Msg = "请重新登录"
  1408. br.Ret = 408
  1409. return
  1410. }
  1411. var resp models.IsShow
  1412. detail, err := models.GetConfigByCode("free_trial_card")
  1413. if err != nil {
  1414. br.Msg = "获取数据失败"
  1415. br.ErrMsg = "城市配置信息失败,Err:" + err.Error()
  1416. return
  1417. }
  1418. if user.CompanyId == 1 && detail.ConfigValue == "1" {
  1419. resp.IsShow = true
  1420. }
  1421. br.Ret = 200
  1422. br.Success = true
  1423. br.Data = resp
  1424. }
  1425. // @Title 分享的时候是否展示免费月卡
  1426. // @Description 获取权限弹窗是否展示免费月卡接口
  1427. // @Param request body models.IsShow true "type json string"
  1428. // @Success 200
  1429. // @router /isShow/share [get]
  1430. func (this *UserController) ShareIsShow() {
  1431. br := new(models.BaseResponse).Init()
  1432. defer func() {
  1433. this.Data["json"] = br
  1434. this.ServeJSON()
  1435. }()
  1436. user := this.User
  1437. if user == nil {
  1438. br.Msg = "请重新登录"
  1439. br.Ret = 408
  1440. return
  1441. }
  1442. var resp models.IsShow
  1443. detail, err := models.GetConfigByCode("free_trial_card")
  1444. if err != nil {
  1445. br.Msg = "获取数据失败"
  1446. br.ErrMsg = "城市配置信息失败,Err:" + err.Error()
  1447. return
  1448. }
  1449. if user.CompanyId != 16 && detail.ConfigValue == "1" {
  1450. resp.IsShow = true
  1451. }
  1452. resp.LinkWxExplain = utils.LINK_WX_EXPLAIN
  1453. br.Ret = 200
  1454. br.Success = true
  1455. br.Data = resp
  1456. }
  1457. // @Title 更改用户微信头像
  1458. // @Description 更改用户微信头像
  1459. // @Param request body models.Headimgurl true "type json string"
  1460. // @Success 200 {object} models.ArticleDetailFileLink
  1461. // @router /headimgurl/update [post]
  1462. func (this *UserController) HeadimgurlUpdate() {
  1463. br := new(models.BaseResponse).Init()
  1464. defer func() {
  1465. this.Data["json"] = br
  1466. this.ServeJSON()
  1467. }()
  1468. user := this.User
  1469. if user == nil {
  1470. br.Msg = "请登录"
  1471. br.ErrMsg = "请登录,用户信息为空"
  1472. br.Ret = 408
  1473. return
  1474. }
  1475. var req models.Headimgurl
  1476. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1477. if err != nil {
  1478. br.Msg = "参数解析异常!"
  1479. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1480. return
  1481. }
  1482. uid := user.UserId
  1483. headimgurl := req.Headimgurl
  1484. if headimgurl == "" {
  1485. br.Msg = "操作失败"
  1486. br.ErrMsg = "头像信息不能为空"
  1487. return
  1488. }
  1489. err = models.UpdateUserHeadimgurl(headimgurl, uid)
  1490. if err != nil {
  1491. br.Msg = "操作失败"
  1492. br.ErrMsg = "头像信息不能为空"
  1493. }
  1494. br.Ret = 200
  1495. br.Success = true
  1496. br.Msg = "操作成功"
  1497. }
  1498. // @Title 登录 (无需token)
  1499. // @Description 登录接口 (无需token)
  1500. // @Param request body models.LoginReq true "type json string"
  1501. // @Success 200 {object} models.LoginResp
  1502. // @router /loginPublic [post]
  1503. func (this *UserCommonController) LoginPublic() {
  1504. br := new(models.BaseResponse).Init()
  1505. defer func() {
  1506. this.Data["json"] = br
  1507. this.ServeJSON()
  1508. }()
  1509. var req models.LoginReq
  1510. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1511. if err != nil {
  1512. br.Msg = "参数解析异常!"
  1513. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1514. return
  1515. }
  1516. mobile := strings.Trim(req.Mobile, " ")
  1517. if req.Mobile == "" {
  1518. br.Msg = "参数错误"
  1519. br.ErrMsg = "参数错误,手机号为空 为空"
  1520. return
  1521. }
  1522. item, err := models.GetMsgCode(req.Mobile, req.VCode)
  1523. if err != nil {
  1524. if err.Error() == utils.ErrNoRow() {
  1525. br.Msg = "验证码错误,请重新输入"
  1526. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  1527. return
  1528. } else {
  1529. br.Msg = "验证码错误,请重新输入"
  1530. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  1531. return
  1532. }
  1533. }
  1534. if item == nil {
  1535. br.Msg = "验证码错误,请重新输入"
  1536. return
  1537. }
  1538. if len(req.Mobile) >= 11 && req.CountryCode == "" {
  1539. req.CountryCode = "86"
  1540. }
  1541. var token string
  1542. tokenItem, err := models.GetSessionMobileTokenByOpenId(mobile)
  1543. if err != nil && err.Error() != utils.ErrNoRow() {
  1544. br.Msg = "登录失败"
  1545. br.ErrMsg = "登录失败,获取token失败:" + err.Error()
  1546. return
  1547. }
  1548. if tokenItem == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  1549. timeUnix := time.Now().Unix()
  1550. timeUnixStr := strconv.FormatInt(timeUnix, 10)
  1551. token = utils.MD5(mobile) + utils.MD5(timeUnixStr)
  1552. //新增session
  1553. {
  1554. session := new(models.CygxSessionMobile)
  1555. session.Mobile = mobile
  1556. session.CreatedTime = time.Now()
  1557. session.LastUpdatedTime = time.Now()
  1558. session.ExpireTime = time.Now().AddDate(0, 1, 0)
  1559. session.AccessToken = token
  1560. err = models.AddCygxSessionMobile(session)
  1561. if err != nil {
  1562. br.Msg = "登录失败"
  1563. br.ErrMsg = "登录失败,新增用户session信息失败:" + err.Error()
  1564. return
  1565. }
  1566. }
  1567. } else {
  1568. token = tokenItem.AccessToken
  1569. }
  1570. resp := new(models.LoginResp)
  1571. resp.Authorization = token
  1572. br.Ret = 200
  1573. br.Success = true
  1574. br.Data = resp
  1575. br.Msg = "登录成功"
  1576. }
  1577. // @Title 获取我的留言
  1578. // @Description 获取我的留言列表
  1579. // @Success 200 {object} models.CygxCommentListResp
  1580. // @router /comment/list [get]
  1581. func (this *UserController) CommnetList() {
  1582. br := new(models.BaseResponse).Init()
  1583. defer func() {
  1584. this.Data["json"] = br
  1585. this.ServeJSON()
  1586. }()
  1587. user := this.User
  1588. if user == nil {
  1589. br.Msg = "请登录"
  1590. br.ErrMsg = "请登录,用户信息为空"
  1591. br.Ret = 408
  1592. return
  1593. }
  1594. userId := this.User.UserId
  1595. commentlist, err := models.GetCommentList(userId)
  1596. if err != nil && err.Error() != utils.ErrNoRow() {
  1597. br.Msg = "获取失败"
  1598. br.ErrMsg = "获取我的留言列表失败,Err:" + err.Error()
  1599. return
  1600. }
  1601. articleLyjhMap, _ := services.GetLyjhArticleMap()
  1602. articleCollectMap, _ := services.GetCygxArticleCollectMap(user.UserId)
  1603. resp := new(models.CygxCommentListResp)
  1604. for _, comment := range commentlist {
  1605. item := models.CygxArticleCommentResp{
  1606. Id: comment.Id,
  1607. UserId: comment.UserId,
  1608. ArticleId: comment.ArticleId,
  1609. IndustryId: comment.IndustryId,
  1610. ActivityId: comment.ActivityId,
  1611. CreateTime: comment.CreateTime,
  1612. Mobile: comment.Mobile,
  1613. Email: comment.Email,
  1614. CompanyId: comment.CompanyId,
  1615. CompanyName: comment.CompanyName,
  1616. Content: comment.Content,
  1617. Title: comment.Title,
  1618. }
  1619. if comment.ArticleId > 0 {
  1620. item.RedirectType = 1
  1621. } else if comment.IndustryId > 0 {
  1622. item.RedirectType = 3
  1623. } else if comment.ActivityId > 0 {
  1624. item.RedirectType = 2
  1625. }
  1626. item.IsCollect = articleCollectMap[comment.ArticleId]
  1627. item.IsRoadShow = articleLyjhMap[comment.ArticleId]
  1628. resp.List = append(resp.List, &item)
  1629. }
  1630. br.Msg = "获取成功!"
  1631. br.Ret = 200
  1632. br.Success = true
  1633. br.Data = resp
  1634. }
  1635. // @Title 获取我的收藏
  1636. // @Description 获取我的收藏列表
  1637. // @Success 200 {object} models.ArticleCollectListResp
  1638. // @router /collect/list/microRoadshow [get]
  1639. func (this *UserController) MicroRoadshowCollectList() {
  1640. br := new(models.BaseResponse).Init()
  1641. defer func() {
  1642. this.Data["json"] = br
  1643. this.ServeJSON()
  1644. }()
  1645. userId := this.User.UserId
  1646. list, err := models.GetUserMicroRoadshowCollectList(userId)
  1647. if err != nil {
  1648. br.Msg = "获取数据失败"
  1649. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1650. return
  1651. }
  1652. resp := new(models.MicroRoadshowCollectList)
  1653. var audioIds []string
  1654. var videoIds []string
  1655. var activityVideoIds []string
  1656. for _, item := range list {
  1657. if item.ActivityVoiceId > 0 {
  1658. audioIds = append(audioIds, strconv.Itoa(item.ActivityVoiceId))
  1659. } else if item.VideoId > 0 {
  1660. videoIds = append(videoIds, strconv.Itoa(item.VideoId))
  1661. } else if item.ActivityVideoId > 0 {
  1662. activityVideoIds = append(activityVideoIds, strconv.Itoa(item.ActivityVideoId))
  1663. }
  1664. }
  1665. resp.AudioIds = strings.Join(audioIds, ",")
  1666. resp.VideoIds = strings.Join(videoIds, ",")
  1667. resp.ActivityVideoIds = strings.Join(activityVideoIds, ",")
  1668. br.Msg = "获取成功!"
  1669. br.Ret = 200
  1670. br.Success = true
  1671. br.Data = resp
  1672. }
  1673. // @Title 新增埋点
  1674. // @Description 新增埋点接口
  1675. // @Success 200 "新增成功!"
  1676. // @router /tracking [get]
  1677. func (this *UserController) Tracking() {
  1678. br := new(models.BaseResponse).Init()
  1679. defer func() {
  1680. this.Data["json"] = br
  1681. this.ServeJSON()
  1682. }()
  1683. user := this.User
  1684. if user == nil {
  1685. br.Msg = "请登录"
  1686. br.ErrMsg = "请登录,用户信息为空"
  1687. br.Ret = 408
  1688. return
  1689. }
  1690. //item := new(models.CygxPageHistoryRecord)
  1691. //item.UserId = user.UserId
  1692. //item.CreateTime = time.Now()
  1693. //item.Mobile = user.Mobile
  1694. //item.Email = user.Email
  1695. //item.CompanyId = user.CompanyId
  1696. //item.CompanyName = user.CompanyName
  1697. //item.Router = this.Ctx.Request.RequestURI
  1698. //item.PageRouter = this.Ctx.Input.Query("PageRouter")
  1699. //
  1700. //go models.AddCygxPageHistoryRecord(item)
  1701. //
  1702. br.Msg = "新增成功!"
  1703. br.Ret = 200
  1704. br.Success = true
  1705. }
  1706. // @Title 未付费申请试用详情
  1707. // @Description 未付费申请试用详情接口
  1708. // @Param ApplyRecordId query int true "申请ID"
  1709. // @Success 200 {object} models.ArticleCollectListResp
  1710. // @Success 200
  1711. // @router /apply/detail [get]
  1712. func (this *UserController) ApplyDetail() {
  1713. br := new(models.BaseResponse).Init()
  1714. defer func() {
  1715. this.Data["json"] = br
  1716. this.ServeJSON()
  1717. }()
  1718. user := this.User
  1719. if user == nil {
  1720. br.Msg = "请登录"
  1721. br.ErrMsg = "请登录,SysUser Is Empty"
  1722. br.Ret = 408
  1723. return
  1724. }
  1725. resp := new(models.CygxApplyRecordResp)
  1726. applyRecordId, _ := this.GetInt("ApplyRecordId")
  1727. detail, err := models.GetCygxApplyRecordById(applyRecordId)
  1728. if err != nil {
  1729. br.Msg = "获取数据失败"
  1730. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1731. return
  1732. }
  1733. resp.Detail = detail
  1734. br.Msg = "申请成功!"
  1735. br.Ret = 200
  1736. br.Success = true
  1737. br.Data = resp
  1738. }