hospital-applets-api/app/Controller/DoctorAuthController.php
2023-02-17 17:10:16 +08:00

98 lines
2.8 KiB
PHP

<?php
namespace App\Controller;
use App\Request\DoctorAuthRequest;
use App\Request\PatientFamilyRequest;
use App\Services\DoctorAuthService;
use GuzzleHttp\Exception\GuzzleException;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use Psr\Http\Message\ResponseInterface;
/**
* 医生认证
*/
class DoctorAuthController extends AbstractController
{
/**
* 获取实名认证信息
* @return ResponseInterface
*/
public function getAuthReal(): ResponseInterface
{
$DoctorAuthService = new DoctorAuthService();
$data = $DoctorAuthService->getAuthReal();
return $this->response->json($data);
}
/**
* 新增实名认证
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface|GuzzleException
*/
public function addAuthReal(): ResponseInterface
{
$request = $this->container->get(DoctorAuthRequest::class);
$request->scene('addAuthReal')->validateResolved();
$DoctorAuthService = new DoctorAuthService();
$data = $DoctorAuthService->addAuthReal();
return $this->response->json($data);
}
/**
* 获取身份认证信息
* @return ResponseInterface
*/
public function getAuthIden(): ResponseInterface
{
$DoctorAuthService = new DoctorAuthService();
$data = $DoctorAuthService->getAuthIden();
return $this->response->json($data);
}
/**
* 新增身份认证信息
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface|GuzzleException
*/
public function addAuthIden(): ResponseInterface
{
$request = $this->container->get(DoctorAuthRequest::class);
$request->scene('addAuthIden')->validateResolved();
$DoctorAuthService = new DoctorAuthService();
$data = $DoctorAuthService->addAuthIden();
return $this->response->json($data);
}
/**
* 获取多点执业认证信息
* @return ResponseInterface
*/
public function getAuthMulti(): ResponseInterface
{
$DoctorAuthService = new DoctorAuthService();
$data = $DoctorAuthService->getAuthMulti();
return $this->response->json($data);
}
/**
* 新增多点执业认证信息
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface|GuzzleException
*/
public function addAuthMulti(): ResponseInterface
{
$request = $this->container->get(DoctorAuthRequest::class);
$request->scene('addAuthMulti')->validateResolved();
$DoctorAuthService = new DoctorAuthService();
$data = $DoctorAuthService->addAuthMulti();
return $this->response->json($data);
}
}