1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 04:01:31 +08:00
xiaochong0302 3c906cb6c7 1.修复验证码
2.增加第三方登录
2020-04-17 18:53:04 +08:00

230 lines
6.2 KiB
PHP

<?php
namespace App\Services\Frontend\Chapter;
use App\Models\Chapter as ChapterModel;
use App\Models\ChapterUser as ChapterUserModel;
use App\Models\ChapterVote as ChapterVoteModel;
use App\Models\Course as CourseModel;
use App\Models\CourseUser as CourseUserModel;
use App\Models\User as UserModel;
use App\Repos\Chapter as ChapterRepo;
use App\Repos\ChapterVote as ChapterVoteRepo;
use App\Services\ChapterVod as ChapterVodService;
use App\Services\Frontend\ChapterTrait;
use App\Services\Frontend\CourseTrait;
use App\Services\Frontend\Service;
use App\Services\Live as LiveService;
use WhichBrowser\Parser as BrowserParser;
class ChapterInfo extends Service
{
/**
* @var CourseModel
*/
protected $course;
/**
* @var UserModel
*/
protected $user;
use CourseTrait, ChapterTrait;
public function getChapter($id)
{
$chapter = $this->checkChapter($id);
$course = $this->checkCourse($chapter->course_id);
$this->course = $course;
$user = $this->getCurrentUser();
$this->user = $user;
$this->setCourseUser($course, $user);
$this->setChapterUser($chapter, $user);
$this->handleCourseUser($course, $user);
$this->handleChapterUser($chapter, $user);
return $this->handleChapter($chapter, $user);
}
protected function handleChapter(ChapterModel $chapter, UserModel $user)
{
$result = $this->formatChapter($chapter);
$me = [
'agreed' => 0,
'opposed' => 0,
];
$me['owned'] = $this->ownedChapter;
if ($user->id > 0) {
$chapterVoteRepo = new ChapterVoteRepo();
$chapterVote = $chapterVoteRepo->findChapterVote($chapter->id, $user->id);
if ($chapterVote) {
$me['agreed'] = $chapterVote->type == ChapterVoteModel::TYPE_AGREE ? 1 : 0;
$me['opposed'] = $chapterVote->type == ChapterVoteModel::TYPE_OPPOSE ? 1 : 0;
}
}
$result['me'] = $me;
return $result;
}
protected function formatChapter(ChapterModel $chapter)
{
$item = [];
switch ($this->course->model) {
case CourseModel::MODEL_VOD:
$item = $this->formatChapterVod($chapter);
break;
case CourseModel::MODEL_LIVE:
$item = $this->formatChapterLive($chapter);
break;
case CourseModel::MODEL_READ:
$item = $this->formatChapterRead($chapter);
break;
}
return $item;
}
protected function formatChapterVod(ChapterModel $chapter)
{
$chapterVodService = new ChapterVodService();
$playUrls = $chapterVodService->getPlayUrls($chapter->id);
$course = $this->formatCourse($this->course);
return [
'id' => $chapter->id,
'title' => $chapter->title,
'summary' => $chapter->summary,
'course' => $course,
'play_urls' => $playUrls,
'user_count' => $chapter->user_count,
'agree_count' => $chapter->agree_count,
'oppose_count' => $chapter->oppose_count,
'comment_count' => $chapter->comment_count,
];
}
protected function formatChapterLive(ChapterModel $chapter)
{
$headers = getallheaders();
$browserParser = new BrowserParser($headers);
$liveService = new LiveService();
$stream = "chapter-{$chapter->id}";
$format = $browserParser->isType('desktop') ? 'flv' : 'hls';
$playUrls = $liveService->getPullUrls($stream, $format);
$course = $this->formatCourse($this->course);
$chapterRepo = new ChapterRepo();
$live = $chapterRepo->findChapterLive($chapter->id);
return [
'id' => $chapter->id,
'title' => $chapter->title,
'summary' => $chapter->summary,
'course' => $course,
'play_urls' => $playUrls,
'start_time' => $live->start_time,
'end_time' => $live->end_time,
'user_count' => $chapter->user_count,
'agree_count' => $chapter->agree_count,
'oppose_count' => $chapter->oppose_count,
'comment_count' => $chapter->comment_count,
];
}
protected function formatChapterRead(ChapterModel $chapter)
{
$chapterRepo = new ChapterRepo();
$read = $chapterRepo->findChapterRead($chapter->id);
$course = $this->formatCourse($this->course);
return [
'id' => $chapter->id,
'title' => $chapter->title,
'summary' => $chapter->summary,
'course' => $course,
'content' => $read->content,
'user_count' => $chapter->user_count,
'agree_count' => $chapter->agree_count,
'oppose_count' => $chapter->oppose_count,
'comment_count' => $chapter->comment_count,
];
}
protected function formatCourse(CourseModel $course)
{
return [
'id' => $course->id,
'title' => $course->title,
];
}
protected function handleCourseUser(CourseModel $course, UserModel $user)
{
if ($user->id == 0) return;
if ($this->joinedCourse) return;
if (!$this->ownedCourse) return;
$courseUser = new CourseUserModel();
$courseUser->course_id = $course->id;
$courseUser->user_id = $user->id;
$courseUser->source_type = CourseUserModel::SOURCE_FREE;
$courseUser->role_type = CourseUserModel::ROLE_STUDENT;
$courseUser->expiry_time = strtotime('+3 years');
$courseUser->create();
$course->user_count += 1;
$course->update();
}
protected function handleChapterUser(ChapterModel $chapter, UserModel $user)
{
if ($user->id == 0) return;
if ($this->joinedChapter) return;
if (!$this->ownedChapter) return;
$chapterUser = new ChapterUserModel();
$chapterUser->course_id = $chapter->course_id;
$chapterUser->chapter_id = $chapter->id;
$chapterUser->user_id = $user->id;
$chapterUser->create();
$chapter->user_count += 1;
$chapter->update();
}
}