auth.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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. userId = int(emailItem.Id)
  140. } else if emailItem.Status == 1 && emailItem.Password != "" {
  141. resp.Registered("邮箱已注册.", c)
  142. return
  143. } else if emailItem.Status == 2 {
  144. resp.Registered("邮箱已注册.", c)
  145. return
  146. } else if emailItem.Status == 3 {
  147. resp.Expired("试用权限超期", c)
  148. return
  149. }
  150. } else {
  151. //状态为临时
  152. user := english_report_email.Email{
  153. Name: req.Name,
  154. CompanyName: req.CompanyName,
  155. Email: req.Email,
  156. Password: password,
  157. Enable: 1,
  158. Status: 2,
  159. RegisterTime: time.Now(),
  160. }
  161. user.Set()
  162. err = user.Add()
  163. if err != nil {
  164. resp.FailData("新增用户信息失败"+"Err:"+err.Error(), "Err:"+err.Error(), c)
  165. return
  166. }
  167. userId = int(user.Id)
  168. }
  169. sysSession := new(session.EnglishYbSession)
  170. if userId > 0 {
  171. account := utils.MD5(req.Email)
  172. token, err := utils.GenToken(account)
  173. sysSession.UserId = userId
  174. //现在要求永不过期
  175. sysSession.ExpireTime = time.Now().AddDate(99, 0, 0)
  176. sysSession.CreatedTime = time.Now()
  177. sysSession.LastUpdatedTime = time.Now()
  178. sysSession.AccessToken = token
  179. err = sysSession.AddSession()
  180. fmt.Println("id:", sysSession.SessionId)
  181. if err != nil {
  182. resp.FailData("新增session信息失败", "Err:"+err.Error(), c)
  183. return
  184. }
  185. }
  186. respItem := session.LoginResp{
  187. Email: req.Email,
  188. Name: req.Name,
  189. EnglishYbSession: sysSession,
  190. }
  191. resp.OkData("注册成功", respItem, c)
  192. }
  193. // @Title 修改密码
  194. // @Description 修改密码
  195. // @Param request body models.ModifyPwdReq true "type json string"
  196. // @Success 200 {object} models.LoginResp
  197. // @router /modifyPwd [post]
  198. func (a *AuthController) ModifyPwd(c *gin.Context) {
  199. req := new(services.ModifyPwdReq)
  200. err := c.ShouldBind(&req)
  201. if err != nil {
  202. errs, ok := err.(validator.ValidationErrors)
  203. if !ok {
  204. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  205. return
  206. }
  207. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  208. return
  209. }
  210. userinfo := services.GetInfoByClaims(c)
  211. if req.NewPwd == "" {
  212. resp.Fail("Please enter a new password", c)
  213. return
  214. }
  215. if req.OldPwd == "" {
  216. resp.Fail("Please enter the original password", c)
  217. return
  218. }
  219. if req.OldPwd != userinfo.Password {
  220. resp.Fail("The old password is wrong, please re-enter.", c)
  221. return
  222. }
  223. password := utils.MD5(req.NewPwd + utils.KEY)
  224. emailitem := english_report_email.Email{
  225. Id: userinfo.Id,
  226. Password: password,
  227. }
  228. emailitem.ModifyTime = time.Now()
  229. err = emailitem.Update([]string{"Password"})
  230. if err != nil {
  231. resp.FailMsg("修改密码失败", "修改密码失败,Err:"+err.Error(), c)
  232. return
  233. }
  234. resp.Ok("修改成功", c)
  235. }
  236. // GetSmsCode 获取短信验证码接口
  237. // @Tags 用户模块
  238. // @Summary 获取短信验证码
  239. // @Description 获取短信验证码接口
  240. // @Security ApiKeyAuth
  241. // @securityDefinitions.basic BasicAuth
  242. // @Param Mobile query string true "手机号"
  243. // @Param AreaNum query string true "手机国际区号(中国大陆:86)"
  244. // @Accept json
  245. // @Product json
  246. // @Success 200 {string} string 获取验证码成功
  247. // @Failure 400 {string} string 手机号不能为空,请输入手机号
  248. // @Router /smsCode [get]
  249. func (a *AuthController) GetSmsCode(c *gin.Context) {
  250. mobile := c.DefaultQuery("Mobile", "")
  251. areaNum := c.DefaultQuery("AreaNum", "")
  252. err, errMsg := services.SendSmsCode(mobile, areaNum)
  253. if err != nil {
  254. if errMsg != "" {
  255. errMsg = "获取验证码失败"
  256. }
  257. resp.Fail(errMsg, c)
  258. return
  259. }
  260. resp.Ok("获取验证码成功", c)
  261. }
  262. // GetEmailCode 获取邮箱验证码接口
  263. // @Tags 用户模块
  264. // @Summary 获取邮箱验证码
  265. // @Description 获取邮箱验证码
  266. // @Security ApiKeyAuth
  267. // @securityDefinitions.basic BasicAuth
  268. // @Param email query string true "电子邮箱账号"
  269. // @Accept json
  270. // @Product json
  271. // @Success 200 {string} string 获取验证码成功
  272. // @Failure 400 {string} string 请输入邮箱地址
  273. // @Router /emailCode [get]
  274. func (a *AuthController) GetEmailCode(c *gin.Context) {
  275. email := c.DefaultQuery("Email", "")
  276. if email == "" {
  277. resp.Fail("请输入邮箱地址", c)
  278. return
  279. }
  280. if !utils.ValidateEmailFormatat(email) {
  281. resp.Fail("邮箱格式错误,请重新输入", c)
  282. return
  283. }
  284. name := c.DefaultQuery("Name", "")
  285. if name == "" {
  286. emailItem := new(english_report_email.Email)
  287. userEmail, err := emailItem.GetByEmail(email)
  288. if err != nil && err != utils.ErrNoRow {
  289. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  290. return
  291. }
  292. if userEmail != nil {
  293. name = userEmail.Name
  294. }
  295. }
  296. err, errMsg := services.SendEmailCode(name, email)
  297. if err != nil {
  298. if errMsg != "" {
  299. errMsg = "获取验证码失败"
  300. }
  301. resp.Fail(errMsg, c)
  302. return
  303. }
  304. resp.Ok("获取验证码成功", c)
  305. }
  306. func (a *AuthController) BindMobile(c *gin.Context) {
  307. req := new(services.BindMobileReq)
  308. err := c.ShouldBind(&req)
  309. if err != nil {
  310. errs, ok := err.(validator.ValidationErrors)
  311. if !ok {
  312. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  313. return
  314. }
  315. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  316. return
  317. }
  318. userinfo := services.GetInfoByClaims(c)
  319. if req.Mobile == "" {
  320. resp.Fail("手机号不能为空", c)
  321. return
  322. }
  323. if req.SmsCode == "" {
  324. resp.Fail("验证码不能为空", c)
  325. return
  326. }
  327. if req.CountryCode == "" {
  328. resp.Fail("区号不能为空", c)
  329. return
  330. }
  331. emailItem := new(english_report_email.Email)
  332. userEmail, err := emailItem.GetByMobile(req.Mobile, req.CountryCode)
  333. if err != nil && err != utils.ErrNoRow {
  334. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  335. return
  336. }
  337. if userEmail.Id != 0 {
  338. resp.Bound("手机号已绑定 ", c)
  339. return
  340. }
  341. item, err := msg_code.GetMsgCode(req.Mobile, req.SmsCode)
  342. if err != nil {
  343. resp.Fail("Verification code error."+err.Error(), c)
  344. return
  345. }
  346. if item == nil {
  347. resp.Fail("验证码错误,请重新输入", c)
  348. return
  349. }
  350. user := english_report_email.Email{
  351. Id: userinfo.Id,
  352. Mobile: req.Mobile,
  353. CountryCode: req.CountryCode,
  354. }
  355. user.ModifyTime = time.Now()
  356. err = user.Update([]string{"Mobile", "CountryCode", "ModifyTime"})
  357. if err != nil {
  358. resp.FailMsg("绑定手机号失败", "修改手机号失败,Err:"+err.Error(), c)
  359. return
  360. }
  361. resp.Ok("绑定成功", c)
  362. }
  363. func (a *AuthController) ForgetPwd(c *gin.Context) {
  364. req := new(services.ForgetPwdReq)
  365. err := c.ShouldBind(&req)
  366. if err != nil {
  367. errs, ok := err.(validator.ValidationErrors)
  368. if !ok {
  369. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  370. return
  371. }
  372. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  373. return
  374. }
  375. if req.Account == "" {
  376. resp.Fail("账号不能为空", c)
  377. return
  378. }
  379. if req.SmsCode == "" {
  380. resp.Fail("验证码不能为空", c)
  381. return
  382. }
  383. if req.Password == "" {
  384. resp.Fail("Please enter a new password", c)
  385. return
  386. }
  387. userEmail := new(english_report_email.Email)
  388. emailItem := new(english_report_email.Email)
  389. if req.Type == 1 {
  390. userEmail, err = emailItem.GetByEmail(req.Account)
  391. if err != nil || userEmail.IsDeleted == 1 {
  392. if err == utils.ErrNoRow || userEmail.IsDeleted == 1 {
  393. resp.Unregistered("账号未注册", c)
  394. return
  395. }
  396. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  397. return
  398. }
  399. } else {
  400. userEmail, err = emailItem.GetByMobile(req.Account, req.CountryCode)
  401. if err != nil || userEmail.IsDeleted == 1 {
  402. if err == utils.ErrNoRow || userEmail.IsDeleted == 1 {
  403. resp.Unbound("手机号未绑定", c)
  404. return
  405. }
  406. resp.FailData("获取客户邮箱信息失败 ", "Err:"+err.Error(), c)
  407. return
  408. }
  409. }
  410. item, err := msg_code.GetMsgCode(req.Account, req.SmsCode)
  411. if err != nil {
  412. resp.Fail("Verification code error."+err.Error(), c)
  413. return
  414. }
  415. if item == nil {
  416. resp.Fail("验证码错误,请重新输入", c)
  417. return
  418. }
  419. password := utils.MD5(req.Password + utils.KEY)
  420. emailitem := english_report_email.Email{
  421. Id: userEmail.Id,
  422. Password: password,
  423. }
  424. emailitem.ModifyTime = time.Now()
  425. err = emailitem.Update([]string{"Password"})
  426. if err != nil {
  427. resp.FailMsg("修改密码失败", "修改密码失败,Err:"+err.Error(), c)
  428. return
  429. }
  430. resp.Ok("修改成功", c)
  431. }
  432. func (a *AuthController) ModifyMobile(c *gin.Context) {
  433. req := new(services.ModifyMobile)
  434. err := c.ShouldBind(&req)
  435. if err != nil {
  436. errs, ok := err.(validator.ValidationErrors)
  437. if !ok {
  438. resp.FailData("参数解析失败", "Err:"+err.Error(), c)
  439. return
  440. }
  441. resp.FailData("参数解析失败", errs.Translate(global.Trans), c)
  442. return
  443. }
  444. userinfo := services.GetInfoByClaims(c)
  445. if req.NewMobile == "" {
  446. resp.Fail("Please enter a new phone number", c)
  447. return
  448. }
  449. if req.OldMobile == "" {
  450. resp.Fail("Please enter the original phone number", c)
  451. return
  452. }
  453. if req.OldMobile != userinfo.Mobile {
  454. resp.Fail("The old phone number is wrong, please re-enter.", c)
  455. return
  456. }
  457. if req.SmsCode == "" {
  458. resp.Fail("验证码不能为空", c)
  459. return
  460. }
  461. if req.CountryCode == "" {
  462. resp.Fail("区号不能为空", c)
  463. return
  464. }
  465. emailitem := english_report_email.Email{
  466. Id: userinfo.Id,
  467. Mobile: req.NewMobile,
  468. CountryCode: req.CountryCode,
  469. }
  470. emailitem.ModifyTime = time.Now()
  471. err = emailitem.Update([]string{"Mobile", "CountryCode", "ModifyTime"})
  472. if err != nil {
  473. resp.FailMsg("修改手机号失败", "修改手机号失败,Err:"+err.Error(), c)
  474. return
  475. }
  476. resp.Ok("修改成功", c)
  477. }