You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.3 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Controller\PunchCard\User;
use App\Controller\BaseController;
use App\JsonRpc\PunchCardSystemExternalServiceInterface;
use App\JsonRpc\UserExternalServiceInterface;
use Hyperf\Di\Annotation\Inject;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\GetMapping;
use Hyperf\HttpServer\Annotation\PostMapping;
#[Controller(prefix: "kq")]
class UserController extends BaseController
{
/**
* 用户中心对外RPC服务
*
* @var UserExternalServiceInterface
*/
#[Inject]
protected UserExternalServiceInterface $userExternalService;
/**
* 考勤系统设置对外RPC服务
*
* @var PunchCardSystemExternalServiceInterface
*/
#[Inject]
protected PunchCardSystemExternalServiceInterface $punchCardSystemExternalService;
/**
* 获取个人资料
*
* @return array
*/
#[GetMapping(path: "user/information")]
public function information() : array
{
$openid = $this->request->input('openid', '');
return $this->getServiceResult($this->userExternalService->getUserInfo($openid, [
'user_name',
'user_phone',
]));
}
/**
* 保存个人资料
*
* @return void
*/
#[PostMapping(path: "user/save_information")]
public function saveInformation() : void
{
$phone = $this->request->input('phone', '');
// TODO 逻辑完善
}
/**
* 保存问题反馈
*
* @return array
*/
#[PostMapping(path: "user/save_feedback")]
public function saveFeedback() : array
{
return $this->getServiceResult($this->punchCardSystemExternalService->saveFeedback($this->request));
}
/**
* 获取紧急联系人关系列表
*
* @return array
*/
#[GetMapping(path: "user/emergency_contact_kinship")]
public function getEmergencyContactKinshipList() : array
{
return $this->getServiceResult($this->userExternalService->getEmergencyContactKinshipList());
}
/**
* 保存紧急联系人
*
* @return array
*/
#[PostMapping(path: "user/add_emergency_contact")]
public function addEmergencyContact() : array
{
return $this->getServiceResult($this->userExternalService->addEmergencyContact($this->request));
}
}