mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 20:00:27 +08:00
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Repos;
|
|
|
|
use App\Models\CourseRating as CourseRatingModel;
|
|
use App\Models\Review as ReviewModel;
|
|
use Phalcon\Mvc\Model;
|
|
|
|
class CourseRating extends Repository
|
|
{
|
|
|
|
/**
|
|
* @param int $courseId
|
|
* @return CourseRatingModel|Model|bool
|
|
*/
|
|
public function findByCourseId($courseId)
|
|
{
|
|
return CourseRatingModel::findFirst([
|
|
'conditions' => 'course_id = :course_id:',
|
|
'bind' => ['course_id' => $courseId],
|
|
]);
|
|
}
|
|
|
|
public function averageRating($courseId)
|
|
{
|
|
return (float)ReviewModel::average([
|
|
'column' => 'rating',
|
|
'conditions' => 'course_id = :course_id: AND published = 1',
|
|
'bind' => ['course_id' => $courseId],
|
|
]);
|
|
}
|
|
|
|
public function averageRating1($courseId)
|
|
{
|
|
return (float)ReviewModel::average([
|
|
'column' => 'rating1',
|
|
'conditions' => 'course_id = :course_id: AND published = 1',
|
|
'bind' => ['course_id' => $courseId],
|
|
]);
|
|
}
|
|
|
|
public function averageRating2($courseId)
|
|
{
|
|
return (float)ReviewModel::average([
|
|
'column' => 'rating2',
|
|
'conditions' => 'course_id = :course_id: AND published = 1',
|
|
'bind' => ['course_id' => $courseId],
|
|
]);
|
|
}
|
|
|
|
public function averageRating3($courseId)
|
|
{
|
|
return (float)ReviewModel::average([
|
|
'column' => 'rating3',
|
|
'conditions' => 'course_id = :course_id: AND published = 1',
|
|
'bind' => ['course_id' => $courseId],
|
|
]);
|
|
}
|
|
|
|
}
|