Member.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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;
  15. use library\Controller;
  16. use think\Db;
  17. /**
  18. * 会员管理基类
  19. * Class Member
  20. * @package app\store\controller\api
  21. */
  22. class Member extends Controller
  23. {
  24. /**
  25. * 当前会员ID
  26. * @var integer
  27. */
  28. protected $mid;
  29. /**
  30. * 当前会员数据
  31. * @var array
  32. */
  33. protected $member;
  34. /**
  35. * 当前公众号OPENID
  36. * @var string
  37. */
  38. protected $openid;
  39. /**
  40. * Member constructor.
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @throws \think\exception\DbException
  44. */
  45. public function __construct()
  46. {
  47. parent::__construct();
  48. // 会员信息检查
  49. $this->mid = $this->request->post('mid');
  50. $this->openid = $this->request->post('openid');
  51. if (empty($this->mid)) $this->error('无效的会员ID参数!');
  52. if (empty($this->openid)) $this->error('无效的会员绑定OPENID!');
  53. $this->getMember();
  54. }
  55. /**
  56. * 获取会员信息
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. */
  61. protected function getMember()
  62. {
  63. $where = ['id' => $this->mid, 'openid' => $this->openid];
  64. $this->member = Db::name('StoreMember')->where($where)->find();
  65. if (empty($this->member)) $this->error('无效的会员信息,请重新登录授权!');
  66. // 会员当前已经领取次数
  67. $where = [['mid', 'eq', $this->mid], ['status', 'in', ['2', '3', '4', '5']]];
  68. $this->member['times_used'] = Db::name('StoreOrder')->where($where)->count();
  69. return $this->member;
  70. }
  71. }