1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2023-02-15 00:10:11 +08:00

253 lines
6.7 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\Answer as AnswerModel;
use App\Models\Article as ArticleModel;
use App\Models\Comment as CommentModel;
use App\Models\CourseUser as CourseUserModel;
use App\Models\Notification as NotificationModel;
use App\Models\Question as QuestionModel;
use App\Models\User as UserModel;
use App\Models\UserBalance as UserBalanceModel;
use App\Models\UserContact as UserContactModel;
use Phalcon\Mvc\Model;
use Phalcon\Mvc\Model\Resultset;
use Phalcon\Mvc\Model\ResultsetInterface;
class User extends Repository
{
public function paginate($where = [], $sort = 'latest', $page = 1, $limit = 15)
{
$builder = $this->modelsManager->createBuilder();
$builder->from(UserModel::class);
$builder->where('1 = 1');
if (!empty($where['id'])) {
$builder->andWhere('id = :id:', ['id' => $where['id']]);
}
if (!empty($where['name'])) {
$builder->andWhere('name LIKE :name:', ['name' => "%{$where['name']}%"]);
}
if (!empty($where['edu_role'])) {
if (is_array($where['edu_role'])) {
$builder->inWhere('edu_role', $where['edu_role']);
} else {
$builder->andWhere('edu_role = :edu_role:', ['edu_role' => $where['edu_role']]);
}
}
if (!empty($where['admin_role'])) {
if (is_array($where['admin_role'])) {
$builder->inWhere('admin_role', $where['admin_role']);
} else {
$builder->andWhere('admin_role = :admin_role:', ['admin_role' => $where['admin_role']]);
}
}
if (isset($where['vip'])) {
$builder->andWhere('vip = :vip:', ['vip' => $where['vip']]);
}
if (isset($where['locked'])) {
$builder->andWhere('locked = :locked:', ['locked' => $where['locked']]);
}
if (isset($where['deleted'])) {
$builder->andWhere('deleted = :deleted:', ['deleted' => $where['deleted']]);
}
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 UserModel|Model|bool
*/
public function findById($id)
{
return UserModel::findFirst([
'conditions' => 'id = :id:',
'bind' => ['id' => $id],
]);
}
/**
* @param string $name
* @return UserModel|Model|bool
*/
public function findByName($name)
{
return UserModel::findFirst([
'conditions' => 'name = :name:',
'bind' => ['name' => $name],
]);
}
/**
* @param int $id
* @return UserModel|Model|bool
*/
public function findShallowUserById($id)
{
return UserModel::findFirst([
'conditions' => 'id = :id:',
'columns' => ['id', 'name', 'avatar', 'vip', 'title', 'about'],
'bind' => ['id' => $id],
]);
}
/**
* @param array $ids
* @param array|string $columns
* @return ResultsetInterface|Resultset|UserModel[]
*/
public function findByIds($ids, $columns = '*')
{
return UserModel::query()
->columns($columns)
->inWhere('id', $ids)
->execute();
}
/**
* @param array $ids
* @return ResultsetInterface|Resultset|UserModel[]
*/
public function findShallowUserByIds($ids)
{
return UserModel::query()
->columns(['id', 'name', 'avatar', 'vip', 'title', 'about'])
->inWhere('id', $ids)
->execute();
}
/**
* @param int $userId
* @return UserBalanceModel|Model
*/
public function findUserBalance($userId)
{
return UserBalanceModel::findFirst([
'conditions' => 'user_id = :user_id:',
'bind' => ['user_id' => $userId],
]);
}
/**
* @param int $userId
* @return UserContactModel|Model
*/
public function findUserContact($userId)
{
return UserContactModel::findFirst([
'conditions' => 'user_id = :user_id:',
'bind' => ['user_id' => $userId],
]);
}
/**
* @return ResultsetInterface|Resultset|UserModel[]
*/
public function findTeachers()
{
$eduRole = UserModel::EDU_ROLE_TEACHER;
return UserModel::query()
->where('edu_role = :edu_role:', ['edu_role' => $eduRole])
->andWhere('deleted = 0')
->execute();
}
public function countUsers()
{
return (int)UserModel::count([
'conditions' => 'deleted = 0',
]);
}
public function countVipUsers()
{
return (int)UserModel::count([
'conditions' => 'vip = 1 AND deleted = 0',
]);
}
public function countCourses($userId)
{
return (int)CourseUserModel::count([
'conditions' => 'user_id = :user_id: AND deleted = 0',
'bind' => ['user_id' => $userId],
]);
}
public function countArticles($userId)
{
return (int)ArticleModel::count([
'conditions' => 'owner_id = ?1 AND published = ?2',
'bind' => [1 => $userId, 2 => ArticleModel::PUBLISH_APPROVED],
]);
}
public function countQuestions($userId)
{
return (int)QuestionModel::count([
'conditions' => 'owner_id = ?1 AND published = ?2',
'bind' => [1 => $userId, 2 => QuestionModel::PUBLISH_APPROVED],
]);
}
public function countAnswers($userId)
{
return (int)AnswerModel::count([
'conditions' => 'owner_id = ?1 AND published = ?2',
'bind' => [1 => $userId, 2 => AnswerModel::PUBLISH_APPROVED],
]);
}
public function countComments($userId)
{
return (int)CommentModel::count([
'conditions' => 'owner_id = ?1 AND published = ?2',
'bind' => [1 => $userId, 2 => CommentModel::PUBLISH_APPROVED],
]);
}
public function countUnreadNotifications($userId)
{
return (int)NotificationModel::count([
'conditions' => 'receiver_id = :user_id: AND viewed = 0',
'bind' => ['user_id' => $userId],
]);
}
}