516 lines
17 KiB
PHP
516 lines
17 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
declare (strict_types=1);
|
||
|
||
namespace app\services\diy;
|
||
|
||
use app\services\BaseServices;
|
||
use app\dao\diy\DiyDao;
|
||
use app\services\other\QrcodeServices;
|
||
use app\services\system\config\SystemGroupDataServices;
|
||
use app\services\system\config\SystemGroupServices;
|
||
use crmeb\exceptions\AdminException;
|
||
use crmeb\services\SystemConfigService;
|
||
use think\exception\ValidateException;
|
||
|
||
/**
|
||
* 首页diy
|
||
* Class DiyServices
|
||
* @package app\services\diy
|
||
* @mixin DiyDao
|
||
*/
|
||
class DiyServices extends BaseServices
|
||
{
|
||
/**
|
||
/**
|
||
* @var string
|
||
*/
|
||
protected $cacheKey = 'diy_cache';
|
||
|
||
/**
|
||
* 数据类型
|
||
* @var array
|
||
*/
|
||
public $type = [
|
||
1 => 'DIY数据',
|
||
3 => [
|
||
'member' => '个人中心',
|
||
'category' => '分类样式',
|
||
'color_change' => '主题风格',
|
||
],
|
||
4 => '系统表单数据'
|
||
];
|
||
|
||
/**
|
||
* 商品详情diy默认数据
|
||
* @var array
|
||
*/
|
||
protected $productDetail = [
|
||
'price_type' => [1],//展示1:svip价2:会员价
|
||
'is_share' => true,//分享
|
||
'is_name' => true, //商品名称
|
||
'is_brand' => true,//品牌
|
||
'is_ot_price' => false,//原价
|
||
'is_sales' => true,//销量
|
||
'is_stock' => true,//库存
|
||
'is_coupon' => true,//优惠券
|
||
'is_activity' => true,//活动
|
||
'is_promotions' => true,//优惠活动
|
||
'is_specs' => true,//参数
|
||
'is_ensure' => true,//保障服务
|
||
'is_sku' => true,//规格选择
|
||
'sku_style' => 1,//规格样式
|
||
'is_store' => true,//门店
|
||
'is_reply' => true,//是否站评论
|
||
'reply_num' => 1,//评论数量
|
||
'is_discounts' => true,//是否展示搭配购
|
||
'discounts_num' => 3,//搭配狗数量
|
||
'is_recommend' => true,//是否展示优品推荐
|
||
'recommend_num' => 6,//优惠推荐数量
|
||
'is_description' => true//是否展示商品详情
|
||
];
|
||
|
||
/**
|
||
* DiyServices constructor.
|
||
* @param DiyDao $dao
|
||
*/
|
||
public function __construct(DiyDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
/**
|
||
* 获取DIY列表
|
||
* @param array $where
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getDiyList(array $where)
|
||
{
|
||
[$page, $limit] = $this->getPageValue();
|
||
$list = $this->dao->getDiyList($where, $page, $limit, ['is_diy', 'template_name', 'id', 'title', 'name', 'type', 'add_time', 'update_time', 'status', 'cover_image']);
|
||
$count = $this->dao->count($where);
|
||
return compact('list', 'count');
|
||
}
|
||
|
||
/**
|
||
* 保存资源
|
||
* @param int $id
|
||
* @param array $data
|
||
* @return int
|
||
*/
|
||
public function saveData(int $id = 0, array $data = [])
|
||
{
|
||
if ($id) {
|
||
if ($data['type'] === '') {
|
||
unset($data['type']);
|
||
}
|
||
$data['update_time'] = time();
|
||
$res = $this->dao->update($id, $data);
|
||
if (!$res) throw new AdminException('修改失败');
|
||
} else {
|
||
$data['add_time'] = time();
|
||
$data['update_time'] = time();
|
||
$data['is_diy'] = 1;
|
||
$res = $this->dao->save($data);
|
||
if (!$res) throw new AdminException('保存失败');
|
||
$id = $res->id;
|
||
}
|
||
|
||
$this->dao->cacheTag()->clear();
|
||
$this->dao->cacheTag()->set('index_diy_' . $id, $data['version']);
|
||
$this->updateCacheDiyVersion();
|
||
|
||
event('diy.update');
|
||
return $id;
|
||
}
|
||
|
||
/**
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2022/11/9
|
||
*/
|
||
public function updateCacheDiyVersion()
|
||
{
|
||
$diyInfo = $this->dao->get(['status' => 1, 'type' => 1, 'is_diy' => 1], ['id', 'version']);
|
||
if (!$diyInfo) {
|
||
$this->dao->cacheHander()->delete('index_diy_default');
|
||
} else {
|
||
$this->dao->cacheTag()->set('index_diy_default', $diyInfo['version']);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @return mixed
|
||
* @throws \Throwable
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2022/11/9
|
||
*/
|
||
public function getCacheDiyVersion()
|
||
{
|
||
return $this->dao->cacheTag()->remember('index_diy_default', function () {
|
||
return $this->dao->value(['status' => 1, 'type' => 1, 'is_diy' => 1], 'version');
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 删除DIY模板
|
||
* @param int $id
|
||
*/
|
||
public function del(int $id)
|
||
{
|
||
if ($id == 1) throw new AdminException('默认模板不能删除');
|
||
$count = $this->dao->getCount(['id' => $id, 'status' => 1]);
|
||
if ($count) throw new AdminException('该模板使用中,无法删除');
|
||
$res = $this->dao->update($id, ['is_del' => 1]);
|
||
if (!$res) throw new AdminException('删除失败,请稍后再试');
|
||
|
||
$this->dao->cacheTag()->clear();
|
||
$this->updateCacheDiyVersion();
|
||
$this->dao->cacheHander()->delete('index_diy_' . $id);
|
||
|
||
event('diy.update');
|
||
}
|
||
|
||
/**
|
||
* 设置模板使用
|
||
* @param int $id
|
||
*/
|
||
public function setStatus(int $id)
|
||
{
|
||
$info = $this->dao->get($id);
|
||
if (!$info) {
|
||
throw new AdminException('默认不存在');
|
||
}
|
||
if (!$info['is_show']) {
|
||
throw new AdminException('请编辑开启页面状态后,在设置为首页');
|
||
}
|
||
$this->dao->update($info['type'], ['status' => 0], 'type');
|
||
$this->dao->update($id, ['status' => 1, 'update_time' => time()]);
|
||
|
||
$this->dao->cacheTag()->clear();
|
||
$this->updateCacheDiyVersion();
|
||
|
||
event('diy.update');
|
||
return ['status' => 1, 'msg' => '设置成功'];
|
||
}
|
||
|
||
/**
|
||
* 获取页面数据
|
||
* @return array|\think\Model|null
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getDiy(string $name)
|
||
{
|
||
$data = [];
|
||
if ($name == '') {
|
||
$info = $this->dao->getOne(['status' => 1, 'type' => 1]);
|
||
} else {
|
||
$info = $this->dao->getOne(['template_name' => $name]);
|
||
}
|
||
if ($info) {
|
||
$info = $info->toArray();
|
||
$data = json_decode($info['value'], true);
|
||
}
|
||
return $data;
|
||
}
|
||
|
||
/**
|
||
* 返回当前diy版本
|
||
* @param int $id
|
||
* @return mixed
|
||
* @throws \Throwable
|
||
* @author 等风来
|
||
* @email 136327134@qq.com
|
||
* @date 2022/11/9
|
||
*/
|
||
public function getDiyVersion(int $id)
|
||
{
|
||
if ($id) {
|
||
return $this->dao->cacheTag()->remember('index_diy_' . $id, function () use ($id) {
|
||
return $this->dao->value(['id' => $id], 'version');
|
||
});
|
||
} else {
|
||
return $this->getCacheDiyVersion();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 获取diy详细数据
|
||
* @param int $id
|
||
* @return array|object
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getDiyInfo(int $id)
|
||
{
|
||
return $this->dao->cacheTag()->remember('diy_info_' . $id, function () use ($id) {
|
||
$field = ['title', 'value', 'is_show', 'is_bg_color', 'color_picker', 'bg_pic', 'bg_tab_val', 'is_bg_pic', 'order_status'];
|
||
$diyInfo = $this->dao->get($id ?: ['status' => 1, 'type' => 1, 'is_diy' => 1], $field);
|
||
if (!$diyInfo) {
|
||
$diyInfo = $this->dao->get(['template_name' => 'default'], $field);
|
||
}
|
||
if ($diyInfo) {
|
||
$diyInfo = $diyInfo->toArray();
|
||
$diyInfo['value'] = json_decode($diyInfo['value'], true);
|
||
$value = [];
|
||
foreach ($diyInfo['value'] as $key => $item) {
|
||
if ($item['name'] == 'customerService') {
|
||
$item['routine_contact_type'] = SystemConfigService::get('routine_contact_type', 0);
|
||
}
|
||
if ($item['name'] == 'promotionList') {
|
||
unset($item['titleShow']['title'],
|
||
$item['opriceShow']['title'],
|
||
$item['priceShow']['title'],
|
||
$item['couponShow']['title']);
|
||
}
|
||
if ($item['name'] == 'activeParty') {
|
||
unset($item['titleConfig']['place'],
|
||
$item['titleConfig']['max'],
|
||
$item['desConfig']['place'],
|
||
$item['desConfig']['max']
|
||
);
|
||
if (isset($item['menuConfig']['list']['info'])) {
|
||
foreach ($item['menuConfig']['list']['info'] as $k => $v) {
|
||
unset($v['tips'], $v['max']);
|
||
$item['menuConfig']['list']['info'][$k] = $v;
|
||
}
|
||
}
|
||
}
|
||
|
||
if ($item['name'] == 'pageFoot' && !$id) {
|
||
continue;
|
||
}
|
||
$value[$key] = $item;
|
||
}
|
||
$diyInfo['value'] = $value;
|
||
return $diyInfo;
|
||
} else {
|
||
return [];
|
||
}
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 获取底部导航
|
||
* @param string $template_name
|
||
* @return array|mixed
|
||
*/
|
||
public function getNavigation(string $template_name)
|
||
{
|
||
return $this->dao->cacheTag()->remember('navigation_' . $template_name, function () use ($template_name) {
|
||
$value = $this->dao->value($template_name ? ['template_name' => $template_name] : ['status' => 1, 'type' => 1], 'value');
|
||
if (!$value) {
|
||
$value = $this->dao->value(['template_name' => 'default'], 'value');
|
||
}
|
||
$navigation = [];
|
||
if ($value) {
|
||
$value = json_decode($value, true);
|
||
foreach ($value as $item) {
|
||
if (isset($item['name']) && strtolower($item['name']) === 'pagefoot') {
|
||
$navigation = $item;
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
return $navigation;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 获取换色/分类数据
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getColorChange(string $name)
|
||
{
|
||
$key = 'color_change_' . $name . '_3';
|
||
return $this->dao->cacheStrRemember($key, function () use ($name) {
|
||
return $this->dao->value(['template_name' => $name, 'type' => 3], 'value');
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 取单个diy小程序预览二维码
|
||
* @param int $id
|
||
* @return string
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getRoutineCode(int $id)
|
||
{
|
||
$diy = $this->dao->getOne(['id' => $id, 'is_del' => 0]);
|
||
if (!$diy) {
|
||
throw new AdminException('数据不存在');
|
||
}
|
||
$type = $diy['status'] ? 8 : 6;
|
||
/** @var QrcodeServices $QrcodeService */
|
||
$QrcodeService = app()->make(QrcodeServices::class);
|
||
$image = $QrcodeService->getRoutineQrcodePath($id, 0, $type, [], true);
|
||
return $image;
|
||
}
|
||
|
||
/**
|
||
* 获取个人中心数据
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getMemberData()
|
||
{
|
||
$key = 'diy_data_member_3';
|
||
$info = $this->dao->cacheRemember($key, function () {
|
||
$info = $this->dao->get(['template_name' => 'member', 'type' => 3]);
|
||
if ($info) {
|
||
return $info->toArray();
|
||
} else {
|
||
return null;
|
||
}
|
||
});
|
||
if (!$info) {
|
||
throw new ValidateException('数据不存在');
|
||
}
|
||
$value = json_decode($info['value'], true);
|
||
$data = [];
|
||
$data['status'] = (int)($value['status'] ?? 1);
|
||
$data['vip_type'] = (int)($value['vip_type'] ?? 1);
|
||
$data['newcomer_status'] = (int)($value['newcomer_status'] ?? 1);
|
||
$data['newcomer_style'] = (int)($value['newcomer_style'] ?? 1);
|
||
$data['order_status'] = $info['order_status'] ? (int)$info['order_status'] : 1;
|
||
$data['menu_status'] = $info['menu_status'] ? (int)$info['menu_status'] : 1;
|
||
$data['service_status'] = $info['service_status'] ? (int)$info['service_status'] : 1;
|
||
$data['my_banner_status'] = !!((int)$info['my_banner_status'] ?? 1);
|
||
$data['color_change'] = (int)$this->getColorChange('color_change');
|
||
/** @var SystemGroupDataServices $systemGroupDataServices */
|
||
$systemGroupDataServices = app()->make(SystemGroupDataServices::class);
|
||
/** @var SystemGroupServices $systemGroupServices */
|
||
$systemGroupServices = app()->make(SystemGroupServices::class);
|
||
$menus_gid = $systemGroupServices->value(['config_name' => 'routine_my_menus'], 'id');
|
||
$banner_gid = $systemGroupServices->value(['config_name' => 'routine_my_banner'], 'id');
|
||
$routine_my_menus = $systemGroupDataServices->getGroupDataList(['gid' => $menus_gid]);
|
||
$routine_my_menus = $routine_my_menus['list'] ?? [];
|
||
$url = ['/kefu/mobile_list', '/pages/store_spread/index', '/pages/admin/order_cancellation/index', '/pages/admin/order/index'];
|
||
foreach ($routine_my_menus as &$item) {
|
||
if (!isset($item['type']) || !$item['type']) {
|
||
$item['type'] = in_array($item['url'], $url) ? 2 : 1;
|
||
}
|
||
}
|
||
$data['routine_my_menus'] = $routine_my_menus;
|
||
$routine_my_banner = $systemGroupDataServices->getGroupDataList(['gid' => $banner_gid]);
|
||
$routine_my_banner = $routine_my_banner['list'] ?? [];
|
||
$data['routine_my_banner'] = $routine_my_banner;
|
||
return $data;
|
||
}
|
||
|
||
/**
|
||
* 保存个人中心数据配置
|
||
* @param array $data
|
||
* @return bool
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function memberSaveData(array $data)
|
||
{
|
||
$key = 'diy_data_member_3';
|
||
/** @var SystemGroupDataServices $systemGroupDataServices */
|
||
$systemGroupDataServices = app()->make(SystemGroupDataServices::class);
|
||
if (!isset($data['status']) || !$data['status']) throw new AdminException('参数错误');
|
||
$info = $this->dao->get(['template_name' => 'member', 'type' => 3]);
|
||
$routine_my_banner = $data['routine_my_banner'] ?? [];
|
||
$routine_my_menus = $data['routine_my_menus'] ?? [];
|
||
$value = ['status' => $data['status'], 'vip_type' => $data['vip_type'] ?? 1, 'newcomer_status' => $data['newcomer_status'] ?? 1, 'newcomer_style' => $data['newcomer_style'] ?? 1];
|
||
$data['value'] = json_encode($value);
|
||
$data['my_banner_status'] = $data['my_banner_status'] && $data['routine_my_banner'] ? 1 : 0;
|
||
unset($data['status'], $data['routine_my_banner'], $data['routine_my_menus']);
|
||
if ($info) {
|
||
$data['update_time'] = time();
|
||
if (!$this->dao->update($info['id'], $data)) {
|
||
throw new AdminException('编辑保存失败');
|
||
}
|
||
$data = array_merge($info->toArray(), $data);
|
||
$this->dao->cacheUpdate($data, $key);
|
||
} else {
|
||
throw new AdminException('个人中心模板不存在');
|
||
}
|
||
$systemGroupDataServices->saveAllData($routine_my_banner, 'routine_my_banner');
|
||
$systemGroupDataServices->saveAllData($routine_my_menus, 'routine_my_menus');
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* 获取商品diy数据
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getProductDetailDiy()
|
||
{
|
||
$name = 'product_detail';
|
||
$key = $this->cacheKey . '_' . $name;
|
||
$default = $this->productDetail;
|
||
return $this->dao->cacheTag()->remember($key, function () use ($name, $default) {
|
||
$info = $this->dao->get(['template_name' => $name, 'type' => 3]);
|
||
if ($info) {
|
||
$result = json_decode($info['value'], true);
|
||
$result = array_merge($default, array_intersect_key($result, $default));
|
||
} else {
|
||
$result = $default;
|
||
}
|
||
return $result;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 保存商品diy数据
|
||
* @param array $content
|
||
* @return bool
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function saveProductDetailDiy(array $content)
|
||
{
|
||
$name = 'product_detail';
|
||
$key = $this->cacheKey . '_' . $name;
|
||
$info = $this->dao->get(['template_name' => $name, 'type' => 3]);
|
||
$data = [];
|
||
$data['value'] = json_encode($content);
|
||
$time = time();
|
||
if ($info) {
|
||
$data['update_time'] = $time;
|
||
if (!$this->dao->update($info['id'], $data)) {
|
||
throw new AdminException('编辑保存失败');
|
||
}
|
||
} else {
|
||
$data['template_name'] = 'product_detail';
|
||
$data['type'] = 3;
|
||
$data['add_time'] = $time;
|
||
$this->dao->save($data);
|
||
}
|
||
$this->dao->cacheTag()->clear();
|
||
return true;
|
||
}
|
||
}
|