user.go 52 KB

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