1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 20:06:09 +08:00
2023-12-04 19:46:54 +08:00

132 lines
3.5 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
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 (!empty($where['id'])) {
$query->andWhere('id = :id:', ['id' => $where['id']]);
}
if (!empty($where['name'])) {
$query->andWhere('name LIKE :name:', ['name' => "%{$where['name']}%"]);
}
if (!empty($where['type'])) {
if (is_array($where['type'])) {
$query->inWhere('type', $where['type']);
} else {
$query->andWhere('type = :type:', ['type' => $where['type']]);
}
}
if (!empty($where['level'])) {
if (is_array($where['level'])) {
$query->inWhere('level', $where['level']);
} else {
$query->andWhere('level = :level:', ['level' => $where['level']]);
}
}
if (isset($where['parent_id'])) {
$query->andWhere('parent_id = :parent_id:', ['parent_id' => $where['parent_id']]);
}
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')
->andWhere('deleted = 0')
->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')
->andWhere('deleted = 0')
->orderBy('priority ASC')
->execute();
}
public function countChildCategories($categoryId)
{
return (int)CategoryModel::count([
'conditions' => 'parent_id = :parent_id: AND published = 1 AND deleted = 0',
'bind' => ['parent_id' => $categoryId],
]);
}
}