Wechat.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\api\controller;
  4. use app\api\validate\User as UserValidate;
  5. use app\common\controller\Frontend;
  6. use think\App;
  7. use think\facade\Config;
  8. use think\Request;
  9. use think\exception\ValidateException;
  10. class Wechat extends Frontend
  11. {
  12. protected $noNeedLogin=["wxlogin"];
  13. protected $noNeedPermission=[];
  14. public function __construct(App $app) {parent::__construct($app);}
  15. public function initialize(){
  16. parent::initialize(); // TODO: Change the autogenerated stub
  17. }
  18. /**
  19. * 显示资源列表
  20. *
  21. * @return \think\Response
  22. */
  23. public function wxlogin()
  24. {
  25. $openMemberCenter = Config::get('buildadmin.open_member_center');
  26. if (!$openMemberCenter) {
  27. $this->error(__('Member center disabled'));
  28. }
  29. // 检查登录态
  30. if ($this->auth->isLogin()) {
  31. $this->success(__('You have already logged in. There is no need to log in again~'), [
  32. 'routePath' => '/user'
  33. ], 302);
  34. }
  35. if ($this->request->isPost()) {
  36. $params = $this->request->post([ 'mobile', 'nickname', 'avatar','openid','unionid', "keep",
  37. 'registerType'=>"wx"]);
  38. $validate = new UserValidate();
  39. try {
  40. $validate->scene("wechat")->check($params);
  41. } catch (ValidateException $e) {
  42. $this->error($e->getMessage());
  43. }
  44. $res = $this->auth->isWxUser($params['openid'], $params['unionid'], (bool)$params['keep']);
  45. if (!$res) {
  46. $res = $this->auth->WxRegister($params['nickname'], $params['mobile'], $params['openid'], $params['openid'],$params['avatar']);
  47. }
  48. if (isset($res) && $res === true) {
  49. $this->success(__('Login succeeded!'), [
  50. 'userInfo' => $this->auth->getUserInfo(),
  51. 'routePath' => '/user'
  52. ]);
  53. } else {
  54. $msg = $this->auth->getError();
  55. $msg = $msg ?: __('Check in failed, please try again or contact the website administrator~');
  56. $this->error($msg);
  57. }
  58. }
  59. $this->success('', [
  60. 'accountVerificationType' => get_account_verification_type()
  61. ]);
  62. }
  63. /**
  64. * 显示创建资源表单页.
  65. *
  66. * @return \think\Response
  67. */
  68. public function create()
  69. {
  70. //
  71. }
  72. /**
  73. * 保存新建的资源
  74. *
  75. * @param \think\Request $request
  76. * @return \think\Response
  77. */
  78. public function save(Request $request)
  79. {
  80. //
  81. }
  82. /**
  83. * 显示指定的资源
  84. *
  85. * @param int $id
  86. * @return \think\Response
  87. */
  88. public function read($id)
  89. {
  90. //
  91. }
  92. /**
  93. * 显示编辑资源表单页.
  94. *
  95. * @param int $id
  96. * @return \think\Response
  97. */
  98. public function edit($id)
  99. {
  100. //
  101. }
  102. /**
  103. * 保存更新的资源
  104. *
  105. * @param \think\Request $request
  106. * @param int $id
  107. * @return \think\Response
  108. */
  109. public function update(Request $request, $id)
  110. {
  111. //
  112. }
  113. /**
  114. * 删除指定资源
  115. *
  116. * @param int $id
  117. * @return \think\Response
  118. */
  119. public function delete($id)
  120. {
  121. //
  122. }
  123. }