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

50 lines
1.0 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Console\Tasks;
use App\Repos\Article as ArticleRepo;
use App\Services\Sync\ArticleScore as ArticleScoreSync;
use App\Services\Utils\ArticleScore as ArticleScoreService;
class SyncArticleScoreTask extends Task
{
public function mainAction()
{
$redis = $this->getRedis();
$key = $this->getSyncKey();
$articleIds = $redis->sRandMember($key, 1000);
if (!$articleIds) return;
$articleRepo = new ArticleRepo();
$articles = $articleRepo->findByIds($articleIds);
if ($articles->count() == 0) return;
$service = new ArticleScoreService();
foreach ($articles as $article) {
$service->handle($article);
}
$redis->sRem($key, ...$articleIds);
}
protected function getSyncKey()
{
$sync = new ArticleScoreSync();
return $sync->getSyncKey();
}
}