123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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 cores\traits\ErrorTrait;
- use think\facade\Request;
- /**
- * 系统服务基础类
- * Class BaseService
- * @package app\common\service
- */
- class BaseService
- {
- use ErrorTrait;
- // 请求管理类
- /* @var $request \think\Request */
- protected $request;
- // 当前访问的商城ID
- protected $storeId;
- /**
- * 构造方法
- * BaseService constructor.
- */
- public function __construct()
- {
- // 请求管理类
- $this->request = Request::instance();
- // 获取当前操作的商城ID
- $this->getStoreId();
- // 执行子类的构造方法
- $this->initialize();
- }
- /**
- * 构造方法 (供继承的子类使用)
- */
- protected function initialize()
- {
- }
- /**
- * 获取当前操作的商城ID
- * @return int|null
- */
- protected function getStoreId(): ?int
- {
- if (empty($this->storeId) && in_array(app_name(), ['store', 'api', 'index'])) {
- $this->storeId = getStoreId();
- }
- return $this->storeId;
- }
- }
|