mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 11:58:41 +08:00
409 lines
10 KiB
PHP
409 lines
10 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Http\Admin\Services;
|
|
|
|
use App\Builders\AnswerList as AnswerListBuilder;
|
|
use App\Builders\ReportList as ReportListBuilder;
|
|
use App\Library\Paginator\Query as PagerQuery;
|
|
use App\Models\Answer as AnswerModel;
|
|
use App\Models\Question as QuestionModel;
|
|
use App\Models\Reason as ReasonModel;
|
|
use App\Models\Report as ReportModel;
|
|
use App\Models\User as UserModel;
|
|
use App\Repos\Answer as AnswerRepo;
|
|
use App\Repos\Question as QuestionRepo;
|
|
use App\Repos\Report as ReportRepo;
|
|
use App\Repos\User as UserRepo;
|
|
use App\Services\Logic\Answer\AnswerDataTrait;
|
|
use App\Services\Logic\Answer\AnswerInfo as AnswerInfoService;
|
|
use App\Services\Logic\Notice\System\AnswerApproved as AnswerApprovedNotice;
|
|
use App\Services\Logic\Notice\System\AnswerRejected as AnswerRejectedNotice;
|
|
use App\Services\Logic\Notice\System\QuestionAnswered as QuestionAnsweredNotice;
|
|
use App\Services\Logic\Point\History\AnswerPost as AnswerPostPointHistory;
|
|
use App\Validators\Answer as AnswerValidator;
|
|
|
|
class Answer extends Service
|
|
{
|
|
|
|
use AnswerDataTrait;
|
|
|
|
public function getPublishTypes()
|
|
{
|
|
return AnswerModel::publishTypes();
|
|
}
|
|
|
|
public function getReasons()
|
|
{
|
|
return ReasonModel::answerRejectOptions();
|
|
}
|
|
|
|
public function getAnswers()
|
|
{
|
|
$pagerQuery = new PagerQuery();
|
|
|
|
$params = $pagerQuery->getParams();
|
|
|
|
$params['deleted'] = $params['deleted'] ?? 0;
|
|
|
|
$sort = $pagerQuery->getSort();
|
|
$page = $pagerQuery->getPage();
|
|
$limit = $pagerQuery->getLimit();
|
|
|
|
$answerRepo = new AnswerRepo();
|
|
|
|
$pager = $answerRepo->paginate($params, $sort, $page, $limit);
|
|
|
|
return $this->handleAnswers($pager);
|
|
}
|
|
|
|
public function getAnswer($id)
|
|
{
|
|
return $this->findOrFail($id);
|
|
}
|
|
|
|
public function getAnswerInfo($id)
|
|
{
|
|
$service = new AnswerInfoService();
|
|
|
|
return $service->handle($id);
|
|
}
|
|
|
|
public function getReports($id)
|
|
{
|
|
$reportRepo = new ReportRepo();
|
|
|
|
$where = [
|
|
'item_id' => $id,
|
|
'item_type' => ReportModel::ITEM_ANSWER,
|
|
'reviewed' => 0,
|
|
];
|
|
|
|
$pager = $reportRepo->paginate($where);
|
|
|
|
$pager = $this->handleReports($pager);
|
|
|
|
return $pager->items;
|
|
}
|
|
|
|
public function createAnswer()
|
|
{
|
|
$post = $this->request->getPost();
|
|
|
|
$user = $this->getLoginUser();
|
|
|
|
$validator = new AnswerValidator();
|
|
|
|
$question = $validator->checkQuestion($post['question_id']);
|
|
|
|
$data = $this->handlePostData($post);
|
|
|
|
$answer = new AnswerModel();
|
|
|
|
$data['published'] = AnswerModel::PUBLISH_APPROVED;
|
|
$data['question_id'] = $question->id;
|
|
$data['owner_id'] = $user->id;
|
|
|
|
$answer->create($data);
|
|
|
|
$question->last_answer_id = $answer->id;
|
|
$question->last_replier_id = $answer->owner_id;
|
|
$question->last_reply_time = $answer->create_time;
|
|
|
|
$question->update();
|
|
|
|
$this->saveDynamicAttrs($answer);
|
|
$this->recountQuestionAnswers($question);
|
|
$this->recountUserAnswers($user);
|
|
|
|
if ($answer->owner_id != $question->owner_id) {
|
|
$this->handleAnswerPostPoint($answer);
|
|
$this->handleQuestionAnsweredNotice($answer);
|
|
}
|
|
|
|
$this->eventsManager->fire('Answer:afterCreate', $this, $answer);
|
|
|
|
return $answer;
|
|
}
|
|
|
|
public function updateAnswer($id)
|
|
{
|
|
$answer = $this->findOrFail($id);
|
|
|
|
$post = $this->request->getPost();
|
|
|
|
$validator = new AnswerValidator();
|
|
|
|
$data = [];
|
|
|
|
if (isset($post['content'])) {
|
|
$data['content'] = $validator->checkContent($post['content']);
|
|
}
|
|
|
|
if (isset($post['published'])) {
|
|
$data['published'] = $validator->checkPublishStatus($post['published']);
|
|
}
|
|
|
|
$answer->update($data);
|
|
|
|
$this->saveDynamicAttrs($answer);
|
|
|
|
$question = $this->findQuestion($answer->question_id);
|
|
|
|
$this->recountQuestionAnswers($question);
|
|
|
|
$owner = $this->findUser($answer->owner_id);
|
|
|
|
$this->recountUserAnswers($owner);
|
|
|
|
$this->eventsManager->fire('Answer:afterUpdate', $this, $answer);
|
|
|
|
return $answer;
|
|
}
|
|
|
|
public function deleteAnswer($id)
|
|
{
|
|
$answer = $this->findOrFail($id);
|
|
|
|
$answer->deleted = 1;
|
|
|
|
$answer->update();
|
|
|
|
$question = $this->findQuestion($answer->question_id);
|
|
|
|
$this->recountQuestionAnswers($question);
|
|
|
|
$owner = $this->findUser($answer->owner_id);
|
|
|
|
$this->recountUserAnswers($owner);
|
|
|
|
$this->eventsManager->fire('Answer:afterDelete', $this, $answer);
|
|
|
|
return $answer;
|
|
}
|
|
|
|
public function restoreAnswer($id)
|
|
{
|
|
$answer = $this->findOrFail($id);
|
|
|
|
$answer->deleted = 0;
|
|
|
|
$answer->update();
|
|
|
|
$question = $this->findQuestion($answer->question_id);
|
|
|
|
$this->recountQuestionAnswers($question);
|
|
|
|
$owner = $this->findUser($answer->owner_id);
|
|
|
|
$this->recountUserAnswers($owner);
|
|
|
|
$this->eventsManager->fire('Answer:afterRestore', $this, $answer);
|
|
|
|
return $answer;
|
|
}
|
|
|
|
public function moderate($id)
|
|
{
|
|
$type = $this->request->getPost('type', ['trim', 'string']);
|
|
$reason = $this->request->getPost('reason', ['trim', 'string']);
|
|
|
|
$answer = $this->findOrFail($id);
|
|
|
|
$validator = new AnswerValidator();
|
|
|
|
if ($type == 'approve') {
|
|
$answer->published = AnswerModel::PUBLISH_APPROVED;
|
|
} elseif ($type == 'reject') {
|
|
$validator->checkRejectReason($reason);
|
|
$answer->published = AnswerModel::PUBLISH_REJECTED;
|
|
}
|
|
|
|
$answer->update();
|
|
|
|
$question = $this->findQuestion($answer->question_id);
|
|
|
|
$this->recountQuestionAnswers($question);
|
|
|
|
$owner = $this->findUser($answer->owner_id);
|
|
|
|
$this->recountUserAnswers($owner);
|
|
|
|
$sender = $this->getLoginUser();
|
|
|
|
if ($type == 'approve') {
|
|
|
|
if ($answer->owner_id != $question->owner_id) {
|
|
$this->handleAnswerPostPoint($answer);
|
|
$this->handleQuestionAnsweredNotice($answer);
|
|
}
|
|
|
|
$this->handleAnswerApprovedNotice($answer, $sender);
|
|
|
|
$this->eventsManager->fire('Answer:afterApprove', $this, $answer);
|
|
|
|
} elseif ($type == 'reject') {
|
|
|
|
$options = ReasonModel::answerRejectOptions();
|
|
|
|
if (array_key_exists($reason, $options)) {
|
|
$reason = $options[$reason];
|
|
}
|
|
|
|
$this->handleAnswerRejectedNotice($answer, $sender, $reason);
|
|
|
|
$this->eventsManager->fire('Answer:afterReject', $this, $answer);
|
|
}
|
|
|
|
return $answer;
|
|
}
|
|
|
|
public function report($id)
|
|
{
|
|
$accepted = $this->request->getPost('accepted', 'int', 0);
|
|
$deleted = $this->request->getPost('deleted', 'int', 0);
|
|
|
|
$answer = $this->findOrFail($id);
|
|
|
|
$reportRepo = new ReportRepo();
|
|
|
|
$reports = $reportRepo->findItemPendingReports($answer->id, ReportModel::ITEM_ANSWER);
|
|
|
|
if ($reports->count() > 0) {
|
|
foreach ($reports as $report) {
|
|
$report->accepted = $accepted;
|
|
$report->reviewed = 1;
|
|
$report->update();
|
|
}
|
|
}
|
|
|
|
$answer->report_count = 0;
|
|
|
|
if ($deleted == 1) {
|
|
$answer->deleted = 1;
|
|
}
|
|
|
|
$answer->update();
|
|
|
|
$question = $this->findQuestion($answer->question_id);
|
|
|
|
$this->recountQuestionAnswers($question);
|
|
|
|
$user = $this->findUser($answer->owner_id);
|
|
|
|
$this->recountUserAnswers($user);
|
|
}
|
|
|
|
protected function findOrFail($id)
|
|
{
|
|
$validator = new AnswerValidator();
|
|
|
|
return $validator->checkAnswer($id);
|
|
}
|
|
|
|
protected function findQuestion($id)
|
|
{
|
|
$questionRepo = new QuestionRepo();
|
|
|
|
return $questionRepo->findById($id);
|
|
}
|
|
|
|
protected function findUser($id)
|
|
{
|
|
$userRepo = new UserRepo();
|
|
|
|
return $userRepo->findById($id);
|
|
}
|
|
|
|
protected function handleAnswers($pager)
|
|
{
|
|
if ($pager->total_items > 0) {
|
|
|
|
$builder = new AnswerListBuilder();
|
|
|
|
$items = $pager->items->toArray();
|
|
|
|
$pipeA = $builder->handleQuestions($items);
|
|
$pipeB = $builder->handleUsers($pipeA);
|
|
$pipeC = $builder->objects($pipeB);
|
|
|
|
$pager->items = $pipeC;
|
|
}
|
|
|
|
return $pager;
|
|
}
|
|
|
|
protected function handleReports($pager)
|
|
{
|
|
if ($pager->total_items > 0) {
|
|
|
|
$builder = new ReportListBuilder();
|
|
|
|
$items = $pager->items->toArray();
|
|
|
|
$pipeA = $builder->handleUsers($items);
|
|
$pipeB = $builder->objects($pipeA);
|
|
|
|
$pager->items = $pipeB;
|
|
}
|
|
|
|
return $pager;
|
|
}
|
|
|
|
protected function recountQuestionAnswers(QuestionModel $question)
|
|
{
|
|
$questionRepo = new QuestionRepo();
|
|
|
|
$answerCount = $questionRepo->countAnswers($question->id);
|
|
|
|
$question->answer_count = $answerCount;
|
|
|
|
$question->update();
|
|
}
|
|
|
|
protected function recountUserAnswers(UserModel $user)
|
|
{
|
|
$userRepo = new UserRepo();
|
|
|
|
$answerCount = $userRepo->countAnswers($user->id);
|
|
|
|
$user->answer_count = $answerCount;
|
|
|
|
$user->update();
|
|
}
|
|
|
|
protected function handleQuestionAnsweredNotice(AnswerModel $answer)
|
|
{
|
|
$notice = new QuestionAnsweredNotice();
|
|
|
|
$notice->handle($answer);
|
|
}
|
|
|
|
protected function handleAnswerApprovedNotice(AnswerModel $answer, UserModel $sender)
|
|
{
|
|
$notice = new AnswerApprovedNotice();
|
|
|
|
$notice->handle($answer, $sender);
|
|
}
|
|
|
|
protected function handleAnswerRejectedNotice(AnswerModel $answer, UserModel $sender, $reason)
|
|
{
|
|
$notice = new AnswerRejectedNotice();
|
|
|
|
$notice->handle($answer, $sender, $reason);
|
|
|
|
}
|
|
|
|
protected function handleAnswerPostPoint(AnswerModel $answer)
|
|
{
|
|
$service = new AnswerPostPointHistory();
|
|
|
|
$service->handle($answer);
|
|
}
|
|
|
|
}
|