123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2021 https://www.yiovo.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
- // +----------------------------------------------------------------------
- // | Author: 萤火科技 <admin@yiovo.com>
- // +----------------------------------------------------------------------
- declare (strict_types = 1);
- namespace app\common\model\store;
- use think\facade\Cache;
- use app\common\library\helper;
- use app\common\model\BaseModel;
- use app\common\enum\Setting as SettingEnum;
- use app\common\enum\file\Storage as StorageEnum;
- use app\common\enum\order\DeliveryType as DeliveryTypeEnum;
- use app\common\enum\setting\sms\Scene as SettingSmsSceneEnum;
- use app\common\enum\store\page\category\Style as PageCategoryStyleEnum;
- /**
- * 系统设置模型
- * Class Setting
- * @package app\common\model
- */
- class Setting extends BaseModel
- {
- // 定义表名
- protected $name = 'store_setting';
- /**
- * 获取器: 转义数组格式
- * @param $value
- * @return mixed
- */
- public function getValuesAttr($value, $data)
- {
- if ($data['key'] == 'brand_culture') {
- return htmlspecialchars_decode($value);
- }
- return helper::jsonDecode($value);
- }
- /**
- * 修改器: 转义成json格式
- * @param $value
- * @return string
- */
- public function setValuesAttr($value, $data)
- {
- if ($data['key'] == 'brand_culture') {
- return $value['content'] ?? '';
- }
- return helper::jsonEncode($value);
- }
- /**
- * 获取指定项设置
- * @param string $key
- * @param int|null $storeId
- * @return array|mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function getItem(string $key, int $storeId = null)
- {
- $data = self::getAll($storeId);
- return isset($data[$key]) ? $data[$key]['values'] : [];
- }
- /**
- * 获取设置项信息
- * @param string $key
- * @param int|null $storeId
- * @return array|\think\Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function detail(string $key, int $storeId = null)
- {
- $query = (new static)->getNewQuery();
- $storeId > 0 && $query->where('store_id', '=', $storeId);
- return $query->where('key', '=', $key)->find();
- }
- /**
- * 全局缓存: 系统设置
- * @param int|null $storeId
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function getAll(int $storeId = null)
- {
- $model = new static;
- is_null($storeId) && $storeId = $model::$storeId;
- $setting = $model->getList($storeId);
- $data = $setting->isEmpty() ? [] : helper::arrayColumn2Key($setting->toArray(), 'key');
- return $model->getMergeData($data);
- }
- /**
- * 获取商城设置列表
- * @param $storeId
- * @return \think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- private function getList(int $storeId)
- {
- return $this->where('store_id', '=', $storeId)->select();
- }
- /**
- * 合并用户设置与默认数据
- * @param array $actualData
- * @return array
- */
- private function getMergeData(array $actualData)
- {
- return array_merge_multiple($this->defaultData(), $actualData);
- }
- /**
- * 默认配置
- * @return array
- */
- public function defaultData()
- {
- return [
- // 配送设置
- SettingEnum::DELIVERY => [
- 'key' => SettingEnum::DELIVERY,
- 'describe' => '配送设置',
- 'values' => [
- // 配送方式
- 'delivery_type' => array_keys(DeliveryTypeEnum::data()),
- // 快递100
- 'kuaidi100' => [
- 'customer' => '',
- 'key' => '',
- ]
- ],
- ],
- // 交易设置
- SettingEnum::TRADE => [
- 'key' => SettingEnum::TRADE,
- 'describe' => '交易设置',
- 'values' => [
- // 订单流程设置
- 'order' => [
- 'close_days' => '3',
- 'receive_days' => '10',
- 'refund_days' => '7'
- ],
- // 运费组合策略
- 'freight_rule' => '10',
- ]
- ],
- // 上传设置
- SettingEnum::STORAGE => [
- 'key' => SettingEnum::STORAGE,
- 'describe' => '上传设置',
- 'values' => [
- 'default' => StorageEnum::LOCAL,
- 'engine' => [
- StorageEnum::LOCAL => null,
- StorageEnum::QINIU => [
- 'bucket' => '',
- 'access_key' => '',
- 'secret_key' => '',
- 'domain' => 'http://'
- ],
- StorageEnum::ALIYUN => [
- 'bucket' => '',
- 'access_key_id' => '',
- 'access_key_secret' => '',
- 'domain' => 'http://'
- ],
- StorageEnum::QCLOUD => [
- 'bucket' => '',
- 'region' => '',
- 'secret_id' => '',
- 'secret_key' => '',
- 'domain' => 'http://'
- ],
- ]
- ],
- ],
- // 短信通知
- SettingEnum::SMS => [
- 'key' => SettingEnum::SMS,
- 'describe' => '短信通知',
- 'values' => [
- 'default' => 'aliyun',
- // 短信服务渠道
- 'engine' => [
- // 阿里云
- 'aliyun' => [
- 'AccessKeyId' => '',
- 'AccessKeySecret' => '',
- 'sign' => '萤火商城' // 短信签名
- ]
- ],
- // 短信通知场景
- 'scene' => [
- // 短信验证码
- SettingSmsSceneEnum::CAPTCHA => [
- 'name' => '短信验证码', // 场景名称
- 'isEnable' => false, // 是否开启
- 'templateCode' => '', // 模板ID
- 'content' => '验证码${code},您正在进行身份验证,打死不要告诉别人哦!'
- ],
- // 新付款订单
- SettingSmsSceneEnum::ORDER_PAY => [
- 'name' => '新付款订单', // 场景名称
- 'isEnable' => false, // 是否开启
- 'templateCode' => '', // 模板ID
- 'acceptPhone' => '', // 接收手机号
- 'content' => '您有一条新订单,订单号为:${order_no},请注意查看'
- ]
- ]
- ],
- ],
- // 满额包邮设置
- SettingEnum::FULL_FREE => [
- 'key' => SettingEnum::FULL_FREE,
- 'describe' => '满额包邮设置',
- 'values' => [
- 'is_open' => 0, // 是否开启满额包邮
- 'money' => '', // 单笔订单额度
- 'excludedRegions' => [ // 不参与包邮的地区
- 'cityIds' => [], // 城市ID集
- 'selectedText' => '' // 选择的地区(文字)
- ],
- 'excludedGoodsIds' => [], // 不参与包邮的商品 (ID集)
- 'describe' => '' // 满额包邮说明
- ],
- ],
- // 用户充值设置
- SettingEnum::RECHARGE => [
- 'key' => SettingEnum::RECHARGE,
- 'describe' => '用户充值设置',
- 'values' => [
- 'is_entrance' => 1, // 是否允许用户充值
- 'is_custom' => 1, // 是否允许自定义金额
- 'is_match_plan' => 1, // 自定义金额是否自动匹配合适的套餐
- 'describe' => "1. 账户充值仅限微信在线方式支付,充值金额实时到账;\n" .
- "2. 账户充值套餐赠送的金额即时到账;\n" .
- "3. 账户余额有效期:自充值日起至用完即止;\n" .
- "4. 若有其它疑问,可拨打客服电话400-000-1234", // 充值说明
- ],
- ],
- // 积分设置
- SettingEnum::POINTS => [
- 'key' => SettingEnum::POINTS,
- 'describe' => SettingEnum::data()[SettingEnum::POINTS]['describe'],
- 'values' => [
- 'points_name' => '积分', // 积分名称自定义
- 'is_shopping_gift' => 0, // 是否开启购物送积分
- 'gift_ratio' => '100', // 积分赠送比例
- 'is_shopping_discount' => 0, // 是否允许下单使用积分抵扣
- 'discount' => [ // 积分抵扣
- 'discount_ratio' => '0.01', // 积分抵扣比例
- 'full_order_price' => '100.00', // 订单满[?]元
- 'max_money_ratio' => '10', // 最高可抵扣订单额百分比
- ],
- // 积分说明
- 'describe' => "a) 积分不可兑现、不可转让,仅可在本平台使用;\n" .
- "b) 您在本平台参加特定活动也可使用积分,详细使用规则以具体活动时的规则为准;\n" .
- "c) 积分的数值精确到个位(小数点后全部舍弃,不进行四舍五入)\n" .
- "d) 买家在完成该笔交易(订单状态为“已签收”)后才能得到此笔交易的相应积分,如购买商品参加店铺其他优惠,则优惠的金额部分不享受积分获取;",
- ],
- ],
- // 分类页模板
- SettingEnum::PAGE_CATEGORY_TEMPLATE => [
- 'key' => SettingEnum::PAGE_CATEGORY_TEMPLATE,
- 'describe' => '分类页模板设置',
- 'values' => [
- 'style' => PageCategoryStyleEnum::TWO_LEVEL, // 分类页样式
- 'shareTitle' => '' // 分享标题
- ]
- ]
- ];
- }
- /**
- * 根据销售额获取阶梯奖励金的比例
- * @param $salesVolume
- * @return int|mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public static function getBonusRatioBySaleAmount($salesVolume){
- $ratios = (self::getItem('distributor_step'))['distributor'];
- $len = count($ratios);
- for ($i=$len-1;$i>=0;$i--){
- if ($salesVolume >= $ratios[$i]['sale_amount']*10000){
- return ['bonus_ratio'=>$ratios[$i]['bonus_ratio'],'bonus_ladder'=>$ratios[$i]['ladder']];
- }
- }
- // return 0;
- return ['bonus_ratio'=>0,'bonus_ladder'=>0];
- }
- /**
- * 根据分销员等级获取分销员分佣金的比例
- * @param $grade
- * @return int|mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- private function getRatioBySellerGrade($grade){
- return (self::getItem('distributor_grade'))['distributor'][$grade-1];
- }
- }
|