Center.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller\api\member;
  15. use app\store\controller\api\Member;
  16. use app\store\service\ExtendService;
  17. use think\Db;
  18. /**
  19. * 商品会员中心
  20. * Class Center
  21. * @package app\store\controller\api\member
  22. */
  23. class Center extends Member
  24. {
  25. /**
  26. * 修改会员资料
  27. * @throws \think\Exception
  28. * @throws \think\exception\PDOException
  29. */
  30. public function info()
  31. {
  32. $data = [];
  33. if ($this->request->has('headimg', 'post', true)) {
  34. $data['headimg'] = $this->request->post('headimg');
  35. }
  36. if ($this->request->has('nickname', 'post', true)) {
  37. $data['nickname'] = emoji_encode($this->request->post('nickname'));
  38. }
  39. if ($this->request->has('username', 'post', true)) {
  40. $data['username'] = emoji_encode($this->request->post('username'));
  41. }
  42. if (empty($data)) $this->error('没有需要修改的数据哦!');
  43. if (data_save('StoreMember', array_merge($data, ['id' => $this->mid]), 'id') !== false) {
  44. $this->success('会员资料更新成功!', $this->getMember());
  45. } else {
  46. $this->error('会员资料更新失败,请稍候再试!');
  47. }
  48. }
  49. /**
  50. * 发送短信验证码
  51. * @throws \think\Exception
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @throws \think\exception\DbException
  55. * @throws \think\exception\PDOException
  56. */
  57. public function sendsms()
  58. {
  59. $phone = $this->request->post('phone');
  60. if ($this->request->post('secure') !== sysconf('sms_secure')) {
  61. $this->error('短信发送安全码不正确,请使用正确的安全码!');
  62. }
  63. $member = Db::name('StoreMember')->where(['phone' => $phone])->find();
  64. if (!empty($member)) $this->error('该手机号已经注册了,请使用其它手机号!');
  65. $cache = cache($cachekey = "send_register_sms_{$phone}");
  66. if (is_array($cache) && isset($cache['time']) && $cache['time'] > time() - 120) {
  67. $dtime = ($cache['time'] + 120 < time()) ? 0 : (120 - time() + $cache['time']);
  68. $this->success('短信验证码已经发送!', ['time' => $dtime]);
  69. }
  70. list($code, $content) = [rand(1000, 9999), sysconf('sms_reg_template')];
  71. if (empty($content) || stripos($content, '{code}') === false) {
  72. $content = '您的验证码为{code},请在十分钟内完成操作!';
  73. }
  74. cache($cachekey, ['phone' => $phone, 'captcha' => $code, 'time' => time()], 600);
  75. if (empty($content) || strpos($content, '{code}') === false) {
  76. $this->error('获取短信模板失败,联系管理员配置!');
  77. }
  78. $cache = cache($cachekey);
  79. if (ExtendService::sendSms($this->mid, $phone, str_replace('{code}', $code, $content))) {
  80. $dtime = ($cache['time'] + 120 < time()) ? 0 : (120 - time() + $cache['time']);
  81. $this->success('短信验证码发送成功!', ['time' => $dtime]);
  82. } else {
  83. $this->error('短信发送失败,请稍候再试!');
  84. }
  85. }
  86. /**
  87. * 会员登录绑定
  88. * @throws \think\Exception
  89. * @throws \think\exception\PDOException
  90. */
  91. public function bind()
  92. {
  93. $code = $this->request->post('code');
  94. $phone = $this->request->post('phone');
  95. $cache = cache($cachekey = "send_register_sms_{$phone}");
  96. if (is_array($cache) && isset($cache['captcha']) && $cache['captcha'] == $code) {
  97. $where = ['id' => $this->member['id']];
  98. if (Db::name('StoreMember')->where($where)->update(['phone' => $phone]) !== false) {
  99. $this->success('手机绑定登录成功!');
  100. } else {
  101. $this->error('手机绑定登录失败,请稍候再试!');
  102. }
  103. } else {
  104. $this->error('短信验证码验证失败!');
  105. }
  106. }
  107. /**
  108. * 获取会员资源成功
  109. */
  110. public function member()
  111. {
  112. $this->success('获取会员资料成功!', $this->member);
  113. }
  114. }