1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-20 19:07:03 +08:00
2023-12-13 12:53:35 +08:00

217 lines
6.1 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Http\Home\Controllers;
use App\Http\Home\Services\CourseQuery as CourseQueryService;
use App\Http\Home\Services\FullH5Url as FullH5UrlService;
use App\Services\Logic\Course\ChapterList as CourseChapterListService;
use App\Services\Logic\Course\ConsultList as CourseConsultListService;
use App\Services\Logic\Course\CourseFavorite as CourseFavoriteService;
use App\Services\Logic\Course\CourseInfo as CourseInfoService;
use App\Services\Logic\Course\CourseList as CourseListService;
use App\Services\Logic\Course\PackageList as CoursePackageListService;
use App\Services\Logic\Course\RelatedList as CourseRelatedListService;
use App\Services\Logic\Course\ResourceList as CourseResourceListService;
use App\Services\Logic\Course\ReviewList as CourseReviewListService;
use App\Services\Logic\Course\TopicList as CourseTopicListService;
use App\Services\Logic\Reward\OptionList as RewardOptionList;
use Phalcon\Mvc\View;
/**
* @RoutePrefix("/course")
*/
class CourseController extends Controller
{
/**
* @Get("/list", name="home.course.list")
*/
public function listAction()
{
$service = new FullH5UrlService();
if ($service->isMobileBrowser() && $service->h5Enabled()) {
$location = $service->getCourseListUrl();
return $this->response->redirect($location);
}
$service = new CourseQueryService();
$topCategories = $service->handleTopCategories();
$subCategories = $service->handleSubCategories();
$models = $service->handleModels();
$levels = $service->handleLevels();
$sorts = $service->handleSorts();
$params = $service->getParams();
$this->seo->prependTitle('课程');
$this->view->setVar('top_categories', $topCategories);
$this->view->setVar('sub_categories', $subCategories);
$this->view->setVar('models', $models);
$this->view->setVar('levels', $levels);
$this->view->setVar('sorts', $sorts);
$this->view->setVar('params', $params);
}
/**
* @Get("/pager", name="home.course.pager")
*/
public function pagerAction()
{
$service = new CourseListService();
$pager = $service->handle();
$pager->target = 'course-list';
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->pick('course/pager');
$this->view->setVar('pager', $pager);
}
/**
* @Get("/{id:[0-9]+}", name="home.course.show")
*/
public function showAction($id)
{
$service = new FullH5UrlService();
if ($service->isMobileBrowser() && $service->h5Enabled()) {
$location = $service->getCourseInfoUrl($id);
return $this->response->redirect($location);
}
$service = new CourseInfoService();
$course = $service->handle($id);
if ($course['deleted'] == 1) {
$this->notFound();
}
if ($course['published'] == 0) {
$this->notFound();
}
$service = new CourseChapterListService();
$chapters = $service->handle($id);
$service = new RewardOptionList();
$rewards = $service->handle();
$this->seo->prependTitle(['课程', $course['title']]);
$this->seo->setKeywords($course['keywords']);
$this->seo->setDescription($course['summary']);
$this->view->setVar('course', $course);
$this->view->setVar('chapters', $chapters);
$this->view->setVar('rewards', $rewards);
}
/**
* @Get("/{id:[0-9]+}/packages", name="home.course.packages")
*/
public function packagesAction($id)
{
$service = new CoursePackageListService();
$packages = $service->handle($id);
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->setVar('packages', $packages);
}
/**
* @Get("/{id:[0-9]+}/consults", name="home.course.consults")
*/
public function consultsAction($id)
{
$service = new CourseConsultListService();
$pager = $service->handle($id);
$pager->target = 'tab-consults';
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->setVar('pager', $pager);
}
/**
* @Get("/{id:[0-9]+}/reviews", name="home.course.reviews")
*/
public function reviewsAction($id)
{
$service = new CourseReviewListService();
$pager = $service->handle($id);
$pager->target = 'tab-reviews';
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->setVar('pager', $pager);
}
/**
* @Get("/{id:[0-9]+}/resources", name="home.course.resources")
*/
public function resourcesAction($id)
{
$service = new CourseResourceListService();
$resources = $service->handle($id);
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->setVar('resources', $resources);
}
/**
* @Get("/{id:[0-9]+}/related", name="home.course.related")
*/
public function relatedAction($id)
{
$service = new CourseRelatedListService();
$courses = $service->handle($id);
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->setVar('courses', $courses);
}
/**
* @Get("/{id:[0-9]+}/topics", name="home.course.topics")
*/
public function topicsAction($id)
{
$service = new CourseTopicListService();
$topics = $service->handle($id);
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
$this->view->setVar('topics', $topics);
}
/**
* @Post("/{id:[0-9]+}/favorite", name="home.course.favorite")
*/
public function favoriteAction($id)
{
$service = new CourseFavoriteService();
$data = $service->handle($id);
$msg = $data['action'] == 'do' ? '收藏成功' : '取消收藏成功';
return $this->jsonSuccess(['data' => $data, 'msg' => $msg]);
}
}