793 lines
33 KiB
PHP
793 lines
33 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\common\repositories\community;
|
||
|
||
use app\common\dao\community\CommunityDao;
|
||
use app\common\dao\store\order\StoreCartDao;
|
||
use app\common\model\community\Community;
|
||
use app\common\model\store\order\StoreCart;
|
||
use app\common\model\store\product\ProductAttrValue;
|
||
use app\common\model\store\product\PurchaseRecord;
|
||
use app\common\model\store\Resale;
|
||
use app\common\model\store\Entrust;
|
||
use app\common\repositories\BaseRepository;
|
||
use app\common\repositories\store\order\StoreCartRepository;
|
||
use app\common\repositories\store\order\StoreOrderProductRepository;
|
||
use app\common\repositories\store\product\SpuRepository;
|
||
use app\common\repositories\system\RelevanceRepository;
|
||
use app\common\repositories\user\UserBrokerageRepository;
|
||
use app\common\repositories\user\UserRepository;
|
||
use crmeb\services\QrcodeService;
|
||
use FormBuilder\Factory\Elm;
|
||
use think\exception\ValidateException;
|
||
use think\facade\Db;
|
||
use think\facade\Route;
|
||
|
||
class CommunityRepository extends BaseRepository
|
||
{
|
||
/**
|
||
* @var CommunityDao
|
||
*/
|
||
protected $dao;
|
||
|
||
const IS_SHOW_WHERE = [
|
||
'is_show' => 1,
|
||
'status' => 1,
|
||
'is_del' => 0,
|
||
];
|
||
|
||
public const COMMUNIT_TYPE_FONT = '1';
|
||
public const COMMUNIT_TYPE_VIDEO = '2';
|
||
public const COMMUNITY_TYPE_RESALE = 3; //转售贴
|
||
public const COMMUNITY_TYPE_ENTRUST = 4; //委托销售贴
|
||
public const RESALE_TYPE_STORE = 1; //到店核销
|
||
public const RESALE_TYPE_DELIVER = 2; //快递配送
|
||
public const RESALE_TYPE_TRANSFER = 1; //调货
|
||
public const RESALE_TYPE_DISCOUNT = 2; //打折
|
||
|
||
/**
|
||
* CommunityRepository constructor.
|
||
* @param CommunityDao $dao
|
||
*/
|
||
public function __construct(CommunityDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
public function title(array $where)
|
||
{
|
||
$where['is_type'] = self::COMMUNIT_TYPE_FONT;
|
||
$list[] = [
|
||
'count' => $this->dao->search($where)->count(),
|
||
'title' => '图文列表',
|
||
'type' => self::COMMUNIT_TYPE_FONT,
|
||
];
|
||
$where['is_type'] = self::COMMUNIT_TYPE_VIDEO;
|
||
$list[] = [
|
||
'count' => $this->dao->search($where)->count(),
|
||
'title' => '短视频列表',
|
||
'type' => self::COMMUNIT_TYPE_VIDEO,
|
||
];
|
||
return $list;
|
||
}
|
||
|
||
public function getList(array $where, int $page, int $limit)
|
||
{
|
||
$query = $this->dao->search($where)->with([
|
||
'author' => function($query) {
|
||
$query->field('uid,real_name,status,avatar,nickname,count_start');
|
||
},
|
||
'topic' => function($query) {
|
||
$query->where('status', 1)->where('is_del',0);
|
||
$query->field('topic_id,topic_name,status,category_id,pic,is_del');
|
||
},
|
||
'category'
|
||
]);
|
||
$count = $query->count();
|
||
$list = $query->page($page, $limit)->select();
|
||
foreach($list as $key=>$val) {
|
||
$merInfo = Db::name('StoreService')->alias('ss')->leftJoin('Merchant m','ss.mer_id = M.mer_id')->where('ss.uid', $val['uid'])->field('m.mer_avatar, m.mer_name')->find();
|
||
$list[$key]['mer_name'] = $merInfo['mer_name'] ?? '';
|
||
$list[$key]['mer_avatar'] = $merInfo['mer_avatar'] ?? '';
|
||
}
|
||
return compact('count','list');
|
||
}
|
||
|
||
|
||
public function getApiList(array $where, int $page, int $limit, $userInfo)
|
||
{
|
||
$config = systemConfig("community_app_switch");
|
||
// if (!isset($where['is_type']) && $config) $where['is_type'] = is_array($config) ? implode(',', $config) : $config;
|
||
if (empty($where['is_type'])) $where['is_type'] = '1,2';
|
||
$uIdArray = [];
|
||
if ($where['is_type'] == 3) {
|
||
$categoryId = Db::name('merchant')->where('uid', $userInfo->uid)->where('status', 1)->value('category_id');
|
||
$uIdArray = Db::name('merchant')->where('category_id', $categoryId)->where('status', 1)->where('uid', '>', 0)->column('uid');
|
||
}
|
||
$where['is_del'] = 0;
|
||
$query = $this->dao->search($where)->when(in_array(self::COMMUNITY_TYPE_RESALE, explode(',', $where['is_type'])), function ($query) use ($where, $uIdArray) {
|
||
$query->where('Community.is_sale', 0);
|
||
if (is_array($uIdArray) && count($uIdArray) > 0) {
|
||
$query->whereIn('Community.uid', $uIdArray);
|
||
}
|
||
})->order('start DESC,Community.create_time DESC,community_id DESC');
|
||
$query->with([
|
||
'author' => function($query) use($userInfo){
|
||
$query->field('uid,real_name,status,avatar,nickname,count_start');
|
||
},
|
||
'is_start' => function($query) use ($userInfo) {
|
||
$query->where('left_id',$userInfo->uid ?? null);
|
||
},
|
||
'topic' => function($query) {
|
||
$query->where('status', 1)->where('is_del',0);
|
||
$query->field('topic_id,topic_name,status,category_id,pic,is_del');
|
||
},
|
||
'relevance' => [
|
||
'spu' => function($query) {
|
||
$query->field('spu_id,store_name,image,price,product_type,activity_id,product_id');
|
||
}
|
||
],
|
||
'is_fans' => function($query) use($userInfo){
|
||
$query->where('left_id',$userInfo->uid?? 0);
|
||
},
|
||
'resale',
|
||
]);
|
||
$count = $query->count();
|
||
$list = $query->page($page, $limit)->setOption('field',[])
|
||
->field('community_id,title,image,resale_type,topic_id,Community.count_start,count_reply,start,Community.create_time,Community.uid,Community.status,is_show,content,video_link,is_type,refusal')
|
||
->select()->append(['time']);
|
||
if ($list) $list = $list->toArray();
|
||
foreach ($list as $k => $item) {
|
||
if ($item['is_type'] == self::COMMUNITY_TYPE_RESALE) {
|
||
$list[$k]['total_price'] = '0';
|
||
foreach ($item['resale'] as $value) {
|
||
$list[$k]['total_price'] = bcadd($list[$k]['total_price'], bcmul($value['price'], $value['number'], 2), 2);
|
||
}
|
||
$list[$k]['mer_name'] = '';
|
||
$list[$k]['mer_avatar'] = '';
|
||
$merInfo = Db::name('StoreService')->alias('ss')->leftJoin('Merchant m','ss.mer_id = M.mer_id')->where('ss.uid', $item['uid'])->field('m.mer_avatar, m.mer_name')->find();
|
||
if ($merInfo) {
|
||
$list[$k]['mer_name'] = $merInfo['mer_name'];
|
||
$list[$k]['mer_avatar'] = $merInfo['mer_avatar'];
|
||
}
|
||
}
|
||
}
|
||
return compact('count','list');
|
||
}
|
||
|
||
public function getFirtVideo($where,$page, $userInfo)
|
||
{
|
||
$with =[];
|
||
if ($page == 1) {
|
||
$with = [
|
||
'author' => function($query) {
|
||
$query->field('uid,real_name,status,avatar,nickname,count_start');
|
||
},
|
||
'is_start' => function($query) use ($userInfo) {
|
||
$query->where('left_id',$userInfo->uid ?? null);
|
||
},
|
||
'topic' => function($query) {
|
||
$query->where('status', 1)->where('is_del',0);
|
||
$query->field('topic_id,topic_name,status,category_id,pic,is_del');
|
||
},
|
||
'relevance' => [
|
||
'spu' => function($query) {
|
||
$query->field('spu_id,store_name,image,price,product_type,activity_id,product_id,status');
|
||
}
|
||
],
|
||
'is_fans' => function($query) use($userInfo){
|
||
$query->where('left_id',$userInfo->uid?? 0);
|
||
}
|
||
];
|
||
}
|
||
return $this->dao->getSearch($where)->with($with)->field('community_id,image,title,topic_id,count_start,count_reply,start,create_time,uid,status,is_show,content,video_link,is_type,refusal')->find();
|
||
}
|
||
|
||
public function getApiVideoList(array $where, int $page, int $limit, $userInfo, $type = 0)
|
||
{
|
||
$where['is_type'] = self::COMMUNIT_TYPE_VIDEO;
|
||
$first = $this->getFirtVideo($where,$page, $userInfo);
|
||
if ($type) { // 点赞过的内容
|
||
$where['uid'] = $userInfo->uid;
|
||
$where['community_ids'] = $this->dao->joinUser($where)->column('community_id');
|
||
} else { // 条件视频
|
||
if (!isset($where['uid']) && $first) $where['topic_id'] = $first['topic_id'];
|
||
}
|
||
$where['not_id'] = $where['community_id'];
|
||
unset($where['community_id']);
|
||
$data = $this->getApiList($where, $page, $limit, $userInfo);
|
||
if (empty($data['list']) && isset($where['topic_id'])) {
|
||
unset($where['topic_id']);
|
||
$data = $this->getApiList($where, $page, $limit, $userInfo);
|
||
}
|
||
if ($page == 1 && $first) {
|
||
array_unshift($data['list'],$first->toArray());
|
||
}
|
||
return $data;
|
||
}
|
||
|
||
/**
|
||
* TODO 后台详情
|
||
* @param int $id
|
||
* @return array|\think\Model|null
|
||
* @author Qinii
|
||
* @day 10/28/21
|
||
*/
|
||
public function detail(int $id)
|
||
{
|
||
$where = [
|
||
$this->dao->getPk() => $id,
|
||
'is_del' => 0
|
||
];
|
||
$config = systemConfig("community_app_switch");
|
||
if ($config) $where['is_type'] = $config;
|
||
$info = $this->dao->getSearch($where)->with([
|
||
'author' => function($query) {
|
||
$query->field('uid,real_name,status,avatar,nickname,count_start');
|
||
},
|
||
'topic',
|
||
'category',
|
||
'relevance.spu'
|
||
])->find();
|
||
if ($info){
|
||
$merInfo = Db::name('StoreService')->alias('ss')->leftJoin('Merchant m','ss.mer_id = M.mer_id')->where('ss.uid', $info['uid'])->field('m.mer_avatar, m.mer_name')->find();
|
||
$info['mer_name'] = $merInfo['mer_name'] ?? '';
|
||
$info['mer_avatar'] = $merInfo['mer_avatar'] ?? '';
|
||
}
|
||
return $info;
|
||
}
|
||
|
||
/**
|
||
* TODO 移动端详情展示
|
||
* @param int $id
|
||
* @param $user
|
||
* @return array|\think\Model|null
|
||
* @author Qinii
|
||
* @day 10/27/21
|
||
*/
|
||
|
||
public function show(int $id, $user)
|
||
{
|
||
$where = self::IS_SHOW_WHERE;
|
||
$is_author = 0;
|
||
if ($user && $this->dao->uidExists($id, $user->uid)) {
|
||
$where = ['is_del' => 0];
|
||
$is_author = 1;
|
||
}
|
||
$config = systemConfig("community_app_switch");
|
||
if ($config) $where['is_type'] = $config;
|
||
$where[$this->dao->getPk()] = $id;
|
||
$data = $this->dao->getSearch($where)
|
||
->with([
|
||
'author' => function ($query) {
|
||
$query->field('uid,real_name,status,avatar,nickname,count_start,member_level');
|
||
if (systemConfig('member_status')) $query->with(['member' => function ($query) {
|
||
$query->field('brokerage_icon,brokerage_level');
|
||
}]);
|
||
},
|
||
'relevance' => [
|
||
'spu' => function ($query) {
|
||
$query->field('spu_id,store_name,image,price,product_type,activity_id,product_id');
|
||
}
|
||
],
|
||
'topic' => function ($query) {
|
||
$query->where('status', 1)->where('is_del', 0);
|
||
$query->field('topic_id,topic_name,status,category_id,pic,is_del');
|
||
},
|
||
'is_start' => function ($query) use ($user) {
|
||
$query->where('left_id', $user->uid ?? '');
|
||
},
|
||
'resale' => [
|
||
// 'spu' => function ($query) {
|
||
// $query->field('spu_id,store_name,image,price,product_type,activity_id,product_id');
|
||
// }
|
||
],
|
||
])->hidden(['is_del'])->find();
|
||
|
||
if (!$data) throw new ValidateException('内容不存在,可能已被删除了哦~');
|
||
|
||
$data['is_author'] = $is_author;
|
||
$is_fans = 0;
|
||
if ($user && !$data['is_author'])
|
||
$is_fans = app()->make(RelevanceRepository::class)->getWhereCount([
|
||
'left_id' => $user->uid,
|
||
'right_id' => $data['uid'],
|
||
'type' => RelevanceRepository::TYPE_COMMUNITY_FANS,
|
||
]);
|
||
$data['is_fans'] = $is_fans;
|
||
if ($data['is_type'] == self::COMMUNITY_TYPE_RESALE) {
|
||
$data['total_price'] = '0';
|
||
foreach ($data['resale'] as $k=>$value) {
|
||
$data['total_price'] = bcadd($data['total_price'], bcmul($value['price'], $value['number'], 2), 2);
|
||
$attrInfo = Db::name('StoreProduct')->alias('sp')->leftJoin('StoreProductAttrValue sv','sp.product_id = sv.product_id')->where('sv.unique', $value['product_attr_unique'])->field('sv.detail, sv.sku, sv.sales, sp.store_name, sp.image')->find();
|
||
$data['resale'][$k]['sku'] = $attrInfo['sku'] ?? '';
|
||
$data['resale'][$k]['sales'] = $attrInfo['sales'] ?? 0;
|
||
$data['resale'][$k]['store_name'] = $attrInfo['store_name'] ?? '';
|
||
$data['resale'][$k]['image'] = $attrInfo['image'] ?? '';
|
||
}
|
||
$data['mer_avatar'] = '';
|
||
$data['mer_name'] = '';
|
||
$data['sales'] = 0;
|
||
$data['care_count'] = 0;
|
||
$merInfo = Db::name('StoreService')->alias('ss')->leftJoin('Merchant m','ss.mer_id = m.mer_id')->where('ss.uid', $data['uid'])->field('m.mer_avatar, m.mer_name, m.sales, m.care_count')->find();
|
||
if ($merInfo) {
|
||
$data['mer_avatar'] = $merInfo['mer_avatar'];
|
||
$data['mer_name'] = $merInfo['mer_name'];
|
||
$data['sales'] = $merInfo['sales'];
|
||
$data['care_count'] = $merInfo['care_count'];
|
||
}
|
||
}
|
||
if ($data['is_type'] == 2) {
|
||
$prevId = Db::name('community')->where('community_id', '<', $id)->where('is_type', 2)->order('community_id', 'desc')->value('community_id', 0);
|
||
$nextId = Db::name('community')->where('community_id', '>', $id)->where('is_type', 2)->order('community_id', 'asc')->value('community_id', 0);
|
||
$data['prev_id'] = $prevId;
|
||
$data['next_id'] = $nextId;
|
||
}
|
||
return $data;
|
||
}
|
||
|
||
public function getSpuByOrder($id, $uid)
|
||
{
|
||
$where = app()->make(StoreOrderProductRepository::class)->selectWhere(['order_id' => $id]);
|
||
if (!$where) throw new ValidateException('商品已下架');
|
||
|
||
$make = app()->make(SpuRepository::class);
|
||
foreach ($where as $item) {
|
||
switch ($item['product_type']){
|
||
case 0:
|
||
$sid = $item['product_id'];
|
||
// nobreak;
|
||
case 1:
|
||
$sid = $item['product_id'];
|
||
break;
|
||
case 2:
|
||
$sid = $item['activity_id'];
|
||
break;
|
||
case 3:
|
||
$sid = $item['cart_info']['productAssistSet']['product_assist_id'];
|
||
break;
|
||
case 4:
|
||
$sid = $item['cart_info']['product']['productGroup']['product_group_id'];
|
||
break;
|
||
default:
|
||
$sid = $item['product_id'];
|
||
break;
|
||
|
||
}
|
||
$data[] = $make->getSpuData($sid, $item['product_type'],0);
|
||
}
|
||
return $data;
|
||
}
|
||
|
||
/**
|
||
* TODO 创建
|
||
* @param array $data
|
||
* @author Qinii
|
||
* @day 10/29/21
|
||
*/
|
||
public function create(array $data)
|
||
{
|
||
event('community.create.before',compact('data'));
|
||
if ($data['topic_id']) {
|
||
$getTopic = app()->make(CommunityTopicRepository::class)->get($data['topic_id']);
|
||
if (!$getTopic || !$getTopic->status) throw new ValidateException('话题不存在或已关闭');
|
||
$data['category_id'] = $getTopic->category_id;
|
||
}
|
||
return Db::transaction(function () use($data) {
|
||
$community = $this->dao->create($data);
|
||
if ($data['spu_id'])$this->joinProduct($community->community_id,$data['spu_id']);
|
||
if ($data['product_info'] && $data['is_type'] == self::COMMUNITY_TYPE_RESALE) {
|
||
$this->resale($community->community_id, $data['product_info'], $data['resale_type'] ?? 0);
|
||
}
|
||
if ($data['product_info'] && $data['is_type'] == self::COMMUNITY_TYPE_ENTRUST) {
|
||
$this->entrust($community->community_id, $data['product_info'], $data['entrust_mer_id'] ?? 0, $data['entrust_day'] ?? 0);
|
||
}
|
||
event('community.create',compact('community'));
|
||
return $community->community_id;
|
||
});
|
||
}
|
||
|
||
/**
|
||
* TODO 编辑
|
||
* @param int $id
|
||
* @param array $data
|
||
* @author Qinii
|
||
* @day 10/29/21
|
||
*/
|
||
public function edit(int $id, array $data)
|
||
{
|
||
event('community.update.before',compact('id','data'));
|
||
if ($data['topic_id']) {
|
||
$getTopic = app()->make(CommunityTopicRepository::class)->get($data['topic_id']);
|
||
|
||
if (!$getTopic || !$getTopic->status) throw new ValidateException('话题不存在或已关闭');
|
||
$data['category_id'] = $getTopic->category_id;
|
||
}
|
||
|
||
Db::transaction(function () use($id, $data) {
|
||
$spuId = $data['spu_id'];
|
||
$productInfo = $data['product_info'];
|
||
unset($data['spu_id'], $data['product_info']);
|
||
if ($data['is_type'] != self::COMMUNITY_TYPE_ENTRUST) {
|
||
unset($data['entrust_mer_id'], $data['entrust_day']);
|
||
}
|
||
$community = $this->dao->update($id, $data);
|
||
if ($spuId) $this->joinProduct($id, $spuId);
|
||
if ($productInfo && $data['is_type'] == self::COMMUNITY_TYPE_RESALE) {
|
||
$this->resale($id, $productInfo, $data['resale_type'] ?? 0);
|
||
}
|
||
if ($productInfo && $data['is_type'] == self::COMMUNITY_TYPE_ENTRUST) {
|
||
$this->entrust($community->community_id, $data['product_info'], $data['entrust_mer_id'] ?? 0, $data['entrust_day'] ?? 0);
|
||
}
|
||
event('community.update.before',compact('id','community'));
|
||
});
|
||
}
|
||
|
||
public function joinProduct($id, array $data)
|
||
{
|
||
$make = app()->make(RelevanceRepository::class);
|
||
$data = array_unique($data);
|
||
$res = [];
|
||
foreach ($data as $value) {
|
||
if ($value) {
|
||
$res[] = [
|
||
'left_id' => $id,
|
||
'right_id' => $value,
|
||
'type' => RelevanceRepository::TYPE_COMMUNITY_PRODUCT
|
||
];
|
||
}
|
||
}
|
||
$make->clear($id,RelevanceRepository::TYPE_COMMUNITY_PRODUCT,'left_id');
|
||
if($res) $make->insertAll($res);
|
||
}
|
||
|
||
/**
|
||
* TODO 获取某用户信息
|
||
* @param int $uid
|
||
* @param null $self
|
||
* @return mixed
|
||
* @author Qinii
|
||
* @day 10/29/21
|
||
*/
|
||
public function getUserInfo(int $uid, $self = null)
|
||
{
|
||
$relevanceRepository = app()->make(RelevanceRepository::class);
|
||
$data['focus'] = $relevanceRepository->getFieldCount('left_id', $uid,RelevanceRepository::TYPE_COMMUNITY_FANS);
|
||
|
||
|
||
$is_start = $is_self = false;
|
||
if ($self && $self->uid == $uid) {
|
||
$user = $self;
|
||
$is_self = true;
|
||
} else {
|
||
$user = app()->make(UserRepository::class)->get($uid);
|
||
$is_start = $relevanceRepository->checkHas($self->uid, $uid, RelevanceRepository::TYPE_COMMUNITY_FANS) > 0;
|
||
}
|
||
$data['start'] = $user->count_start;
|
||
$data['uid'] = $user->uid;
|
||
$data['avatar'] = $user->avatar;
|
||
$data['nickname'] = $user->nickname;
|
||
$data['is_start'] = $is_start;
|
||
$data['member_icon'] = systemConfig('member_status') ? ($user->member->brokerage_icon ?? '') : '';
|
||
$data['is_self'] = $is_self;
|
||
$data['fans'] = $user->count_fans;
|
||
|
||
return $data;
|
||
}
|
||
|
||
public function setFocus(int $id, int $uid,int $status)
|
||
{
|
||
$make = app()->make(RelevanceRepository::class);
|
||
$check = $make->checkHas($uid, $id, RelevanceRepository::TYPE_COMMUNITY_FANS);
|
||
if ($status) {
|
||
if ($check) throw new ValidateException('您已经关注过他了~');
|
||
$make->create($uid, $id,RelevanceRepository::TYPE_COMMUNITY_FANS,true);
|
||
app()->make(UserRepository::class)->incField($id, 'count_fans', 1);
|
||
} else {
|
||
if (!$check) throw new ValidateException('您还未关注他哦~');
|
||
$make->destory($uid, $id,RelevanceRepository::TYPE_COMMUNITY_FANS);
|
||
app()->make(UserRepository::class)->decField($id, 'count_fans', 1);
|
||
}
|
||
return ;
|
||
}
|
||
|
||
public function form($id)
|
||
{
|
||
$form = Elm::createForm(Route::buildUrl('systemCommunityUpdate', ['id' => $id])->build());
|
||
$data = $this->dao->get($id);
|
||
if (!$data) throw new ValidateException('数据不存在');
|
||
$formData = $data->toArray();
|
||
|
||
return $form->setRule([
|
||
Elm::rate('start', '排序星级')->max(5)
|
||
])->setTitle('编辑星级')->formData($formData);
|
||
}
|
||
|
||
public function showForm($id)
|
||
{
|
||
$form = Elm::createForm(Route::buildUrl('systemCommunityStatus', ['id' => $id])->build());
|
||
$data = $this->dao->get($id);
|
||
if (!$data) throw new ValidateException('数据不存在');
|
||
$formData = $data->toArray();
|
||
return $form->setRule([
|
||
Elm::radio('status', '强制下架')->options([
|
||
['value' => -2, 'label' => '下架'], ['value' => 1, 'label' => '上架']])->control([
|
||
['value' => -2, 'rule' => [
|
||
Elm::textarea('refusal', '下架理由', '信息存在违规')->required()
|
||
]]
|
||
]),
|
||
])->setTitle('强制下架')->formData($formData);
|
||
}
|
||
|
||
public function setCommunityStart(int $id, $userInfo, int $status)
|
||
{
|
||
$make = app()->make(RelevanceRepository::class);
|
||
$userRepository = app()->make(UserRepository::class);
|
||
|
||
if ($status) {
|
||
$res = $make->create($userInfo->uid, $id, RelevanceRepository::TYPE_COMMUNITY_START,true);
|
||
if (!$res) throw new ValidateException('您已经点赞过了');
|
||
|
||
$ret = $this->dao->get($id);
|
||
$user = $userRepository->get($ret['uid']);
|
||
$this->dao->incField($id,'count_start',1);
|
||
if ($user) $userRepository->incField((int)$user->uid,'count_start',1);
|
||
}
|
||
if (!$status) {
|
||
if (!$make->checkHas($userInfo->uid, $id, RelevanceRepository::TYPE_COMMUNITY_START))
|
||
throw new ValidateException('您还没有点赞呢~');
|
||
$make->destory($userInfo->uid, $id, RelevanceRepository::TYPE_COMMUNITY_START);
|
||
|
||
$ret = $this->dao->get($id);
|
||
$user = $userRepository->get($ret['uid']);
|
||
$this->dao->decField($id,'count_start',1);
|
||
if ($user) $userRepository->decField((int)$user->uid, 'count_start',1);
|
||
}
|
||
}
|
||
|
||
public function setStatus($id, $data)
|
||
{
|
||
$ret = $this->dao->get($id);
|
||
event('community.status.before',compact('id','data'));
|
||
Db::transaction(function () use($ret,$id, $data) {
|
||
if ($data['status'] == 1) {
|
||
$make = app()->make(UserBrokerageRepository::class);
|
||
$make->incMemberValue($ret['uid'], 'member_community_num', $id);
|
||
Db::name('resale')->where('community_id', $id)->update(['float_rate' => $data['float_rate'] ?? 0]);
|
||
}
|
||
unset($data['float_rate']);
|
||
$data['status_time'] = date('Y-m-d H:i;s', time());
|
||
$this->dao->update($id, $data);
|
||
event('community.status',compact('id'));
|
||
});
|
||
|
||
}
|
||
|
||
public function destory($id, $user = null)
|
||
{
|
||
event('community.delete.before',compact('id','user'));
|
||
$this->dao->update($id, ['is_del' => 1]);
|
||
event('community.delete',compact('id', 'user'));
|
||
}
|
||
|
||
public function getDataBySpu($spuId)
|
||
{
|
||
$where = array_merge(['spu_id' => $spuId], self::IS_SHOW_WHERE);
|
||
return $this->dao->getSearch($where)
|
||
->order('create_time DESC')
|
||
->field('community_id,title,image,is_type')
|
||
->limit(3)->select();
|
||
}
|
||
|
||
public function qrcode($id, $type,$user)
|
||
{
|
||
$res = $this->dao->search(['is_type' => self::COMMUNIT_TYPE_VIDEO,'community_id' => $id, 'status' => 1, 'is_show' => 1])->find();
|
||
if (!$res) return false;
|
||
$make = app()->make(QrcodeService::class);
|
||
if ($type == 'routine') {
|
||
$name = md5('rcwx' . $id . $type . $user->uid . $user['is_promoter'] . date('Ymd')) . '.jpg';
|
||
$params = 'id=' . $id . '&spid=' . $user['uid'];
|
||
$link = 'pages/short_video/nvueSwiper/index';
|
||
return $make->getRoutineQrcodePath($name, $link, $params);
|
||
} else {
|
||
$name = md5('cwx' . $id . $type . $user->uid . $user['is_promoter'] . date('Ymd')) . '.jpg';
|
||
$link = 'pages/short_video/nvueSwiper/index';
|
||
$link = $link . '?id=' . $id . '&spid=' . $user['uid'];
|
||
$key = 'com' . $type . '_' . $id . '_' . $user['uid'];
|
||
return $make->getWechatQrcodePath($name, $link, false, $key);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 转售贴
|
||
* @param $id
|
||
* @param array $data
|
||
* @return void
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function resale($id, array $data, $resaleType = 0)
|
||
{
|
||
|
||
$insert = [];
|
||
foreach ($data as $value) {
|
||
if (isset($value['id'])) {
|
||
$resale = Resale::find($value['id']);
|
||
unset($value['product_attr_unique']);
|
||
$resale->update($value);
|
||
continue;
|
||
}
|
||
$purchaseRecord = PurchaseRecord::where('unique', $value['product_attr_unique'])->find();
|
||
// $exist = Resale::where('purchase_record_id', $purchaseRecord['id'])->find();
|
||
// if ($exist) {
|
||
// throw new ValidateException('已发起转售');
|
||
// }
|
||
$totalNumber = PurchaseRecord::where('unique', $value['product_attr_unique'])->sum('number');
|
||
$totalSalesVolume = PurchaseRecord::where('unique', $value['product_attr_unique'])->sum('sales_volume');
|
||
if (empty($purchaseRecord) || ($totalNumber - $totalSalesVolume) <= 0) {
|
||
throw new ValidateException('进货记录不存在或已售罄');
|
||
}
|
||
if (($totalNumber - $totalSalesVolume) < $value['number']) {
|
||
throw new ValidateException('库存不足');
|
||
}
|
||
|
||
if ($value) {
|
||
$insert[] = [
|
||
'community_id' => $id,
|
||
'purchase_record_id' => $purchaseRecord['id'],
|
||
'product_id' => $purchaseRecord['product_id'],
|
||
'product_attr_unique' => $purchaseRecord['unique'],
|
||
'mer_id' => $purchaseRecord['mer_id'],
|
||
'number' => $value['number'],
|
||
'price' => $value['price'],
|
||
'resale_type' => $resaleType,
|
||
'deliver_method' => $value['deliver_method'] ?? '',
|
||
'update_time' => date('Y-m-d H:i:s'),
|
||
];
|
||
}
|
||
$purchaseRecord->product->stock -= $value['number'];
|
||
$purchaseRecord->product->save();
|
||
$attrValue = ProductAttrValue::where('product_id', $purchaseRecord['product_id'])->where('unique', $purchaseRecord['unique'])->find();
|
||
$attrValue->stock -= $value['number'];
|
||
$attrValue->save();
|
||
}
|
||
if ($insert) {
|
||
Resale::getInstance()->insertAll($insert);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 委托贴
|
||
* @param $id
|
||
* @param array $data
|
||
* @return void
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function entrust($id, array $data, $entrustMerId, $entrustDay)
|
||
{
|
||
$insert = [];
|
||
foreach ($data as $value) {
|
||
if (isset($value['id'])) {
|
||
$entrustInfo = Entrust::find($value['id']);
|
||
unset($value['product_attr_unique']);
|
||
$entrustInfo->update($value);
|
||
continue;
|
||
}
|
||
$purchaseRecord = PurchaseRecord::where('unique', $value['product_attr_unique'])->find();
|
||
$totalNumber = PurchaseRecord::where('unique', $value['product_attr_unique'])->sum('number');
|
||
$totalSalesVolume = PurchaseRecord::where('unique', $value['product_attr_unique'])->sum('sales_volume');
|
||
if (empty($purchaseRecord) || ($totalNumber - $totalSalesVolume) <= 0) {
|
||
throw new ValidateException('进货记录不存在或已售罄');
|
||
}
|
||
if (($totalNumber - $totalSalesVolume) < $value['number']) {
|
||
throw new ValidateException('库存不足');
|
||
}
|
||
|
||
if ($value) {
|
||
$insert[] = [
|
||
'community_id' => $id,
|
||
'purchase_record_id' => $purchaseRecord['id'],
|
||
'product_id' => $purchaseRecord['product_id'],
|
||
'product_attr_unique' => $purchaseRecord['unique'],
|
||
'mer_id' => $purchaseRecord['mer_id'],
|
||
'entrust_mer_id' => $entrustMerId,
|
||
'entrust_day' => $entrustDay,
|
||
'number' => $value['number'],
|
||
'price' => $value['price'],
|
||
'update_time' => date('Y-m-d H:i:s'),
|
||
];
|
||
}
|
||
$purchaseRecord->product->stock -= $value['number'];
|
||
$purchaseRecord->product->save();
|
||
$attrValue = ProductAttrValue::where('product_id', $purchaseRecord['product_id'])->where('unique', $purchaseRecord['unique'])->find();
|
||
$attrValue->stock -= $value['number'];
|
||
$attrValue->save();
|
||
}
|
||
if ($insert) {
|
||
Entrust::getInstance()->insertAll($insert);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 转售加入购物车
|
||
* @param $uid
|
||
* @param $id
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function addCart($uid, $id)
|
||
{
|
||
$where = [
|
||
$this->dao->getPk() => $id,
|
||
'is_del' => 0
|
||
];
|
||
$community = $this->dao->getSearch($where)->with('resale')->find()->toArray();
|
||
if (empty($community) || $community['is_sale'] != 0) {
|
||
throw new ValidateException('转售数据不存在或已售出');
|
||
}
|
||
if (empty($community['resale'])) {
|
||
throw new ValidateException('转售数据不存在');
|
||
}
|
||
StoreCart::startTrans();
|
||
try {
|
||
/** @var StoreCartRepository $cartRepo */
|
||
$cartRepo = app()->make(StoreCartRepository::class);
|
||
$cartIds = [];
|
||
foreach ($community['resale'] as $item) {
|
||
$data = [
|
||
'uid' => $uid,
|
||
'mer_id' => $item['mer_id'],
|
||
'product_type' => 98,
|
||
'product_id' => $item['product_id'],
|
||
'product_attr_unique' => $item['product_attr_unique'],
|
||
'cart_num' => $item['number'],
|
||
'source' => StoreCartDao::SOURCE_COMMUNITY_RESALE,
|
||
'source_id' => $community['community_id'],
|
||
];
|
||
$cart = $cartRepo->create($data);
|
||
$cartIds[] = $cart['cart_id'];
|
||
}
|
||
if (empty($cartIds)) {
|
||
throw new ValidateException('加入购物车出错');
|
||
}
|
||
StoreCart::commit();
|
||
return $cartIds;
|
||
} catch (\Exception $exception) {
|
||
StoreCart::rollback();
|
||
throw new ValidateException('下单出错');
|
||
}
|
||
}
|
||
|
||
public function saleOrCancel($id, $status = 1)
|
||
{
|
||
$where = [
|
||
$this->dao->getPk() => $id,
|
||
'is_del' => 0
|
||
];
|
||
$community = $this->dao->getSearch($where)->with('resale')->find();
|
||
$community->is_sale = $status;
|
||
$community->save();
|
||
foreach ($community->resale as $item) {
|
||
$item->status = $status;
|
||
$item->save();
|
||
}
|
||
}
|
||
|
||
}
|
||
|