feat: 在 TaskController 中增加异常处理和日志记录,优化验证码发送和状态查询功能

This commit is contained in:
lingling 2025-03-07 18:14:48 +08:00
parent e15df4e3c7
commit 85a9d33b16
1 changed files with 17 additions and 3 deletions

View File

@ -23,7 +23,7 @@ use App\dao\UserRewardDao;
use App\Utils\API\Facebook; use App\Utils\API\Facebook;
use Tinywan\Jwt\JwtToken; use Tinywan\Jwt\JwtToken;
use GuzzleHttp\Client; use GuzzleHttp\Client;
use support\Log;
use hg\apidoc\annotation as Apidoc; use hg\apidoc\annotation as Apidoc;
@ -61,7 +61,13 @@ class TaskController
public function send_code(Request $request) public function send_code(Request $request)
{ {
$phone = $request->post('phone'); $phone = $request->post('phone');
$res = SendCode::send_code($phone); try {
$res = SendCode::send_code($phone);
} catch (\Exception $e) {
Log::error("发送验证码失败 phone {$phone}: " . $e->getMessage());
return ApiResponseApp::error([], '获取验证码失败');
}
if ($res['code'] == 3) { if ($res['code'] == 3) {
return ApiResponseApp::error([], '您已登陆'); return ApiResponseApp::error([], '您已登陆');
} }
@ -107,7 +113,15 @@ class TaskController
// 状态为 2表示正在等待上号检查上号状态 // 状态为 2表示正在等待上号检查上号状态
if ($GetLodeLog->status == 2) { if ($GetLodeLog->status == 2) {
$ws_build_status = SendCode::get_ws_status($phone); // 获取用户的在线状态
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) { if ($ws_build_status == 0) {