123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\index\controller;
- use think\facade\Log;
- use think\facade\Session;
- use think\response\Json;
- use cores\BaseController;
- use app\api\model\User as UserModel;
- use app\api\model\Store as StoreModel;
- use app\index\service\User as UserService;
- use cores\exception\BaseException;
- /**
- * API控制器基类
- * Class Controller
- * @package app\store\controller
- */
- class Controller extends BaseController
- {
- // 当前商城ID
- protected $storeId;
- /**
- * API基类初始化
- * @throws BaseException
- */
- public function initialize()
- {
- // 当前商城id
- $this->storeId = $this->getStoreId();
- // 验证当前商城状态
- $this->checkStore();
- // 验证当前客户端状态
- $this->checkClient();
- $contrName = $this->request->controller();
- if (strtolower($contrName) == 'cart'){
- $userId = Session::get('user_id');
- if (empty($userId)){
- return view('passport/logIn');
- }
- }
- }
- /**
- * 获取当前商城ID
- * @return int|null
- * @throws BaseException
- */
- protected function getStoreId(): ?int
- {
- $storeId = getStoreId(); // app/api/common.php
- empty($storeId) && throwError('缺少必要的参数:storeId');
- return $storeId;
- }
- /**
- * 验证当前商城状态
- * @return void
- * @throws BaseException
- */
- private function checkStore(): void
- {
- // 获取当前商城信息
- $store = StoreModel::detail($this->storeId);
- if (empty($store)) {
- throwError('当前商城信息不存在');
- }
- if ($store['is_recycle'] || $store['is_delete']) {
- throwError('当前商城已删除');
- }
- }
- /**
- * 验证当前客户端是否允许访问
- * @throws BaseException
- */
- private function checkClient()
- {
- $client = getPlatform();
- $settingClass = [
- 'H5' => [\app\index\model\h5\Setting::class, 'checkStatus', 'H5']
- ];
- if (!isset($settingClass[$client])) {
- return;
- }
- $status = call_user_func([$settingClass[$client][0], $settingClass[$client][1]]);
- $status === false && throwError('Sorry,' . $settingClass[$client][2] . ' not support');
- }
- /**
- * 获取当前用户信息
- * @return UserModel|bool|null
- * @throws BaseException
- */
- protected function getLoginUserId()
- {
- return UserService::getCurrentLoginUserId();
- }
- protected static function getCurrentLoginUser()
- {
- return UserService::getCurrentLoginUser();
- }
- /**
- * 返回封装后的 API 数据到客户端
- * @param int|null $status 状态码
- * @param string $message
- * @param array $data
- * @return Json
- */
- protected function renderJson(int $status = null, string $message = '', array $data = []): Json
- {
- return json(compact('status', 'message', 'data'));
- }
- /**
- * 返回操作成功json
- * @param array|string $data
- * @param string $message
- * @return Json
- */
- protected function renderSuccess($data = [], string $message = 'success'): Json
- {
- if (is_string($data)) {
- $message = $data;
- $data = [];
- }
- return $this->renderJson(config('status.success'), $message, $data);
- }
- /**
- * 返回操作失败json
- * @param string $message
- * @param array $data
- * @return Json
- */
- protected function renderError(string $message = 'error', array $data = []): Json
- {
- return $this->renderJson(config('status.error'), $message, $data);
- }
- /**
- * 获取post数据 (数组)
- * @param $key
- * @return mixed
- */
- protected function postData($key = null)
- {
- return $this->request->post(is_null($key) ? '' : $key . '/a');
- }
- /**
- * 获取post数据 (数组)
- * @param string $key
- * @return mixed
- */
- protected function postForm(string $key = 'form')
- {
- return $this->postData($key);
- }
- }
|