auth.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. package controller
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "github.com/go-playground/validator/v10"
  6. "hongze/hongze_yb_en_api/controller/resp"
  7. "hongze/hongze_yb_en_api/global"
  8. "hongze/hongze_yb_en_api/models/english_report_email"
  9. "hongze/hongze_yb_en_api/models/msg_code"
  10. "hongze/hongze_yb_en_api/models/session"
  11. "hongze/hongze_yb_en_api/services"
  12. "hongze/hongze_yb_en_api/utils"
  13. "time"
  14. )
  15. type AuthController struct {
  16. }
  17. func (a *AuthController) Login(c *gin.Context) {
  18. req := new(services.LoginReq)
  19. err := c.ShouldBind(&req)
  20. if err != nil {
  21. errs, ok := err.(validator.ValidationErrors)
  22. if !ok {
  23. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  24. return
  25. }
  26. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  27. return
  28. }
  29. if req.Account == "" {
  30. resp.Fail("邮箱或手机号错误", c)
  31. return
  32. }
  33. userEmail := new(english_report_email.Email)
  34. emailItem := new(english_report_email.Email)
  35. if req.Type == 1 {
  36. userEmail, err = emailItem.GetByEmail(req.Account)
  37. if err != nil || userEmail.IsDeleted == 1 {
  38. if err == utils.ErrNoRow || userEmail.IsDeleted == 1 {
  39. resp.Unregistered("账号未注册", c)
  40. return
  41. }
  42. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  43. return
  44. }
  45. } else {
  46. userEmail, err := emailItem.GetByMobile(req.Account, req.CountryCode)
  47. if err != nil || userEmail.IsDeleted == 1 {
  48. if err == utils.ErrNoRow || userEmail.IsDeleted == 1 {
  49. resp.Unbound("手机号未绑定", c)
  50. return
  51. }
  52. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  53. return
  54. }
  55. }
  56. password := utils.MD5(req.Password + utils.KEY)
  57. sysUser, err := english_report_email.CheckUserPwd(req.Type, req.CountryCode, req.Account, password)
  58. if err != nil {
  59. resp.FailData("Login failed. Please check your entries and try again.", "Err:"+err.Error(), c)
  60. return
  61. }
  62. if sysUser == nil {
  63. resp.Fail("Login failed. Please check your entries and try again.", c)
  64. return
  65. }
  66. if sysUser.Enable == 0 {
  67. resp.Fail("Your account has been disabled, please contact stephanie@hzinsights.com", c)
  68. return
  69. }
  70. if sysUser.Status == 3 {
  71. resp.Expired("试用权限超期", c)
  72. return
  73. }
  74. account := utils.MD5(req.Account)
  75. token, err := utils.GenToken(account)
  76. sysSession := new(session.EnglishYbSession)
  77. sysSession.UserId = int(sysUser.Id)
  78. //现在要求永不过期
  79. sysSession.ExpireTime = time.Now().AddDate(99, 0, 0)
  80. sysSession.CreatedTime = time.Now()
  81. sysSession.LastUpdatedTime = time.Now()
  82. sysSession.AccessToken = token
  83. err = sysSession.AddSession()
  84. fmt.Println("id:", sysSession.SessionId)
  85. if err != nil {
  86. resp.FailData("新增session信息失败", "Err:"+err.Error(), c)
  87. return
  88. }
  89. respItem := session.LoginResp{
  90. Mobile: sysUser.Mobile,
  91. Email: sysUser.Email,
  92. CountryCode: sysUser.CountryCode,
  93. Name: sysUser.Name,
  94. EnglishYbSession: sysSession,
  95. }
  96. resp.OkData("登陆成功", respItem, c)
  97. }
  98. func (a *AuthController) Register(c *gin.Context) {
  99. req := new(services.RegisterReq)
  100. err := c.ShouldBind(&req)
  101. if err != nil {
  102. errs, ok := err.(validator.ValidationErrors)
  103. if !ok {
  104. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  105. return
  106. }
  107. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  108. return
  109. }
  110. item, err := msg_code.GetMsgCode(req.Email, req.SmsCode)
  111. if err != nil {
  112. if err != nil {
  113. resp.Fail("Verification code error."+err.Error(), c)
  114. return
  115. }
  116. }
  117. if item == nil {
  118. resp.Fail("验证码错误,请重新输入", c)
  119. return
  120. }
  121. emailItem, err := english_report_email.CheckUser(req.Email)
  122. if err != nil && err != utils.ErrNoRow {
  123. resp.FailData("检测用户重复错误, Err:",err.Error(), c)
  124. return
  125. }
  126. userId := 0
  127. password := utils.MD5(req.Password + utils.KEY)
  128. if emailItem.Id > 0 {
  129. if emailItem.Status == 1 && emailItem.Password == "" {
  130. //已经是正式用户,更新密码即可
  131. emailItem.Password = password
  132. emailItem.ModifyTime = time.Now()
  133. emailItem.RegisterTime = time.Now()
  134. err = emailItem.Update([]string{"Password", "ModifyTime", "RegisterTime"})
  135. if err != nil {
  136. resp.FailMsg("修改密码失败", "修改密码失败,Err:"+err.Error(), c)
  137. return
  138. }
  139. resp.Ok("注册成功", c)
  140. userId = int(emailItem.Id)
  141. } else if emailItem.Status == 1 && emailItem.Password != "" {
  142. resp.Registered("邮箱已注册.", c)
  143. return
  144. } else if emailItem.Status == 2 {
  145. resp.Registered("邮箱已注册.", c)
  146. return
  147. } else if emailItem.Status == 3 {
  148. resp.Expired("试用权限超期", c)
  149. return
  150. }
  151. } else {
  152. //状态为临时
  153. user := english_report_email.Email{
  154. Name: req.Name,
  155. CompanyName: req.CompanyName,
  156. Email: req.Email,
  157. Password: password,
  158. Enable: 1,
  159. Status: 2,
  160. RegisterTime: time.Now(),
  161. }
  162. user.Set()
  163. err = user.Add()
  164. if err != nil {
  165. resp.FailData("新增用户信息失败"+"Err:"+err.Error(), "Err:"+err.Error(), c)
  166. return
  167. }
  168. userId = int(user.Id)
  169. }
  170. sysSession := new(session.EnglishYbSession)
  171. if userId > 0 {
  172. account := utils.MD5(req.Email)
  173. token, err := utils.GenToken(account)
  174. sysSession.UserId = userId
  175. //现在要求永不过期
  176. sysSession.ExpireTime = time.Now().AddDate(99, 0, 0)
  177. sysSession.CreatedTime = time.Now()
  178. sysSession.LastUpdatedTime = time.Now()
  179. sysSession.AccessToken = token
  180. err = sysSession.AddSession()
  181. fmt.Println("id:", sysSession.SessionId)
  182. if err != nil {
  183. resp.FailData("新增session信息失败", "Err:"+err.Error(), c)
  184. return
  185. }
  186. }
  187. respItem := session.LoginResp{
  188. Email: req.Email,
  189. Name: req.Name,
  190. EnglishYbSession: sysSession,
  191. }
  192. resp.OkData("注册成功", respItem, c)
  193. }
  194. // @Title 修改密码
  195. // @Description 修改密码
  196. // @Param request body models.ModifyPwdReq true "type json string"
  197. // @Success 200 {object} models.LoginResp
  198. // @router /modifyPwd [post]
  199. func (a *AuthController) ModifyPwd(c *gin.Context) {
  200. req := new(services.ModifyPwdReq)
  201. err := c.ShouldBind(&req)
  202. if err != nil {
  203. errs, ok := err.(validator.ValidationErrors)
  204. if !ok {
  205. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  206. return
  207. }
  208. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  209. return
  210. }
  211. userinfo := services.GetInfoByClaims(c)
  212. if req.NewPwd == "" {
  213. resp.Fail("Please enter a new password", c)
  214. return
  215. }
  216. if req.OldPwd == "" {
  217. resp.Fail("Please enter the original password", c)
  218. return
  219. }
  220. if req.OldPwd != userinfo.Password {
  221. resp.Fail("The old password is wrong, please re-enter.", c)
  222. return
  223. }
  224. password := utils.MD5(req.NewPwd + utils.KEY)
  225. emailitem := english_report_email.Email{
  226. Id: userinfo.Id,
  227. Password: password,
  228. }
  229. emailitem.ModifyTime = time.Now()
  230. err = emailitem.Update([]string{"Password"})
  231. if err != nil {
  232. resp.FailMsg("修改密码失败", "修改密码失败,Err:"+err.Error(), c)
  233. return
  234. }
  235. resp.Ok("修改成功", c)
  236. }
  237. // GetSmsCode 获取短信验证码接口
  238. // @Tags 用户模块
  239. // @Summary 获取短信验证码
  240. // @Description 获取短信验证码接口
  241. // @Security ApiKeyAuth
  242. // @securityDefinitions.basic BasicAuth
  243. // @Param Mobile query string true "手机号"
  244. // @Param AreaNum query string true "手机国际区号(中国大陆:86)"
  245. // @Accept json
  246. // @Product json
  247. // @Success 200 {string} string 获取验证码成功
  248. // @Failure 400 {string} string 手机号不能为空,请输入手机号
  249. // @Router /smsCode [get]
  250. func (a *AuthController) GetSmsCode(c *gin.Context) {
  251. mobile := c.DefaultQuery("Mobile", "")
  252. areaNum := c.DefaultQuery("AreaNum", "")
  253. err, errMsg := services.SendSmsCode(mobile, areaNum)
  254. if err != nil {
  255. if errMsg != "" {
  256. errMsg = "获取验证码失败"
  257. }
  258. resp.Fail(errMsg, c)
  259. return
  260. }
  261. resp.Ok("获取验证码成功", c)
  262. }
  263. // GetEmailCode 获取邮箱验证码接口
  264. // @Tags 用户模块
  265. // @Summary 获取邮箱验证码
  266. // @Description 获取邮箱验证码
  267. // @Security ApiKeyAuth
  268. // @securityDefinitions.basic BasicAuth
  269. // @Param email query string true "电子邮箱账号"
  270. // @Accept json
  271. // @Product json
  272. // @Success 200 {string} string 获取验证码成功
  273. // @Failure 400 {string} string 请输入邮箱地址
  274. // @Router /emailCode [get]
  275. func (a *AuthController) GetEmailCode(c *gin.Context) {
  276. email := c.DefaultQuery("Email", "")
  277. if email == "" {
  278. resp.Fail("请输入邮箱地址", c)
  279. return
  280. }
  281. if !utils.ValidateEmailFormatat(email) {
  282. resp.Fail("邮箱格式错误,请重新输入", c)
  283. return
  284. }
  285. name := c.DefaultQuery("Name", "")
  286. if name == "" {
  287. emailItem := new(english_report_email.Email)
  288. userEmail, err := emailItem.GetByEmail(email)
  289. if err != nil && err != utils.ErrNoRow {
  290. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  291. return
  292. }
  293. if userEmail != nil {
  294. name = userEmail.Name
  295. }
  296. }
  297. err, errMsg := services.SendEmailCode(name, email)
  298. if err != nil {
  299. if errMsg != "" {
  300. errMsg = "获取验证码失败"
  301. }
  302. resp.Fail(errMsg, c)
  303. return
  304. }
  305. resp.Ok("获取验证码成功", c)
  306. }
  307. func (a *AuthController) BindMobile(c *gin.Context) {
  308. req := new(services.BindMobileReq)
  309. err := c.ShouldBind(&req)
  310. if err != nil {
  311. errs, ok := err.(validator.ValidationErrors)
  312. if !ok {
  313. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  314. return
  315. }
  316. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  317. return
  318. }
  319. userinfo := services.GetInfoByClaims(c)
  320. if req.Mobile == "" {
  321. resp.Fail("手机号不能为空", c)
  322. return
  323. }
  324. if req.SmsCode == "" {
  325. resp.Fail("验证码不能为空", c)
  326. return
  327. }
  328. if req.CountryCode == "" {
  329. resp.Fail("区号不能为空", c)
  330. return
  331. }
  332. emailItem := new(english_report_email.Email)
  333. userEmail, err := emailItem.GetByMobile(req.Mobile, req.CountryCode)
  334. if err != nil && err != utils.ErrNoRow {
  335. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  336. return
  337. }
  338. if userEmail.Id != 0 {
  339. resp.Bound("手机号已绑定 ", c)
  340. return
  341. }
  342. item, err := msg_code.GetMsgCode(req.Mobile, req.SmsCode)
  343. if err != nil {
  344. resp.Fail("Verification code error."+err.Error(), c)
  345. return
  346. }
  347. if item == nil {
  348. resp.Fail("验证码错误,请重新输入", c)
  349. return
  350. }
  351. user := english_report_email.Email{
  352. Id: userinfo.Id,
  353. Mobile: req.Mobile,
  354. CountryCode: req.CountryCode,
  355. }
  356. user.ModifyTime = time.Now()
  357. err = user.Update([]string{"Mobile", "CountryCode", "ModifyTime"})
  358. if err != nil {
  359. resp.FailMsg("绑定手机号失败", "修改手机号失败,Err:"+err.Error(), c)
  360. return
  361. }
  362. resp.Ok("绑定成功", c)
  363. }
  364. func (a *AuthController) ForgetPwd(c *gin.Context) {
  365. req := new(services.ForgetPwdReq)
  366. err := c.ShouldBind(&req)
  367. if err != nil {
  368. errs, ok := err.(validator.ValidationErrors)
  369. if !ok {
  370. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  371. return
  372. }
  373. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  374. return
  375. }
  376. if req.Account == "" {
  377. resp.Fail("账号不能为空", c)
  378. return
  379. }
  380. if req.SmsCode == "" {
  381. resp.Fail("验证码不能为空", c)
  382. return
  383. }
  384. if req.Password == "" {
  385. resp.Fail("Please enter a new password", c)
  386. return
  387. }
  388. userEmail := new(english_report_email.Email)
  389. emailItem := new(english_report_email.Email)
  390. if req.Type == 1 {
  391. userEmail, err = emailItem.GetByEmail(req.Account)
  392. if err != nil || userEmail.IsDeleted == 1 {
  393. if err == utils.ErrNoRow || userEmail.IsDeleted == 1 {
  394. resp.Unregistered("账号未注册", c)
  395. return
  396. }
  397. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  398. return
  399. }
  400. } else {
  401. userEmail, err = emailItem.GetByMobile(req.Account, req.CountryCode)
  402. if err != nil || userEmail.IsDeleted == 1 {
  403. if err == utils.ErrNoRow || userEmail.IsDeleted == 1 {
  404. resp.Unbound("手机号未绑定", c)
  405. return
  406. }
  407. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  408. return
  409. }
  410. }
  411. item, err := msg_code.GetMsgCode(req.Account, req.SmsCode)
  412. if err != nil {
  413. resp.Fail("Verification code error."+err.Error(), c)
  414. return
  415. }
  416. if item == nil {
  417. resp.Fail("验证码错误,请重新输入", c)
  418. return
  419. }
  420. password := utils.MD5(req.Password + utils.KEY)
  421. emailitem := english_report_email.Email{
  422. Id: userEmail.Id,
  423. Password: password,
  424. }
  425. emailitem.ModifyTime = time.Now()
  426. err = emailitem.Update([]string{"Password"})
  427. if err != nil {
  428. resp.FailMsg("修改密码失败", "修改密码失败,Err:"+err.Error(), c)
  429. return
  430. }
  431. resp.Ok("修改成功", c)
  432. }
  433. func (a *AuthController) ModifyMobile(c *gin.Context) {
  434. req := new(services.ModifyMobile)
  435. err := c.ShouldBind(&req)
  436. if err != nil {
  437. errs, ok := err.(validator.ValidationErrors)
  438. if !ok {
  439. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  440. return
  441. }
  442. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  443. return
  444. }
  445. userinfo := services.GetInfoByClaims(c)
  446. if req.NewMobile == "" {
  447. resp.Fail("Please enter a new phone number", c)
  448. return
  449. }
  450. if req.OldMobile == "" {
  451. resp.Fail("Please enter the original phone number", c)
  452. return
  453. }
  454. if req.OldMobile != userinfo.Mobile {
  455. resp.Fail("The old phone number is wrong, please re-enter.", c)
  456. return
  457. }
  458. if req.SmsCode == "" {
  459. resp.Fail("验证码不能为空", c)
  460. return
  461. }
  462. if req.CountryCode == "" {
  463. resp.Fail("区号不能为空", c)
  464. return
  465. }
  466. emailitem := english_report_email.Email{
  467. Id: userinfo.Id,
  468. Mobile: req.NewMobile,
  469. CountryCode: req.CountryCode,
  470. }
  471. emailitem.ModifyTime = time.Now()
  472. err = emailitem.Update([]string{"Mobile", "CountryCode", "ModifyTime"})
  473. if err != nil {
  474. resp.FailMsg("修改手机号失败", "修改手机号失败,Err:"+err.Error(), c)
  475. return
  476. }
  477. resp.Ok("修改成功", c)
  478. }