user.go 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776
  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. go services.SendPermissionApplyTemplateMsgAdmin(req, mobile, applyMethod, isResearch)
  1082. err = models.AddApplyRecord(&req, user.Mobile, user.CompanyName, uid, user.CompanyId, CompanyIdType)
  1083. if err != nil {
  1084. br.Msg = "申请失败"
  1085. br.ErrMsg = "申请失败,Err:" + err.Error()
  1086. return
  1087. }
  1088. //添加成功后,设置5分钟缓存,不允许重复添加
  1089. //utils.Rc.SetNX(cacheKey, user.Mobile, time.Second*60)
  1090. br.Msg = "申请成功!"
  1091. br.Ret = 200
  1092. br.Success = true
  1093. br.Data = sellerMobile
  1094. }
  1095. // @Title 是否需要填写区号
  1096. // @Description 获取是否需要填写区号接口
  1097. // @Success 200 {object} models.CountryCode
  1098. // @router /countryCcode/isNeedAdd [get]
  1099. func (this *UserController) CountryCcode() {
  1100. br := new(models.BaseResponse).Init()
  1101. defer func() {
  1102. this.Data["json"] = br
  1103. this.ServeJSON()
  1104. }()
  1105. user := this.User
  1106. uid := user.UserId
  1107. if user == nil {
  1108. br.Msg = "请登录"
  1109. br.ErrMsg = "请登录,用户信息为空"
  1110. br.Ret = 408
  1111. return
  1112. }
  1113. //if uid == 0 {
  1114. // br.Msg = "请登录"
  1115. // br.ErrMsg = "请登录,用户信息为空"
  1116. // br.Ret = 408
  1117. // return
  1118. //}
  1119. resp := new(models.CountryCode)
  1120. if user.CountryCode == "" && len(user.Mobile) >= 11 {
  1121. err := models.ChangeUserOutboundMobileByMobile(uid)
  1122. if err != nil {
  1123. br.Msg = "操作失败"
  1124. br.ErrMsg = "操作失败,Err:" + err.Error()
  1125. return
  1126. }
  1127. }
  1128. if user.CountryCode == "" && user.Mobile != "" && len(user.Mobile) < 11 {
  1129. resp.IsNeedAddCountryCode = true
  1130. }
  1131. if user.OutboundMobile != "" {
  1132. resp.IsNeedAddCountryCode = false
  1133. }
  1134. br.Ret = 200
  1135. br.Success = true
  1136. br.Msg = "获取成功"
  1137. br.Data = resp
  1138. }
  1139. // @Title 上传用户区号
  1140. // @Description 上传用户区号接口
  1141. // @Param request body models.CountryCodeItem true "type json string"
  1142. // @Success Ret=200 新增成功
  1143. // @router /countryCcode/Add [POST]
  1144. func (this *UserController) AddCountryCcode() {
  1145. br := new(models.BaseResponse).Init()
  1146. defer func() {
  1147. this.Data["json"] = br
  1148. this.ServeJSON()
  1149. }()
  1150. user := this.User
  1151. if user == nil {
  1152. br.Msg = "请登录"
  1153. br.ErrMsg = "请登录,用户信息为空"
  1154. br.Ret = 408
  1155. return
  1156. }
  1157. var req models.CountryCodeItem
  1158. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1159. if err != nil {
  1160. br.Msg = "参数解析异常!"
  1161. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1162. return
  1163. }
  1164. err = models.AddCountryCode(req.CountryCode, user)
  1165. if err != nil {
  1166. br.Msg = "获取信息失败"
  1167. br.ErrMsg = "获取信息失败,Err:" + err.Error()
  1168. return
  1169. }
  1170. br.Ret = 200
  1171. br.Success = true
  1172. br.Msg = "新增成功"
  1173. }
  1174. // @Title 用户修改外呼手机号以及区号
  1175. // @Description 用户修改外呼手机号以及区号接口
  1176. // @Param request body models.OutboundMobileItem true "type json string"
  1177. // @Success Ret=200 操作成功
  1178. // @router /countryCcode/addOutboundMobile [POST]
  1179. func (this *UserController) AddOutboundMobile() {
  1180. br := new(models.BaseResponse).Init()
  1181. defer func() {
  1182. this.Data["json"] = br
  1183. this.ServeJSON()
  1184. }()
  1185. user := this.User
  1186. uid := user.UserId
  1187. if user == nil {
  1188. br.Msg = "请登录"
  1189. br.ErrMsg = "请登录,用户信息为空"
  1190. br.Ret = 408
  1191. return
  1192. }
  1193. var req models.OutboundMobileItem
  1194. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1195. if err != nil {
  1196. br.Msg = "参数解析异常!"
  1197. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1198. return
  1199. }
  1200. if !utils.ValidateFixedTelephoneFormatatEasy(req.OutboundMobile) {
  1201. br.Msg = "号码格式有误,请重新填写!"
  1202. br.ErrMsg = "号码格式有误,请重新填写" + req.OutboundMobile
  1203. return
  1204. }
  1205. if req.OutboundMobile == "" {
  1206. br.Msg = "请填写区号!"
  1207. return
  1208. }
  1209. item := new(models.OutboundMobileItem)
  1210. item.OutboundMobile = req.OutboundMobile
  1211. item.OutboundCountryCode = req.OutboundCountryCode
  1212. item.ActivityId = req.ActivityId
  1213. if req.ActivityId == 0 {
  1214. err = models.AddOutboundMobile(item, uid)
  1215. } else {
  1216. if user.Mobile == "" && user.OutboundMobile == "" {
  1217. items := new(models.CygxActivitySignup)
  1218. items.UserId = uid
  1219. items.ActivityId = req.ActivityId
  1220. items.CreateTime = time.Now()
  1221. items.Mobile = user.Mobile
  1222. items.Email = user.Email
  1223. items.CompanyId = user.CompanyId
  1224. items.CompanyName = user.CompanyName
  1225. items.SignupType = 1
  1226. items.FailType = 0
  1227. items.DoFailType = 0
  1228. items.OutboundMobile = req.OutboundMobile
  1229. items.CountryCode = req.OutboundCountryCode
  1230. _, err = models.AddActivitySignupFromEmail(items)
  1231. } else {
  1232. total, err := models.GetActivityCountByIdWithUid(item.ActivityId, uid)
  1233. if total == 0 {
  1234. br.Msg = "报名信息不存在"
  1235. br.ErrMsg = "报名信息不存在,Err:" + "活动ActivityId:" + strconv.Itoa(item.ActivityId) + "用户Uid:" + strconv.Itoa(uid)
  1236. return
  1237. }
  1238. if err != nil {
  1239. br.Msg = "操作失败"
  1240. br.ErrMsg = "操作失败,Err:" + err.Error()
  1241. return
  1242. }
  1243. err = models.AddOutboundMobile(item, uid)
  1244. }
  1245. }
  1246. if err != nil {
  1247. br.Msg = "操作失败"
  1248. br.ErrMsg = "操作失败,Err:" + err.Error()
  1249. return
  1250. }
  1251. br.Ret = 200
  1252. br.Success = true
  1253. br.Msg = "操作成功"
  1254. }
  1255. // @Title 获取我的提问
  1256. // @Description 获取我的提问列表
  1257. // @Success 200 {object} models.CygxAskListResp
  1258. // @router /ask/list [get]
  1259. func (this *UserController) AskList() {
  1260. br := new(models.BaseResponse).Init()
  1261. defer func() {
  1262. this.Data["json"] = br
  1263. this.ServeJSON()
  1264. }()
  1265. user := this.User
  1266. if user == nil {
  1267. br.Msg = "请登录"
  1268. br.ErrMsg = "请登录,用户信息为空"
  1269. br.Ret = 408
  1270. return
  1271. }
  1272. userId := this.User.UserId
  1273. listActcivity, err := models.GetActivityAskList(userId)
  1274. if err != nil && err.Error() != utils.ErrNoRow() {
  1275. br.Msg = "获取失败"
  1276. br.ErrMsg = "获取活动问题失败,Err:" + err.Error()
  1277. return
  1278. }
  1279. for _, v := range listActcivity {
  1280. v.AskType = "Activity"
  1281. }
  1282. listArticle, err := models.GetArticleAskList(userId)
  1283. if err != nil && err.Error() != utils.ErrNoRow() {
  1284. br.Msg = "获取失败"
  1285. br.ErrMsg = "获取文章问题失败,Err:" + err.Error()
  1286. return
  1287. }
  1288. for _, v := range listArticle {
  1289. v.AskType = "Report"
  1290. listActcivity = append(listActcivity, v)
  1291. }
  1292. resp := new(models.CygxAskListResp)
  1293. resp.List = listActcivity
  1294. br.Msg = "获取成功!"
  1295. br.Ret = 200
  1296. br.Success = true
  1297. br.Data = resp
  1298. }
  1299. // @Title 是否展示免费试用按钮
  1300. // @Description 获取是否展示免费试用按钮接口
  1301. // @Param request body models.IsShow true "type json string"
  1302. // @Success 200
  1303. // @router /isShow/freeButton [get]
  1304. func (this *UserController) IsShow() {
  1305. br := new(models.BaseResponse).Init()
  1306. defer func() {
  1307. this.Data["json"] = br
  1308. this.ServeJSON()
  1309. }()
  1310. user := this.User
  1311. if user == nil {
  1312. br.Msg = "请重新登录"
  1313. br.Ret = 408
  1314. return
  1315. }
  1316. var resp models.IsShow
  1317. detail, err := models.GetConfigByCode("free_trial_card")
  1318. if err != nil {
  1319. br.Msg = "获取数据失败"
  1320. br.ErrMsg = "城市配置信息失败,Err:" + err.Error()
  1321. return
  1322. }
  1323. companyDetail, err := models.GetCompanyDetailByIdGroup(user.CompanyId)
  1324. if err != nil && err.Error() != utils.ErrNoRow() {
  1325. br.Msg = "获取数据失败!"
  1326. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1327. return
  1328. }
  1329. count, err := models.CountCygxUserFreeeButton(user.UserId)
  1330. if err != nil && err.Error() != utils.ErrNoRow() {
  1331. br.Msg = "获取数据失败!"
  1332. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1333. return
  1334. }
  1335. if companyDetail != nil && companyDetail.IsSuspend == 0 {
  1336. if detail.ConfigValue == "1" && (companyDetail.Status == "正式" || companyDetail.Status == "试用" || companyDetail.Status == "永续") && count == 0 {
  1337. resp.IsShow = true
  1338. }
  1339. }
  1340. br.Ret = 200
  1341. br.Success = true
  1342. br.Data = resp
  1343. }
  1344. // @Title 隐藏当天的按钮
  1345. // @Description 隐藏当天的按钮接口
  1346. // @Success 200
  1347. // @router /freeButton/update [post]
  1348. func (this *UserController) FreeButtonUpdate() {
  1349. br := new(models.BaseResponse).Init()
  1350. defer func() {
  1351. this.Data["json"] = br
  1352. this.ServeJSON()
  1353. }()
  1354. user := this.User
  1355. if user == nil {
  1356. br.Msg = "请重新登录"
  1357. br.Ret = 408
  1358. return
  1359. }
  1360. count, err := models.CountCygxUserFreeeButtonByUser(user.UserId)
  1361. if err != nil {
  1362. br.Msg = "获取数据失败!"
  1363. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1364. return
  1365. }
  1366. if count == 0 {
  1367. item := new(models.CygxUserFreeeButton)
  1368. item.UserId = user.UserId
  1369. item.CompanyId = user.CompanyId
  1370. item.CreateTime = time.Now()
  1371. item.ModifyTime = time.Now()
  1372. item.EffectiveTime = time.Now().Format(utils.FormatDate)
  1373. _, err := models.AddCygxUserFreeeButton(item)
  1374. if err != nil {
  1375. br.Msg = "操作失败!"
  1376. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1377. return
  1378. }
  1379. } else {
  1380. err := models.UpdateCygxUserFreeeButton(user.UserId)
  1381. if err != nil {
  1382. br.Msg = "操作失败!"
  1383. br.ErrMsg = "获取客户详情失败,Err:" + err.Error()
  1384. return
  1385. }
  1386. }
  1387. br.Ret = 200
  1388. br.Success = true
  1389. br.Msg = "操作成功!"
  1390. }
  1391. // @Title 权限弹窗是否展示免费月卡
  1392. // @Description 获取权限弹窗是否展示免费月卡接口
  1393. // @Param request body models.IsShow true "type json string"
  1394. // @Success 200
  1395. // @router /isShow/alert [get]
  1396. func (this *UserController) AlertIsShow() {
  1397. br := new(models.BaseResponse).Init()
  1398. defer func() {
  1399. this.Data["json"] = br
  1400. this.ServeJSON()
  1401. }()
  1402. user := this.User
  1403. if user == nil {
  1404. br.Msg = "请重新登录"
  1405. br.Ret = 408
  1406. return
  1407. }
  1408. var resp models.IsShow
  1409. detail, err := models.GetConfigByCode("free_trial_card")
  1410. if err != nil {
  1411. br.Msg = "获取数据失败"
  1412. br.ErrMsg = "城市配置信息失败,Err:" + err.Error()
  1413. return
  1414. }
  1415. if user.CompanyId == 1 && detail.ConfigValue == "1" {
  1416. resp.IsShow = true
  1417. }
  1418. br.Ret = 200
  1419. br.Success = true
  1420. br.Data = resp
  1421. }
  1422. // @Title 分享的时候是否展示免费月卡
  1423. // @Description 获取权限弹窗是否展示免费月卡接口
  1424. // @Param request body models.IsShow true "type json string"
  1425. // @Success 200
  1426. // @router /isShow/share [get]
  1427. func (this *UserController) ShareIsShow() {
  1428. br := new(models.BaseResponse).Init()
  1429. defer func() {
  1430. this.Data["json"] = br
  1431. this.ServeJSON()
  1432. }()
  1433. user := this.User
  1434. if user == nil {
  1435. br.Msg = "请重新登录"
  1436. br.Ret = 408
  1437. return
  1438. }
  1439. var resp models.IsShow
  1440. detail, err := models.GetConfigByCode("free_trial_card")
  1441. if err != nil {
  1442. br.Msg = "获取数据失败"
  1443. br.ErrMsg = "城市配置信息失败,Err:" + err.Error()
  1444. return
  1445. }
  1446. if user.CompanyId != 16 && detail.ConfigValue == "1" {
  1447. resp.IsShow = true
  1448. }
  1449. resp.LinkWxExplain = utils.LINK_WX_EXPLAIN
  1450. br.Ret = 200
  1451. br.Success = true
  1452. br.Data = resp
  1453. }
  1454. // @Title 更改用户微信头像
  1455. // @Description 更改用户微信头像
  1456. // @Param request body models.Headimgurl true "type json string"
  1457. // @Success 200 {object} models.ArticleDetailFileLink
  1458. // @router /headimgurl/update [post]
  1459. func (this *UserController) HeadimgurlUpdate() {
  1460. br := new(models.BaseResponse).Init()
  1461. defer func() {
  1462. this.Data["json"] = br
  1463. this.ServeJSON()
  1464. }()
  1465. user := this.User
  1466. if user == nil {
  1467. br.Msg = "请登录"
  1468. br.ErrMsg = "请登录,用户信息为空"
  1469. br.Ret = 408
  1470. return
  1471. }
  1472. var req models.Headimgurl
  1473. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1474. if err != nil {
  1475. br.Msg = "参数解析异常!"
  1476. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1477. return
  1478. }
  1479. uid := user.UserId
  1480. headimgurl := req.Headimgurl
  1481. if headimgurl == "" {
  1482. br.Msg = "操作失败"
  1483. br.ErrMsg = "头像信息不能为空"
  1484. return
  1485. }
  1486. err = models.UpdateUserHeadimgurl(headimgurl, uid)
  1487. if err != nil {
  1488. br.Msg = "操作失败"
  1489. br.ErrMsg = "头像信息不能为空"
  1490. }
  1491. br.Ret = 200
  1492. br.Success = true
  1493. br.Msg = "操作成功"
  1494. }
  1495. // @Title 登录 (无需token)
  1496. // @Description 登录接口 (无需token)
  1497. // @Param request body models.LoginReq true "type json string"
  1498. // @Success 200 {object} models.LoginResp
  1499. // @router /loginPublic [post]
  1500. func (this *UserCommonController) LoginPublic() {
  1501. br := new(models.BaseResponse).Init()
  1502. defer func() {
  1503. this.Data["json"] = br
  1504. this.ServeJSON()
  1505. }()
  1506. var req models.LoginReq
  1507. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1508. if err != nil {
  1509. br.Msg = "参数解析异常!"
  1510. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1511. return
  1512. }
  1513. mobile := strings.Trim(req.Mobile, " ")
  1514. if req.Mobile == "" {
  1515. br.Msg = "参数错误"
  1516. br.ErrMsg = "参数错误,手机号为空 为空"
  1517. return
  1518. }
  1519. item, err := models.GetMsgCode(req.Mobile, req.VCode)
  1520. if err != nil {
  1521. if err.Error() == utils.ErrNoRow() {
  1522. br.Msg = "验证码错误,请重新输入"
  1523. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  1524. return
  1525. } else {
  1526. br.Msg = "验证码错误,请重新输入"
  1527. br.ErrMsg = "校验验证码失败,Err:" + err.Error()
  1528. return
  1529. }
  1530. }
  1531. if item == nil {
  1532. br.Msg = "验证码错误,请重新输入"
  1533. return
  1534. }
  1535. if len(req.Mobile) >= 11 && req.CountryCode == "" {
  1536. req.CountryCode = "86"
  1537. }
  1538. var token string
  1539. tokenItem, err := models.GetSessionMobileTokenByOpenId(mobile)
  1540. if err != nil && err.Error() != utils.ErrNoRow() {
  1541. br.Msg = "登录失败"
  1542. br.ErrMsg = "登录失败,获取token失败:" + err.Error()
  1543. return
  1544. }
  1545. if tokenItem == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  1546. timeUnix := time.Now().Unix()
  1547. timeUnixStr := strconv.FormatInt(timeUnix, 10)
  1548. token = utils.MD5(mobile) + utils.MD5(timeUnixStr)
  1549. //新增session
  1550. {
  1551. session := new(models.CygxSessionMobile)
  1552. session.Mobile = mobile
  1553. session.CreatedTime = time.Now()
  1554. session.LastUpdatedTime = time.Now()
  1555. session.ExpireTime = time.Now().AddDate(0, 1, 0)
  1556. session.AccessToken = token
  1557. err = models.AddCygxSessionMobile(session)
  1558. if err != nil {
  1559. br.Msg = "登录失败"
  1560. br.ErrMsg = "登录失败,新增用户session信息失败:" + err.Error()
  1561. return
  1562. }
  1563. }
  1564. } else {
  1565. token = tokenItem.AccessToken
  1566. }
  1567. resp := new(models.LoginResp)
  1568. resp.Authorization = token
  1569. br.Ret = 200
  1570. br.Success = true
  1571. br.Data = resp
  1572. br.Msg = "登录成功"
  1573. }
  1574. // @Title 获取我的留言
  1575. // @Description 获取我的留言列表
  1576. // @Success 200 {object} models.CygxCommentListResp
  1577. // @router /comment/list [get]
  1578. func (this *UserController) CommnetList() {
  1579. br := new(models.BaseResponse).Init()
  1580. defer func() {
  1581. this.Data["json"] = br
  1582. this.ServeJSON()
  1583. }()
  1584. user := this.User
  1585. if user == nil {
  1586. br.Msg = "请登录"
  1587. br.ErrMsg = "请登录,用户信息为空"
  1588. br.Ret = 408
  1589. return
  1590. }
  1591. userId := this.User.UserId
  1592. commentlist, err := models.GetCommentList(userId)
  1593. if err != nil && err.Error() != utils.ErrNoRow() {
  1594. br.Msg = "获取失败"
  1595. br.ErrMsg = "获取我的留言列表失败,Err:" + err.Error()
  1596. return
  1597. }
  1598. articleLyjhMap, _ := services.GetLyjhArticleMap()
  1599. articleCollectMap, _ := services.GetCygxArticleCollectMap(user.UserId)
  1600. resp := new(models.CygxCommentListResp)
  1601. for _, comment := range commentlist {
  1602. item := models.CygxArticleCommentResp{
  1603. Id: comment.Id,
  1604. UserId: comment.UserId,
  1605. ArticleId: comment.ArticleId,
  1606. IndustryId: comment.IndustryId,
  1607. ActivityId: comment.ActivityId,
  1608. CreateTime: comment.CreateTime,
  1609. Mobile: comment.Mobile,
  1610. Email: comment.Email,
  1611. CompanyId: comment.CompanyId,
  1612. CompanyName: comment.CompanyName,
  1613. Content: comment.Content,
  1614. Title: comment.Title,
  1615. }
  1616. if comment.ArticleId > 0 {
  1617. item.RedirectType = 1
  1618. } else if comment.IndustryId > 0 {
  1619. item.RedirectType = 3
  1620. } else if comment.ActivityId > 0 {
  1621. item.RedirectType = 2
  1622. }
  1623. item.IsCollect = articleCollectMap[comment.ArticleId]
  1624. item.IsRoadShow = articleLyjhMap[comment.ArticleId]
  1625. resp.List = append(resp.List, &item)
  1626. }
  1627. br.Msg = "获取成功!"
  1628. br.Ret = 200
  1629. br.Success = true
  1630. br.Data = resp
  1631. }
  1632. // @Title 获取我的收藏
  1633. // @Description 获取我的收藏列表
  1634. // @Success 200 {object} models.ArticleCollectListResp
  1635. // @router /collect/list/microRoadshow [get]
  1636. func (this *UserController) MicroRoadshowCollectList() {
  1637. br := new(models.BaseResponse).Init()
  1638. defer func() {
  1639. this.Data["json"] = br
  1640. this.ServeJSON()
  1641. }()
  1642. userId := this.User.UserId
  1643. list, err := models.GetUserMicroRoadshowCollectList(userId)
  1644. if err != nil {
  1645. br.Msg = "获取数据失败"
  1646. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  1647. return
  1648. }
  1649. resp := new(models.MicroRoadshowCollectList)
  1650. var audioIds []string
  1651. var videoIds []string
  1652. var activityVideoIds []string
  1653. for _, item := range list {
  1654. if item.ActivityVoiceId > 0 {
  1655. audioIds = append(audioIds, strconv.Itoa(item.ActivityVoiceId))
  1656. } else if item.VideoId > 0 {
  1657. videoIds = append(videoIds, strconv.Itoa(item.VideoId))
  1658. } else if item.ActivityVideoId > 0 {
  1659. activityVideoIds = append(activityVideoIds, strconv.Itoa(item.ActivityVideoId))
  1660. }
  1661. }
  1662. resp.AudioIds = strings.Join(audioIds, ",")
  1663. resp.VideoIds = strings.Join(videoIds, ",")
  1664. resp.ActivityVideoIds = strings.Join(activityVideoIds, ",")
  1665. br.Msg = "获取成功!"
  1666. br.Ret = 200
  1667. br.Success = true
  1668. br.Data = resp
  1669. }
  1670. // @Title 新增埋点
  1671. // @Description 新增埋点接口
  1672. // @Success 200 "新增成功!"
  1673. // @router /tracking [get]
  1674. func (this *UserController) Tracking() {
  1675. br := new(models.BaseResponse).Init()
  1676. defer func() {
  1677. this.Data["json"] = br
  1678. this.ServeJSON()
  1679. }()
  1680. user := this.User
  1681. if user == nil {
  1682. br.Msg = "请登录"
  1683. br.ErrMsg = "请登录,用户信息为空"
  1684. br.Ret = 408
  1685. return
  1686. }
  1687. //item := new(models.CygxPageHistoryRecord)
  1688. //item.UserId = user.UserId
  1689. //item.CreateTime = time.Now()
  1690. //item.Mobile = user.Mobile
  1691. //item.Email = user.Email
  1692. //item.CompanyId = user.CompanyId
  1693. //item.CompanyName = user.CompanyName
  1694. //item.Router = this.Ctx.Request.RequestURI
  1695. //item.PageRouter = this.Ctx.Input.Query("PageRouter")
  1696. //
  1697. //go models.AddCygxPageHistoryRecord(item)
  1698. //
  1699. br.Msg = "新增成功!"
  1700. br.Ret = 200
  1701. br.Success = true
  1702. }