1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-25 12:09:09 +08:00
koogua 0336a54911 1.源文件增加版权信息
2.群组状态和课程协同
2021-06-13 15:49:47 +08:00

71 lines
1.8 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Services\Utils;
use App\Models\Article as ArticleModel;
use App\Services\Service as AppService;
class ArticleScore extends AppService
{
public function handle(ArticleModel $article)
{
return $this->calculateScore($article);
}
protected function calculateScore(ArticleModel $article)
{
$weight = [
'factor1' => 0.2,
'factor2' => 0.1,
'factor3' => 0.15,
'factor4' => 0.2,
'factor5' => 0.15,
'factor6' => 0.2,
];
$items = [
'factor1' => 0.0,
'factor2' => 0.0,
'factor3' => 0.0,
'factor4' => 0.0,
'factor5' => 0.0,
'factor6' => 0.0,
];
if ($article->featured == 1) {
$items['factor1'] = 7 * $weight['factor1'];
}
if ($article->source_type == ArticleModel::SOURCE_ORIGIN) {
$items['factor2'] = 5 * $weight['factor2'];
}
if ($article->view_count > 0) {
$items['factor3'] = log($article->view_count) * $weight['factor3'];
}
if ($article->favorite_count > 0) {
$items['factor4'] = log($article->favorite_count) * $weight['factor4'];
}
if ($article->like_count > 0) {
$items['factor5'] = log($article->like_count) * $weight['factor5'];
}
if ($article->comment_count > 0 ) {
$items['factor6'] = log($article->comment_count) * $weight['factor6'];
}
$score = array_sum($items) / log(time() - $article->create_time);
return round($score, 4);
}
}