user_controller.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. package user
  2. import (
  3. "encoding/xml"
  4. "eta/eta_mini_ht_api/common/component/cache"
  5. logger "eta/eta_mini_ht_api/common/component/log"
  6. "eta/eta_mini_ht_api/common/exception"
  7. authUtils "eta/eta_mini_ht_api/common/utils/auth"
  8. "eta/eta_mini_ht_api/controllers"
  9. "eta/eta_mini_ht_api/service/auth"
  10. "eta/eta_mini_ht_api/service/user"
  11. "fmt"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. // UserController Operations about Users
  17. type UserController struct {
  18. controllers.BaseController
  19. redis *cache.RedisCache
  20. }
  21. func (u *UserController) Prepare() {
  22. u.redis = cache.GetInstance()
  23. }
  24. type LoginCode struct {
  25. Code int `json:"code"`
  26. Msg string `json:"msg"`
  27. }
  28. // Get @Title GetAll
  29. // @Description get all Users
  30. // @Success 200 {object} models.User
  31. // @router / [get]
  32. func (u *UserController) Get() {
  33. logger.Warn("查询用户列表:%s")
  34. fmt.Print("查询用户列表")
  35. u.ServeJSON()
  36. }
  37. type FeedbackReq struct {
  38. Mobile string `json:"mobile"`
  39. Message string `json:"message"`
  40. }
  41. type FollowAnalystReq struct {
  42. AnalystId int `json:"analystId"`
  43. AnalystName string `json:"analystName"`
  44. FollowType string `json:"followType"`
  45. Mobile string `json:"mobile"`
  46. ByName bool `json:"byName"`
  47. }
  48. // Feedback 用户意见反馈
  49. // @Summary 用户意见反馈
  50. // @Description 用户意见反馈
  51. // @Success 200 {object} controllers.BaseResponse
  52. // @router /feedback [post]
  53. func (u *UserController) Feedback() {
  54. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  55. result = u.InitWrapData("提交反馈失败")
  56. feedback := new(FeedbackReq)
  57. u.GetPostParams(feedback)
  58. if !authUtils.IsValidMobile(feedback.Mobile) {
  59. u.FailedResult("手机号非法", result)
  60. err = exception.New(exception.IllegalPhoneNumber)
  61. return
  62. }
  63. var userInfo user.User
  64. userInfo = u.Data["user"].(user.User)
  65. if userInfo.Mobile != feedback.Mobile {
  66. u.FailedResult("非当前用户的手机号提交", result)
  67. err = exception.New(exception.NotCurrentUserError)
  68. return
  69. }
  70. if feedback.Message == "" {
  71. u.FailedResult("反馈信息不能为空", result)
  72. err = exception.New(exception.FeedBackMsgEmpty)
  73. return
  74. }
  75. err = user.FeedBack(userInfo.Id, feedback.Mobile, feedback.Message)
  76. if err != nil {
  77. err = exception.New(exception.FeedBackError)
  78. u.FailedResult("提交反馈失败", result)
  79. return
  80. }
  81. u.SuccessResult("提交反馈成功", nil, result)
  82. return
  83. })
  84. }
  85. type FollowResp struct {
  86. AnalystId int `json:"analystId"`
  87. FollowedType string `json:"FollowedType"`
  88. }
  89. type FollowAnalystsReq struct {
  90. AnalystNames string `json:"analystNames"`
  91. FollowType string `json:"followType"`
  92. Mobile string `json:"mobile"`
  93. }
  94. // FollowAnalysts 批量关注研究员
  95. // @Summary 批量关注研究员
  96. // @Description 批量关注研究员
  97. // @Success 200 {object} controllers.BaseResponse
  98. // @router /followAnalysts [post]
  99. func (u *UserController) FollowAnalysts() {
  100. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  101. result = u.InitWrapData("批量关注失败")
  102. followAnalyst := new(FollowAnalystsReq)
  103. u.GetPostParams(followAnalyst)
  104. if !authUtils.IsValidMobile(followAnalyst.Mobile) {
  105. u.FailedResult("手机号非法", result)
  106. err = exception.New(exception.IllegalPhoneNumber)
  107. return
  108. }
  109. var userInfo user.User
  110. userInfo = u.Data["user"].(user.User)
  111. if userInfo.Mobile != followAnalyst.Mobile {
  112. u.FailedResult("非当前用户的手机号提交", result)
  113. err = exception.New(exception.NotCurrentUserError)
  114. return
  115. }
  116. if !checkFollowType(followAnalyst.FollowType) {
  117. u.FailedResult("关注状态非法", result)
  118. err = exception.New(exception.IllegalFollowType)
  119. return
  120. }
  121. var msg string
  122. switch followAnalyst.FollowType {
  123. case "following":
  124. msg = "批量关注研究员"
  125. case "unfollowed":
  126. msg = "批量取消关注研究员"
  127. }
  128. var nameList []string
  129. names := followAnalyst.AnalystNames
  130. if strings.HasPrefix(names, ",") {
  131. names = names[1:len(names)]
  132. }
  133. if strings.HasSuffix(names, ",") {
  134. names = names[0 : len(names)-1]
  135. }
  136. if names == "" {
  137. nameList = []string{}
  138. } else {
  139. nameList = strings.Split(names, ",")
  140. }
  141. for i := 0; i < len(nameList); i++ {
  142. nameList[i] = strings.TrimSpace(nameList[i])
  143. if nameList[i] == "" {
  144. u.FailedResult("通过研究员姓名关注失败", result)
  145. err = exception.New(exception.AnalystNameEmptyError)
  146. return
  147. }
  148. }
  149. err = user.FollowAnalystsByName(userInfo.Id, nameList, followAnalyst.FollowType)
  150. if err != nil {
  151. u.FailedResult(msg+"失败", result)
  152. return
  153. }
  154. u.SuccessResult(msg+"成功", nil, result)
  155. return
  156. })
  157. }
  158. // CheckFollowStatus 获取关注状态
  159. // @Summary 获取关注状态
  160. // @Description 获取关注状态
  161. // @Success 200 {object} controllers.BaseResponse
  162. // @router /checkFollowStatus [get]
  163. func (u *UserController) CheckFollowStatus(names string) {
  164. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  165. result = u.InitWrapData("获取关注状态失败")
  166. var userInfo user.User
  167. userInfo = u.Data["user"].(user.User)
  168. var nameList []string
  169. if strings.HasPrefix(names, ",") {
  170. names = names[1:len(names)]
  171. }
  172. if strings.HasSuffix(names, ",") {
  173. names = names[0 : len(names)-1]
  174. }
  175. if names == "" {
  176. nameList = []string{}
  177. } else {
  178. nameList = strings.Split(names, ",")
  179. }
  180. for i := 0; i < len(nameList); i++ {
  181. nameList[i] = strings.TrimSpace(nameList[i])
  182. }
  183. list, err := user.CheckFollowStatusByNames(userInfo.Id, nameList)
  184. if err != nil {
  185. u.FailedResult("获取关注状态失败", result)
  186. return
  187. }
  188. u.SuccessResult("获取关注状态成功", list, result)
  189. return
  190. })
  191. }
  192. // FollowAnalyst 关注研究员
  193. // @Summary 关注研究员
  194. // @Description 关注研究员
  195. // @Success 200 {object} controllers.BaseResponse
  196. // @router /followAnalyst [post]
  197. func (u *UserController) FollowAnalyst() {
  198. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  199. result = u.InitWrapData("")
  200. followAnalyst := new(FollowAnalystReq)
  201. u.GetPostParams(followAnalyst)
  202. if !authUtils.IsValidMobile(followAnalyst.Mobile) {
  203. u.FailedResult("手机号非法", result)
  204. err = exception.New(exception.IllegalPhoneNumber)
  205. return
  206. }
  207. var userInfo user.User
  208. userInfo = u.Data["user"].(user.User)
  209. if userInfo.Mobile != followAnalyst.Mobile {
  210. u.FailedResult("非当前用户的手机号提交", result)
  211. err = exception.New(exception.NotCurrentUserError)
  212. return
  213. }
  214. if !checkFollowType(followAnalyst.FollowType) {
  215. u.FailedResult("关注状态非法", result)
  216. err = exception.New(exception.IllegalFollowType)
  217. return
  218. }
  219. var msg string
  220. switch followAnalyst.FollowType {
  221. case "following":
  222. msg = "关注研究员"
  223. case "unfollowed":
  224. msg = "取消关注研究员"
  225. }
  226. if followAnalyst.ByName {
  227. logger.Info("通过研究员姓名关注")
  228. if followAnalyst.AnalystName == "" {
  229. u.FailedResult("通过研究员姓名关注失败", result)
  230. err = exception.New(exception.AnalystNameEmptyError)
  231. return
  232. }
  233. err = user.FollowAnalystByName(userInfo.Id, followAnalyst.AnalystName, followAnalyst.FollowType)
  234. } else {
  235. err = user.FollowAnalyst(userInfo.Id, followAnalyst.AnalystId, followAnalyst.FollowType)
  236. }
  237. if err != nil {
  238. u.FailedResult(msg+"失败", result)
  239. return
  240. }
  241. resp := FollowResp{
  242. AnalystId: followAnalyst.AnalystId,
  243. FollowedType: followAnalyst.FollowType,
  244. }
  245. u.SuccessResult(msg+"成功", resp, result)
  246. return
  247. })
  248. }
  249. func checkFollowType(followType string) bool {
  250. return followType == "following" || followType == "unfollowed"
  251. }
  252. // FollowingAnalysts 关注研究员
  253. // @Summary 关注研究员
  254. // @Description 关注研究员
  255. // @Success 200 {object} controllers.BaseResponse
  256. // @router /followingAnalysts [get]
  257. func (u *UserController) FollowingAnalysts(analystId int) {
  258. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  259. result = u.InitWrapData("获取研究员详情失败")
  260. fmt.Println(analystId)
  261. userInfo := u.Data["user"].(user.User)
  262. detail, err := user.GetAnalystDetail(userInfo.Id, analystId)
  263. if err != nil {
  264. u.FailedResult("获取研究员详情失败", result)
  265. return
  266. }
  267. u.SuccessResult("获取研究员详情成功", detail, result)
  268. return
  269. })
  270. }
  271. type UserProfileReq struct {
  272. UserName string `json:"userName"`
  273. Mobile string `json:"mobile"`
  274. }
  275. // Profile 获取用户信息
  276. // @Summary 获取用户信息
  277. // @Description 获取用户信息
  278. // @Success 200 {object} controllers.BaseResponse
  279. // @router /profile [get]
  280. func (u *UserController) Profile() {
  281. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  282. result = u.InitWrapData("获取用户信息详情失败")
  283. userInfo := u.Data["user"].(user.User)
  284. u.SuccessResult("获取研究员详情成功", covertToUserProfile(userInfo), result)
  285. return
  286. })
  287. }
  288. // FollowingAnalystList 获取关注动态列表
  289. // @Summary 获取关注动态列表
  290. // @Description 获取关注动态列表
  291. // @Success 200 {object} controllers.BaseResponse
  292. // @router /followingAnalystList [get]
  293. func (u *UserController) FollowingAnalystList() {
  294. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  295. result = u.InitWrapData("获取研究员详情失败")
  296. userInfo := u.Data["user"].(user.User)
  297. detail, err := user.GetFollowingAnalystList(userInfo.Id)
  298. if err != nil {
  299. u.FailedResult("获取研究员详情失败", result)
  300. return
  301. }
  302. u.SuccessResult("获取研究员详情成功", detail, result)
  303. return
  304. })
  305. }
  306. // UnReadMessageList 获取未读消息
  307. // @Summary 获取未读消息
  308. // @Description 获取未读消息
  309. // @Success 200 {object} controllers.BaseResponse
  310. // @router /message [get]
  311. func (u *UserController) UnReadMessageList() {
  312. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  313. result = u.InitWrapData("获取我的未读消息失败")
  314. userInfo := u.Data["user"].(user.User)
  315. messages, err := user.GetUnReadMessageList(userInfo.Id)
  316. if err != nil {
  317. u.FailedResult("获取我的未读消息失败", result)
  318. return
  319. }
  320. u.SuccessResult("获取我的未读消息成功", messages, result)
  321. return
  322. })
  323. }
  324. type ReadMessageReq struct {
  325. AnalystId int `json:"analystId"`
  326. MessageId int `json:"MessageId"`
  327. }
  328. // ReadMessage 获取未读消息
  329. // @Summary 获取未读消息
  330. // @Description 获取未读消息
  331. // @Success 200 {object} controllers.BaseResponse
  332. // @router /readMessage [post]
  333. func (u *UserController) ReadMessage() {
  334. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  335. result = u.InitWrapData("获取我的未读消息失败")
  336. readMessageReq := new(ReadMessageReq)
  337. u.GetPostParams(readMessageReq)
  338. if readMessageReq.MessageId <= 0 {
  339. logger.Error("消息Id非法")
  340. err = exception.New(exception.IllegalMessageId)
  341. u.FailedResult("已读消息失败", result)
  342. return
  343. }
  344. userInfo := u.Data["user"].(user.User)
  345. if user.ReadMessage(userInfo.Id, readMessageReq.MessageId) {
  346. u.SuccessResult("已读消息成功", nil, result)
  347. return
  348. } else {
  349. err = exception.New(exception.ReadMessageFailed)
  350. u.FailedResult("已读消息失败", result)
  351. return
  352. }
  353. })
  354. }
  355. // ReadMessages 获取未读消息
  356. // @Summary 获取未读消息
  357. // @Description 获取未读消息
  358. // @Success 200 {object} controllers.BaseResponse
  359. // @router /readMessages [post]
  360. func (u *UserController) ReadMessages() {
  361. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  362. result = u.InitWrapData("获取我的未读消息失败")
  363. readMessageReq := new(ReadMessageReq)
  364. u.GetPostParams(readMessageReq)
  365. if readMessageReq.AnalystId <= 0 {
  366. logger.Error("研究员Id非法")
  367. err = exception.New(exception.IllegalAnalystId)
  368. u.FailedResult("已读消息失败", result)
  369. return
  370. }
  371. userInfo := u.Data["user"].(user.User)
  372. if user.ReadMessages(userInfo.Id, readMessageReq.AnalystId) {
  373. u.SuccessResult("已读消息成功", nil, result)
  374. return
  375. } else {
  376. err = exception.New(exception.ReadMessageFailed)
  377. u.FailedResult("已读消息失败", result)
  378. return
  379. }
  380. })
  381. }
  382. func covertToUserProfile(user user.User) UserProfileReq {
  383. return UserProfileReq{
  384. UserName: user.Username,
  385. Mobile: user.Mobile,
  386. }
  387. }
  388. // ReadMessages 绑定微信公众号
  389. // @Summary 绑定微信公众号
  390. // @Description 绑定微信公众号
  391. // @Success 200 {object} controllers.BaseResponse
  392. // @router /bind_gzh [post]
  393. func (u *UserController) BindGzh() {
  394. controllers.Wrap(&u.BaseController, func() (result *controllers.WrapData, err error) {
  395. result = u.InitWrapData("获取我的未读消息失败")
  396. bindReq := new(BindGzhReq)
  397. u.GetPostParams(bindReq)
  398. code := bindReq.Code
  399. isBind, err := auth.BindWxGzh(code)
  400. if err != nil {
  401. logger.Error("绑定公众号失败:%v", err)
  402. u.FailedResult("绑定公众号失败", result)
  403. return
  404. }
  405. u.SuccessResult("绑定成功", IsBindGzhRes{
  406. IsBind: isBind,
  407. }, result)
  408. return
  409. })
  410. }
  411. type IsBindGzhRes struct {
  412. IsBind bool `json:"isBind"`
  413. }
  414. type BindGzhReq struct {
  415. Code string `json:"Code"`
  416. }
  417. // ReadMessages 微信公众号回调
  418. // @Summary 微信公众号回调
  419. // @Description 微信公众号回调
  420. // @Success 200 {object} controllers.BaseResponse
  421. // @router /notify [get,post]
  422. func (u *UserController) Notify() {
  423. echostr := u.GetString("echostr")
  424. method := u.Ctx.Input.Method()
  425. if method == "POST" {
  426. body := u.Ctx.Input.RequestBody
  427. item := new(Notify)
  428. err := xml.Unmarshal(body, &item)
  429. if err != nil {
  430. logger.Info("xml.Unmarshal:" + err.Error())
  431. }
  432. contactMsg := ""
  433. var openId, returnResult string
  434. if item.MsgType != "" {
  435. openId = item.FromUserName
  436. }
  437. xmlTpl := `<xml>
  438. <ToUserName><![CDATA[%s]]></ToUserName>
  439. <FromUserName><![CDATA[%s]]></FromUserName>
  440. <CreateTime>%s</CreateTime>
  441. <MsgType><![CDATA[text]]></MsgType>
  442. <Content><![CDATA[%s]]></Content>
  443. </xml>`
  444. createTime := strconv.FormatInt(time.Now().Unix(), 10)
  445. // WxId := "gh_5dc508325c6f" // 弘则投研公众号原始id
  446. xmlTpl = fmt.Sprintf(xmlTpl, openId, "gh_b2f5b115ec8d", createTime, contactMsg)
  447. if item.MsgType == "event" {
  448. switch item.Event {
  449. case "subscribe":
  450. fmt.Println("关注")
  451. //go subscribe(openId)
  452. case "unsubscribe":
  453. fmt.Println("取消关注")
  454. //go unsubscribe(openId)
  455. case "CLICK":
  456. returnResult = xmlTpl
  457. default:
  458. logger.Info("wechat notify event:" + item.Event)
  459. }
  460. u.Ctx.WriteString(xmlTpl)
  461. } else {
  462. returnResult = xmlTpl
  463. }
  464. u.Ctx.WriteString(returnResult)
  465. } else {
  466. u.Ctx.WriteString(echostr)
  467. }
  468. }
  469. type Notify struct {
  470. ToUserName string `xml:"ToUserName"`
  471. FromUserName string `xml:"FromUserName"`
  472. CreateTime int `xml:"CreateTime"`
  473. MsgType string `xml:"MsgType"`
  474. Event string `xml:"Event"`
  475. EventKey string `xml:"EventKey"`
  476. Content string `xml:"Content"`
  477. }