handle($id); return $this->jsonPaginate($pager); } /** * @Get("/{id:[0-9]+}/consults", name="api.chapter.consults") */ public function consultsAction($id) { $service = new ConsultListService(); $pager = $service->handle($id); return $this->jsonPaginate($pager); } /** * @Get("/{id:[0-9]+}/info", name="api.chapter.info") */ public function infoAction($id) { $service = new ChapterInfoService(); $chapter = $service->handle($id); if ($chapter['deleted'] == 1) { $this->notFound(); } if ($chapter['published'] == 0) { $this->notFound(); } if ($chapter['me']['logged'] == 0) { $this->unauthorized(); } if ($chapter['me']['owned'] == 0) { $this->forbidden(); } return $this->jsonSuccess(['chapter' => $chapter]); } /** * @Post("/{id:[0-9]+}/like", name="api.chapter.like") */ public function likeAction($id) { $service = new ChapterLikeService(); $data = $service->handle($id); $msg = $data['action'] == 'do' ? '点赞成功' : '取消点赞成功'; return $this->jsonSuccess(['data' => $data, 'msg' => $msg]); } /** * @Post("/{id:[0-9]+}/learning", name="api.chapter.learning") */ public function learningAction($id) { $service = new LearningService(); $service->handle($id); return $this->jsonSuccess(); } }