213 lines
6.2 KiB
PHP
213 lines
6.2 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>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\services\article;
|
||
|
||
use app\dao\article\ArticleDao;
|
||
use app\services\BaseServices;
|
||
use app\services\user\UserRelationServices;
|
||
use app\services\wechat\WechatNewsCategoryServices;
|
||
use crmeb\exceptions\AdminException;
|
||
|
||
/**
|
||
* 文章
|
||
* Class ArticleServices
|
||
* @package app\services\article
|
||
* @mixin ArticleDao
|
||
*/
|
||
class ArticleServices extends BaseServices
|
||
{
|
||
/**
|
||
* ArticleServices constructor.
|
||
* @param ArticleDao $dao
|
||
*/
|
||
public function __construct(ArticleDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
/**
|
||
* 获取列表
|
||
* @param array $where
|
||
* @return array
|
||
*/
|
||
public function getList(array $where, int $page = 0, int $limit = 0)
|
||
{
|
||
if (!$limit) {
|
||
[$page, $limit] = $this->getPageValue();
|
||
}
|
||
/** @var WechatNewsCategoryServices $services */
|
||
$services = app()->make(WechatNewsCategoryServices::class);
|
||
$where['ids'] = $services->getNewIds();
|
||
$list = $this->dao->getList($where, $page, $limit);
|
||
foreach ($list as &$item) {
|
||
$item['store_name'] = $item['storeInfo']['store_name'] ?? '';
|
||
}
|
||
$count = $this->dao->count($where);
|
||
return compact('list', 'count');
|
||
}
|
||
|
||
/**
|
||
* 新增编辑文章
|
||
* @param array $data
|
||
*/
|
||
public function save(array $data)
|
||
{
|
||
/** @var ArticleContentServices $articleContentService */
|
||
$articleContentService = app()->make(ArticleContentServices::class);
|
||
$content['content'] = $data['content'];
|
||
$id = $data['id'];
|
||
unset($data['content'], $data['id']);
|
||
$info = $this->transaction(function () use ($id, $data, $articleContentService, $content) {
|
||
if ($id) {
|
||
$info = $this->dao->update($id, $data);
|
||
$content['nid'] = $id;
|
||
$res = $info && $articleContentService->update($id, $content, 'nid');
|
||
} else {
|
||
unset($data['id']);
|
||
$data['add_time'] = time();
|
||
$info = $this->dao->save($data);
|
||
$content['nid'] = $info->id;
|
||
$res = $info && $articleContentService->save($content);
|
||
}
|
||
if (!$res) {
|
||
throw new AdminException('保存失败');
|
||
} else {
|
||
return $info;
|
||
}
|
||
});
|
||
return $info;
|
||
}
|
||
|
||
/**
|
||
* 获取商品详情
|
||
* @param $id
|
||
* @return array
|
||
*/
|
||
public function read(int $id)
|
||
{
|
||
$info = $this->dao->read($id);
|
||
$info['cid'] = (int)$info['cid'];
|
||
return compact('info');
|
||
}
|
||
|
||
/**
|
||
* 删除商品
|
||
* @param int $id
|
||
*/
|
||
public function del(int $id)
|
||
{
|
||
/** @var ArticleContentServices $articleContentService */
|
||
$articleContentService = app()->make(ArticleContentServices::class);
|
||
$this->transaction(function () use ($id, $articleContentService) {
|
||
$res = $this->dao->delete($id);
|
||
$res = $res && $articleContentService->del($id);
|
||
if (!$res) {
|
||
throw new AdminException('删除失败');
|
||
}
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 文章关联商品
|
||
* @param int $id
|
||
* @param int $product_id
|
||
* @return mixed
|
||
*/
|
||
public function bindProduct(int $id, int $product_id = 0)
|
||
{
|
||
return $this->dao->update($id, ['product_id' => $product_id]);
|
||
}
|
||
|
||
/**
|
||
* 获取数量
|
||
* @param array $where
|
||
* @return int
|
||
*/
|
||
public function count(array $where)
|
||
{
|
||
return $this->dao->count($where);
|
||
}
|
||
|
||
/**
|
||
* 获取一条数据
|
||
* @param int $uid
|
||
* @param int $id
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function getInfo(int $uid, int $id)
|
||
{
|
||
$info = $this->dao->read($id);
|
||
|
||
if (!$info) {
|
||
throw new AdminException('文章不存在或已删除');
|
||
}
|
||
$info->visit = ($info->visit ?? 0) + 1;
|
||
if (!$info->save())
|
||
throw new AdminException('请稍后查看');
|
||
if ($info) {
|
||
$info = $info->toArray();
|
||
$info['visit'] = (int)$info['visit'];
|
||
$info['add_time'] = date('Y-m-d', $info['add_time']);
|
||
}
|
||
$info['is_like'] = false;
|
||
if ($uid) {
|
||
/** @var UserRelationServices $relationServices */
|
||
$relationServices = app()->make(UserRelationServices::class);
|
||
$info['is_like'] = $relationServices->isProductRelation(['uid' => $uid, 'relation_id' => $id, 'type' => 'like', 'category' => 'article']);
|
||
}
|
||
return $info;
|
||
}
|
||
|
||
/**
|
||
* 文章点赞 添加、取消
|
||
* @param int $id
|
||
* @param array $where
|
||
* @param int $uid
|
||
* @return bool
|
||
*/
|
||
public function userArticleLikes(int $id, array $where, int $uid)
|
||
{
|
||
$info = $this->dao->read($id);
|
||
if (!$info) {
|
||
throw new AdminException('文章不存在或已删除');
|
||
}
|
||
$info->likes = $where['status'] > 0 ? ($info->likes ?? 0) + 1 : ($info->likes > 1 ? $info->likes - 1 : 0);
|
||
if (!$info->save()) throw new AdminException('请稍后查看');
|
||
$ids = [$id];
|
||
/** @var UserRelationServices $relationServices */
|
||
$relationServices = app()->make(UserRelationServices::class);
|
||
return $relationServices->productRelation($uid, $ids, 'like', 'article', $where['status'] <= 0);
|
||
}
|
||
|
||
/**
|
||
* 获取文章列表
|
||
* @param $new_id
|
||
* @return int
|
||
*/
|
||
public function articleList($new_id)
|
||
{
|
||
return $this->dao->articleLists($new_id);
|
||
}
|
||
|
||
/**图文详情
|
||
* @param $new_id
|
||
* @return mixed
|
||
*/
|
||
public function articlesList($new_id)
|
||
{
|
||
return $this->dao->articleContentList($new_id);
|
||
}
|
||
}
|