You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.3 KiB
111 lines
3.3 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\store\model;
|
|
|
|
use app\common\model\Article as ArticleModel;
|
|
|
|
/**
|
|
* 文章模型
|
|
* Class Article
|
|
* @package app\store\model
|
|
*/
|
|
class Article extends ArticleModel
|
|
{
|
|
/**
|
|
* 获取列表
|
|
* @param array $param
|
|
* @return \think\Paginator
|
|
* @throws \think\db\exception\DbException
|
|
*/
|
|
public function getList(array $param = []): \think\Paginator
|
|
{
|
|
// 查询参数
|
|
$params = $this->setQueryDefaultValue($param, [
|
|
'title' => '', // 文章标题
|
|
'categoryId' => 0, // 文章分类id
|
|
'status' => -1, // 文章状态
|
|
]);
|
|
// 检索查询条件
|
|
$filter = [];
|
|
// 文章标题
|
|
!empty($params['title']) && $filter[] = ['title', 'like', "%{$params['title']}%"];
|
|
// 文章分类id
|
|
$params['categoryId'] > 0 && $filter[] = ['category_id', '=', $params['categoryId']];
|
|
// 文章状态
|
|
$params['status'] > -1 && $filter[] = ['status', '=', $params['status']];
|
|
// 查询列表数据
|
|
$data = $this->withoutField(['content'])
|
|
->where($filter)
|
|
->where('is_delete', '=', 0)
|
|
->order(['sort' => 'asc', 'create_time' => 'desc'])
|
|
->paginate(15);
|
|
// 获取文章的图片和分类
|
|
return self::preload($data, ['image', 'category']);
|
|
}
|
|
|
|
/**
|
|
* 新增记录
|
|
* @param array $data
|
|
* @return bool
|
|
*/
|
|
public function add(array $data): bool
|
|
{
|
|
if (empty($data['image_id'])) {
|
|
$this->error = '请上传封面图';
|
|
return false;
|
|
}
|
|
if (empty($data['content'])) {
|
|
$this->error = '请输入文章内容';
|
|
return false;
|
|
}
|
|
$data['store_id'] = self::$storeId;
|
|
return $this->save($data);
|
|
}
|
|
|
|
/**
|
|
* 更新记录
|
|
* @param array $data
|
|
* @return bool
|
|
*/
|
|
public function edit(array $data): bool
|
|
{
|
|
if (empty($data['image_id'])) {
|
|
$this->error = '请上传封面图';
|
|
return false;
|
|
}
|
|
if (empty($data['content'])) {
|
|
$this->error = '请输入文章内容';
|
|
return false;
|
|
}
|
|
return $this->save($data) !== false;
|
|
}
|
|
|
|
/**
|
|
* 软删除
|
|
* @return bool
|
|
*/
|
|
public function setDelete(): bool
|
|
{
|
|
return $this->save(['is_delete' => 1]);
|
|
}
|
|
|
|
/**
|
|
* 获取文章总数量
|
|
* @param array $where
|
|
* @return int
|
|
*/
|
|
public static function getArticleTotal(array $where = []): int
|
|
{
|
|
return (new static)->where($where)->where('is_delete', '=', 0)->count();
|
|
}
|
|
}
|
|
|