user.go 53 KB

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