feat: 在 TaskController 中增加异常处理和日志记录,优化验证码发送和状态查询功能
This commit is contained in:
parent
e15df4e3c7
commit
85a9d33b16
|
@ -23,7 +23,7 @@ use App\dao\UserRewardDao;
|
|||
use App\Utils\API\Facebook;
|
||||
use Tinywan\Jwt\JwtToken;
|
||||
use GuzzleHttp\Client;
|
||||
|
||||
use support\Log;
|
||||
|
||||
|
||||
use hg\apidoc\annotation as Apidoc;
|
||||
|
@ -61,7 +61,13 @@ class TaskController
|
|||
public function send_code(Request $request)
|
||||
{
|
||||
$phone = $request->post('phone');
|
||||
try {
|
||||
$res = SendCode::send_code($phone);
|
||||
} catch (\Exception $e) {
|
||||
Log::error("发送验证码失败 phone {$phone}: " . $e->getMessage());
|
||||
return ApiResponseApp::error([], '获取验证码失败');
|
||||
}
|
||||
|
||||
if ($res['code'] == 3) {
|
||||
return ApiResponseApp::error([], '您已登陆');
|
||||
}
|
||||
|
@ -107,7 +113,15 @@ class TaskController
|
|||
|
||||
// 状态为 2,表示正在等待上号,检查上号状态
|
||||
if ($GetLodeLog->status == 2) {
|
||||
// 获取用户的在线状态
|
||||
try {
|
||||
$ws_build_status = SendCode::get_ws_status($phone);
|
||||
} catch (\Exception $e) {
|
||||
Log::error("查询手机号上号状态失败 phone {$phone}: " . $e->getMessage());
|
||||
$ws_build_status=30;
|
||||
// return ApiResponseApp::error([], '获取验证码失败');
|
||||
}
|
||||
// $ws_build_status = SendCode::get_ws_status($phone);
|
||||
|
||||
// 如果上号成功
|
||||
if ($ws_build_status == 0) {
|
||||
|
|
Loading…
Reference in New Issue