1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-21 11:18:10 +08:00
2020-06-11 19:12:11 +08:00

79 lines
1.9 KiB
PHP

<?php
namespace App\Repos;
use App\Library\Paginator\Adapter\QueryBuilder as PagerQueryBuilder;
use App\Models\Learning as LearningModel;
use Phalcon\Mvc\Model;
class Learning extends Repository
{
public function paginate($where = [], $sort = 'latest', $page = 1, $limit = 15)
{
$builder = $this->modelsManager->createBuilder();
$builder->from(LearningModel::class);
$builder->where('1 = 1');
if (!empty($where['plan_id'])) {
$builder->andWhere('plan_id = :plan_id:', ['plan_id' => $where['plan_id']]);
}
if (!empty($where['course_id'])) {
$builder->andWhere('course_id = :course_id:', ['course_id' => $where['course_id']]);
}
if (!empty($where['chapter_id'])) {
$builder->andWhere('chapter_id = :chapter_id:', ['chapter_id' => $where['chapter_id']]);
}
if (!empty($where['user_id'])) {
$builder->andWhere('user_id = :user_id:', ['user_id' => $where['user_id']]);
}
if (isset($where['deleted'])) {
$builder->andWhere('deleted = :deleted:', ['deleted' => $where['deleted']]);
}
switch ($sort) {
default:
$orderBy = 'id DESC';
break;
}
$builder->orderBy($orderBy);
$pager = new PagerQueryBuilder([
'builder' => $builder,
'page' => $page,
'limit' => $limit,
]);
return $pager->paginate();
}
/**
* @param int $id
* @return LearningModel|Model|bool
*/
public function findById($id)
{
return LearningModel::findFirst($id);
}
/**
* @param string $requestId
* @return LearningModel|Model|bool
*/
public function findByRequestId($requestId)
{
return LearningModel::findFirst([
'conditions' => 'request_id = :request_id:',
'bind' => ['request_id' => $requestId],
]);
}
}