1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 04:21:27 +08:00
2021-01-07 15:10:42 +08:00

109 lines
2.8 KiB
PHP

<?php
namespace App\Repos;
use App\Models\Category as CategoryModel;
use Phalcon\Mvc\Model;
use Phalcon\Mvc\Model\Resultset;
use Phalcon\Mvc\Model\ResultsetInterface;
class Category extends Repository
{
/**
* @param array $where
* @return ResultsetInterface|Resultset|CategoryModel[]
*/
public function findAll($where = [])
{
$query = CategoryModel::query();
$query->where('1 = 1');
if (isset($where['parent_id'])) {
$query->andWhere('parent_id = :parent_id:', ['parent_id' => $where['parent_id']]);
}
if (isset($where['type'])) {
$query->andWhere('type = :type:', ['type' => $where['type']]);
}
if (isset($where['level'])) {
$query->andWhere('level = :level:', ['level' => $where['level']]);
}
if (isset($where['published'])) {
$query->andWhere('published = :published:', ['published' => $where['published']]);
}
if (isset($where['deleted'])) {
$query->andWhere('deleted = :deleted:', ['deleted' => $where['deleted']]);
}
$query->orderBy('priority ASC');
return $query->execute();
}
/**
* @param int $id
* @return CategoryModel|Model|bool
*/
public function findById($id)
{
return CategoryModel::findFirst([
'conditions' => 'id = :id:',
'bind' => ['id' => $id],
]);
}
/**
* @param array $ids
* @param array|string $columns
* @return ResultsetInterface|Resultset|CategoryModel[]
*/
public function findByIds($ids, $columns = '*')
{
return CategoryModel::query()
->columns($columns)
->inWhere('id', $ids)
->execute();
}
/**
* @param string $type
* @return ResultsetInterface|Resultset|CategoryModel[]
*/
public function findTopCategories($type)
{
return CategoryModel::query()
->where('type = :type:', ['type' => $type])
->andWhere('parent_id = 0')
->andWhere('published = 1')
->orderBy('priority ASC')
->execute();
}
/**
* @param int $categoryId
* @return ResultsetInterface|Resultset|CategoryModel[]
*/
public function findChildCategories($categoryId)
{
return CategoryModel::query()
->where('parent_id = :parent_id:', ['parent_id' => $categoryId])
->andWhere('published = 1')
->orderBy('priority ASC')
->execute();
}
public function countChildCategories($categoryId)
{
return (int)CategoryModel::count([
'conditions' => 'parent_id = :parent_id: AND published = 1',
'bind' => ['parent_id' => $categoryId],
]);
}
}