mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 19:07:03 +08:00
189 lines
5.2 KiB
PHP
189 lines
5.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Home\Controllers;
|
|
|
|
use App\Http\Home\Services\CourseQuery as CourseQueryService;
|
|
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\RecommendedList as CourseRecommendedListService;
|
|
use App\Services\Logic\Course\RelatedList as CourseRelatedListService;
|
|
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 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 CourseInfoService();
|
|
|
|
$course = $service->handle($id);
|
|
|
|
$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]+}/recommended", name="home.course.recommended")
|
|
*/
|
|
public function recommendedAction($id)
|
|
{
|
|
$service = new CourseRecommendedListService();
|
|
|
|
$courses = $service->handle($id);
|
|
|
|
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
|
|
$this->view->setVar('courses', $courses);
|
|
}
|
|
|
|
/**
|
|
* @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]);
|
|
}
|
|
|
|
}
|