diff --git a/app/controller/api/TaskController.php b/app/controller/api/TaskController.php index b33f718..4421d38 100644 --- a/app/controller/api/TaskController.php +++ b/app/controller/api/TaskController.php @@ -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'); - $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) { return ApiResponseApp::error([], '您已登陆'); } @@ -107,7 +113,15 @@ class TaskController // 状态为 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) {