From afeeed281e60466b576fbe74d339634cc5d07b82 Mon Sep 17 00:00:00 2001
From: Codex Assistant <codex@example.com>
Date: 星期三, 08 十月 2025 08:56:42 +0800
Subject: [PATCH] 修复评审功能和用户认证问题

---
 backend/src/main/java/com/rongyichuang/auth/api/AuthGraphqlApi.java |   47 +++++++++++++++++++++++++++++++----------------
 1 files changed, 31 insertions(+), 16 deletions(-)

diff --git a/backend/src/main/java/com/rongyichuang/auth/api/AuthGraphqlApi.java b/backend/src/main/java/com/rongyichuang/auth/api/AuthGraphqlApi.java
index a49349c..4738fae 100644
--- a/backend/src/main/java/com/rongyichuang/auth/api/AuthGraphqlApi.java
+++ b/backend/src/main/java/com/rongyichuang/auth/api/AuthGraphqlApi.java
@@ -1,20 +1,18 @@
 package com.rongyichuang.auth.api;
 
-import com.rongyichuang.auth.dto.LoginRequest;
-import com.rongyichuang.auth.dto.LoginResponse;
 import com.rongyichuang.auth.dto.PhoneDecryptResponse;
 import com.rongyichuang.auth.dto.WxLoginRequest;
 import com.rongyichuang.auth.dto.WxLoginResponse;
+import com.rongyichuang.auth.dto.LoginRequest;
+import com.rongyichuang.auth.dto.LoginResponse;
 import com.rongyichuang.auth.service.AuthService;
-import com.fasterxml.jackson.core.JsonProcessingException;
-import com.fasterxml.jackson.databind.JsonMappingException;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.graphql.data.method.annotation.Argument;
 import org.springframework.graphql.data.method.annotation.MutationMapping;
 import org.springframework.stereotype.Controller;
 
 /**
- * 璁よ瘉GraphQL API
+ * 璁よ瘉GraphQL API鎺у埗鍣�
  */
 @Controller
 public class AuthGraphqlApi {
@@ -23,29 +21,42 @@
     private AuthService authService;
 
     /**
-     * Web绔敤鎴风櫥褰�
+     * 寰俊鐧诲綍
      */
     @MutationMapping
-    public LoginResponse webLogin(@Argument LoginRequest input) {
-        return authService.login(input);
+    public WxLoginResponse wxLogin(@Argument WxLoginRequest input) {
+        try {
+            return authService.wxLogin(input);
+        } catch (Exception e) {
+            throw new RuntimeException("寰俊鐧诲綍澶辫触: " + e.getMessage(), e);
+        }
     }
 
     /**
-     * 寰俊灏忕▼搴忕櫥褰�
+     * Web绔櫥褰�
      */
     @MutationMapping
-    public WxLoginResponse wxLogin(@Argument WxLoginRequest input) throws JsonProcessingException, JsonMappingException {
-        return authService.wxLogin(input);
+    public LoginResponse webLogin(@Argument LoginRequest input) {
+        try {
+            return authService.login(input);
+        } catch (Exception e) {
+            throw new RuntimeException("鐧诲綍澶辫触: " + e.getMessage(), e);
+        }
     }
 
     /**
      * 瑙e瘑寰俊鎵嬫満鍙凤紙鏃х増API锛�
      */
     @MutationMapping
-    public PhoneDecryptResponse decryptPhoneNumber(@Argument String encryptedData, 
-                                                   @Argument String iv, 
-                                                   @Argument String sessionKey) {
-        return authService.decryptPhoneNumber(encryptedData, iv, sessionKey);
+    public PhoneDecryptResponse decryptPhoneNumber(
+            @Argument String encryptedData,
+            @Argument String iv,
+            @Argument String sessionKey) {
+        try {
+            return authService.decryptPhoneNumber(encryptedData, iv, sessionKey);
+        } catch (Exception e) {
+            throw new RuntimeException("鎵嬫満鍙疯В瀵嗗け璐�: " + e.getMessage(), e);
+        }
     }
 
     /**
@@ -53,6 +64,10 @@
      */
     @MutationMapping
     public PhoneDecryptResponse getPhoneNumberByCode(@Argument String code) {
-        return authService.getPhoneNumberByCode(code);
+        try {
+            return authService.getPhoneNumberByCode(code);
+        } catch (Exception e) {
+            throw new RuntimeException("鑾峰彇鎵嬫満鍙峰け璐�: " + e.getMessage(), e);
+        }
     }
 }
\ No newline at end of file

--
Gitblit v1.8.0