mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
82 lines
2.1 KiB
PHP
82 lines
2.1 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\Library\Paginator\Adapter\QueryBuilder as PagerQueryBuilder;
|
|
use App\Models\PointGiftRedeem as PointGiftRedeemModel;
|
|
use Phalcon\Mvc\Model;
|
|
|
|
class PointGiftRedeem extends Repository
|
|
{
|
|
|
|
public function paginate($where = [], $sort = 'latest', $page = 1, $limit = 15)
|
|
{
|
|
$builder = $this->modelsManager->createBuilder();
|
|
|
|
$builder->from(PointGiftRedeemModel::class);
|
|
|
|
$builder->where('1 = 1');
|
|
|
|
if (!empty($where['user_id'])) {
|
|
$builder->andWhere('user_id = :user_id:', ['user_id' => $where['user_id']]);
|
|
}
|
|
|
|
if (!empty($where['gift_id'])) {
|
|
$builder->andWhere('gift_id = :gift_id:', ['gift_id' => $where['gift_id']]);
|
|
}
|
|
|
|
if (!empty($where['gift_type'])) {
|
|
$builder->andWhere('gift_type = :gift_type:', ['gift_type' => $where['gift_type']]);
|
|
}
|
|
|
|
if (!empty($where['status'])) {
|
|
$builder->andWhere('status = :status:', ['status' => $where['status']]);
|
|
}
|
|
|
|
switch ($sort) {
|
|
case 'oldest':
|
|
$orderBy = 'id ASC';
|
|
break;
|
|
default:
|
|
$orderBy = 'id DESC';
|
|
break;
|
|
}
|
|
|
|
$builder->orderBy($orderBy);
|
|
|
|
$pager = new PagerQueryBuilder([
|
|
'builder' => $builder,
|
|
'page' => $page,
|
|
'limit' => $limit,
|
|
]);
|
|
|
|
return $pager->paginate();
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return PointGiftRedeemModel|Model|bool
|
|
*/
|
|
public function findById($id)
|
|
{
|
|
return PointGiftRedeemModel::findFirst([
|
|
'conditions' => 'id = :id:',
|
|
'bind' => ['id' => $id],
|
|
]);
|
|
}
|
|
|
|
public function countUserGiftRedeems($userId, $giftId)
|
|
{
|
|
return (int)PointGiftRedeemModel::count([
|
|
'conditions' => 'user_id = :user_id: AND gift_id = :gift_id:',
|
|
'bind' => ['user_id' => $userId, 'gift_id' => $giftId],
|
|
]);
|
|
}
|
|
|
|
}
|