mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 02:53:04 +08:00
105 lines
2.5 KiB
PHP
105 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Http\Api\Controllers;
|
|
|
|
use App\Models\Consult as ConsultModel;
|
|
use App\Services\Logic\Consult\ConsultCreate as ConsultCreateService;
|
|
use App\Services\Logic\Consult\ConsultDelete as ConsultDeleteService;
|
|
use App\Services\Logic\Consult\ConsultInfo as ConsultInfoService;
|
|
use App\Services\Logic\Consult\ConsultLike as ConsultLikeService;
|
|
use App\Services\Logic\Consult\ConsultUpdate as ConsultUpdateService;
|
|
|
|
/**
|
|
* @RoutePrefix("/api/consult")
|
|
*/
|
|
class ConsultController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/{id:[0-9]+}/info", name="api.consult.info")
|
|
*/
|
|
public function infoAction($id)
|
|
{
|
|
$service = new ConsultInfoService();
|
|
|
|
$consult = $service->handle($id);
|
|
|
|
if ($consult['deleted'] == 1) {
|
|
$this->notFound();
|
|
}
|
|
|
|
$approved = $consult['published'] == ConsultModel::PUBLISH_APPROVED;
|
|
$owned = $consult['me']['owned'] == 1;
|
|
|
|
if (!$approved && !$owned) {
|
|
$this->notFound();
|
|
}
|
|
|
|
return $this->jsonSuccess(['consult' => $consult]);
|
|
}
|
|
|
|
/**
|
|
* @Post("/create", name="api.consult.create")
|
|
*/
|
|
public function createAction()
|
|
{
|
|
$service = new ConsultCreateService();
|
|
|
|
$consult = $service->handle();
|
|
|
|
$service = new ConsultInfoService();
|
|
|
|
$consult = $service->handle($consult->id);
|
|
|
|
return $this->jsonSuccess(['consult' => $consult]);
|
|
}
|
|
|
|
/**
|
|
* @Post("/{id:[0-9]+}/update", name="api.consult.update")
|
|
*/
|
|
public function updateAction($id)
|
|
{
|
|
$service = new ConsultUpdateService();
|
|
|
|
$consult = $service->handle($id);
|
|
|
|
$service = new ConsultInfoService();
|
|
|
|
$consult = $service->handle($consult->id);
|
|
|
|
return $this->jsonSuccess(['consult' => $consult]);
|
|
}
|
|
|
|
/**
|
|
* @Post("/{id:[0-9]+}/delete", name="api.consult.delete")
|
|
*/
|
|
public function deleteAction($id)
|
|
{
|
|
$service = new ConsultDeleteService();
|
|
|
|
$service->handle($id);
|
|
|
|
return $this->jsonSuccess();
|
|
}
|
|
|
|
/**
|
|
* @Post("/{id:[0-9]+}/like", name="api.consult.like")
|
|
*/
|
|
public function likeAction($id)
|
|
{
|
|
$service = new ConsultLikeService();
|
|
|
|
$data = $service->handle($id);
|
|
|
|
$msg = $data['action'] == 'do' ? '点赞成功' : '取消点赞成功';
|
|
|
|
return $this->jsonSuccess(['data' => $data, 'msg' => $msg]);
|
|
}
|
|
|
|
}
|