User.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package controllers
  2. import (
  3. beego "github.com/beego/beego/v2/server/web"
  4. )
  5. type UserController struct {
  6. beego.Controller
  7. }
  8. // 验证登录
  9. //func (c *UserController) Register() {
  10. // verification_user := c.GetString("bzd_username")
  11. // verification_pass := c.GetString("bzd_password")
  12. // bzd_phone := c.GetString("bzd_phone")
  13. // bzd_Code := c.GetString("bzd_Code")
  14. //
  15. // r,is := Account.Redis_VCode_Get(bzd_phone)
  16. // if !is {
  17. // c.Data["json"] = lib.JSONS{Code: 201, Msg: "验证码错误!"}
  18. // c.ServeJSON()
  19. // return
  20. // }
  21. // if r != bzd_Code{
  22. // c.Data["json"] = lib.JSONS{Code: 202, Msg: "验证码错误!"}
  23. // c.ServeJSON()
  24. // return
  25. // }
  26. //
  27. // if _, is := Account.Read_User_ByT_user(verification_user); is {
  28. // c.Data["json"] = lib.JSONS{Code: 303, Msg: "用户名重复!"}
  29. // c.ServeJSON()
  30. // return
  31. // }
  32. // var_ := Account.User{
  33. // T_power: 1,
  34. // T_name: verification_user,
  35. // T_user: verification_user,
  36. // T_pass_admin: verification_pass,
  37. // T_pass_user: verification_pass,
  38. // T_pass_visitor: verification_pass,
  39. // T_uviews: "",
  40. // T_State: 1,
  41. // }
  42. // // 申请 UUID
  43. // Uuid := ""
  44. // for true {
  45. // Uuid = uuid.NewV4().String()
  46. // if _, is := Account.Read_User_ByT_uuid(Uuid); !is {
  47. // break
  48. // }
  49. // fmt.Print("申请 Uuid 重复!重新生成。", Uuid)
  50. // }
  51. // var_.T_uuid = Uuid
  52. // // 自动生成 面板
  53. // //if Device.CREATE_DeviceData(Uuid) {
  54. // //
  55. // // var_v := Panel.PaneView{
  56. // // T_uuid: var_.T_uuid,
  57. // // T_width: 1920,
  58. // // T_height: 1080,
  59. // // T_mode: 0,
  60. // // T_css: "",
  61. // // T_text: "自动生成",
  62. // // }
  63. // // Panel.Add_PaneView(var_v);
  64. // //
  65. // // c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!"}
  66. // // c.ServeJSON()
  67. // // return
  68. // //}
  69. //
  70. // if _, is := Account.Add_User(var_); !is {
  71. // c.Data["json"] = lib.JSONS{Code: 205, Msg: "注册失败!"}
  72. // c.ServeJSON()
  73. // return
  74. // }
  75. //
  76. // c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!"}
  77. // c.ServeJSON()
  78. // return
  79. //}