Files
huangjingfen/pro_v3.5.1/app/services/article/ArticleServices.php
danaisuiyuan b3a1dabf87 feat(api): add sign required-article endpoint
GET /api/sign/required_article returns one random article from the
"签到广告" article category (status=1, is_del=0, hidden=0). Empty
category or no articles returns null so clients can fall through to
direct sign-in. Powers the pre-sign-in reading gate per
docs/project-shaoyaoju/prd-require.md §6.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-10 15:47:48 +08:00

229 lines
6.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\services\article;
use app\dao\article\ArticleDao;
use app\services\BaseServices;
use app\services\wechat\WechatNewsCategoryServices;
use app\services\user\UserRelationServices;
use crmeb\exceptions\AdminException;
use think\annotation\Inject;
/**
* 文章
* Class ArticleServices
* @package app\services\article
* @mixin ArticleDao
*/
class ArticleServices extends BaseServices
{
/**
* @var ArticleDao
*/
#[Inject]
protected ArticleDao $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 string $categoryTitle 分类标题(如"签到广告"
* @return array|null id/title/image_input/visit分类或文章不存在时返回 null
*/
public function getRandomByCategoryTitle(string $categoryTitle)
{
/** @var ArticleCategoryServices $categoryServices */
$categoryServices = app()->make(ArticleCategoryServices::class);
$cat = $categoryServices->getOne([
'title' => $categoryTitle,
'status' => 1,
'is_del' => 0,
'hidden' => 0,
], 'id');
if (!$cat) {
return null;
}
$where = ['cid' => (int)$cat['id'], 'status' => 1, 'hide' => 0];
$ids = $this->dao->getColumn($where, 'id');
if (!$ids) {
return null;
}
$pickId = (int)$ids[array_rand($ids)];
$article = $this->dao->getOne(['id' => $pickId], 'id,title,image_input,visit,add_time');
if (!$article) {
return null;
}
return is_array($article) ? $article : $article->toArray();
}
/**
* 获取数量
* @param array $where
* @return int
*/
public function count(array $where)
{
return $this->dao->count($where);
}
/**
* 获取一条数据
* @param int $id
* @return mixed
*/
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']);
}
/** @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);
}
}