12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types = 1);
- namespace app\common\service;
- use think\facade\Request;
- /**
- * 系统服务基础类
- * Class BaseService
- * @package app\common\service
- */
- class BaseService
- {
- // 请求管理类
- /* @var $request \think\Request */
- protected $request;
- // 错误信息
- protected $error;
- // 当前访问的商城ID
- protected $storeId;
- /**
- * 构造方法
- * BaseService constructor.
- */
- public function __construct()
- {
- // 请求管理类
- $this->request = Request::instance();
- // 执行构造方法
- $this->initialize();
- }
- /**
- * 构造方法 (供继承的子类使用)
- */
- protected function initialize()
- {
- // 获取当前操作的商城ID
- $this->getStoreId();
- }
- /**
- * 获取当前操作的商城ID
- * @return int|null
- */
- protected function getStoreId()
- {
- if (empty($this->storeId) && in_array(app_name(), ['store', 'api'])) {
- $this->storeId = getStoreId();
- }
- return $this->storeId;
- }
- /**
- * 获取错误信息
- * @return mixed
- */
- public function getError()
- {
- return empty($this->error) ? false : $this->error;
- }
- /**
- * 是否存在错误
- * @return bool
- */
- public function hasError()
- {
- return !empty($this->error);
- }
- }
|