Base.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace addons\shopro\controller\store;
  3. use addons\shopro\exception\Exception;
  4. use addons\shopro\controller\Base as AddonsBase;
  5. use addons\shopro\model\Store;
  6. use addons\shopro\model\User;
  7. use addons\shopro\model\UserStore;
  8. class Base extends AddonsBase
  9. {
  10. public function _initialize()
  11. {
  12. parent::_initialize();
  13. // 验证登录用户是否可以访问门店接口
  14. $this->checkUserStore();
  15. }
  16. /**
  17. * 检测用户管理的是否有门店
  18. */
  19. private function checkUserStore() {
  20. // 获取当前用户的门店
  21. $user = User::info();
  22. $store_id = $this->request->param('store_id');
  23. if (!$store_id) {
  24. $this->error('请选择门店');
  25. }
  26. $userStore = UserStore::with('store')->where('user_id', $user->id)->where('store_id', $store_id)->find();
  27. if (!$userStore || !$userStore->store) {
  28. $this->error('权限不足');
  29. }
  30. $store = $userStore->store->toArray();
  31. if (!$store['status']) {
  32. $this->error('门店已被禁用');
  33. }
  34. // 存 session 本次请求有效
  35. session('current_oper_store', $store);
  36. }
  37. }