checkId($id); $topicCache = new TopicCache(); $topic = $topicCache->get($id); if (!$topic) { throw new BadRequestException('topic.not_found'); } return $topic; } public function checkTopic($id) { $this->checkId($id); $topicRepo = new TopicRepo(); $topic = $topicRepo->findById($id); if (!$topic) { throw new BadRequestException('topic.not_found'); } return $topic; } public function checkId($id) { $id = intval($id); $maxIdCache = new MaxTopicIdCache(); $maxId = $maxIdCache->get(); if ($id < 1 || $id > $maxId) { throw new BadRequestException('topic.not_found'); } } public function checkTitle($title) { $value = $this->filter->sanitize($title, ['trim', 'string']); $length = kg_strlen($value); if ($length < 2) { throw new BadRequestException('topic.title_too_short'); } if ($length > 50) { throw new BadRequestException('topic.title_too_long'); } return $value; } public function checkSummary($summary) { $value = $this->filter->sanitize($summary, ['trim', 'string']); $length = kg_strlen($value); if ($length > 255) { throw new BadRequestException('topic.summary_too_long'); } return $value; } public function checkPublishStatus($status) { if (!in_array($status, [0, 1])) { throw new BadRequestException('topic.invalid_publish_status'); } return $status; } }