You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.0 KiB
101 lines
3.0 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\api\controller;
|
|
|
|
use cores\BaseController;
|
|
use app\api\model\User as UserModel;
|
|
use app\api\model\Store as StoreModel;
|
|
use app\api\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();
|
|
}
|
|
|
|
/**
|
|
* 获取当前商城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\api\model\h5\Setting::class, 'checkStatus', 'H5端']
|
|
];
|
|
if (!isset($settingClass[$client])) {
|
|
return;
|
|
}
|
|
$status = call_user_func([$settingClass[$client][0], $settingClass[$client][1]]);
|
|
$status === false && throwError('很抱歉,当前' . $settingClass[$client][2] . '端暂不支持访问');
|
|
}
|
|
|
|
/**
|
|
* 获取当前用户信息
|
|
* @param bool $isForce 强制验证登录
|
|
* @return UserModel|bool|null
|
|
* @throws BaseException
|
|
*/
|
|
protected function getLoginUser(bool $isForce = true)
|
|
{
|
|
return UserService::getCurrentLoginUser($isForce);
|
|
}
|
|
}
|
|
|