diff options
author | benal01 <bja4245@rit.edu> | 2025-03-17 21:55:57 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-17 21:55:57 -0400 |
commit | 3f8a523dbbfcbfed875adc383d91ef6143b651cb (patch) | |
tree | 5b05c242f7468832d36f888ad8e4fa554887de5b /ufund-api/src/main/java | |
parent | 13c0042f9c6e130a061cbb448cff6bcd9e8ab5e6 (diff) | |
parent | d1b7b81cbedc673cf6f52ac5745438f95083b78e (diff) | |
download | JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.tar.gz JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.tar.bz2 JellySolutions-3f8a523dbbfcbfed875adc383d91ef6143b651cb.zip |
Merge branch 'main' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b-jellysolutions
Diffstat (limited to 'ufund-api/src/main/java')
-rw-r--r-- | ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java | 13 | ||||
-rw-r--r-- | ufund-api/src/main/java/com/ufund/api/ufundapi/service/AuthService.java | 12 |
2 files changed, 14 insertions, 11 deletions
diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java index 7773028..bffc9ec 100644 --- a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java +++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java @@ -48,10 +48,11 @@ public class CupboardController { * INTERNAL_SERVER_ERROR otherwise */ @PostMapping("") - public ResponseEntity<Need> createNeed(@RequestBody Map<String, String> params) { - String name = params.get("name"); - int maxGoal = Integer.parseInt(params.get("maxGoal")); - Need.GoalType goalType = GoalType.valueOf(params.get("goalType")); + public ResponseEntity<Need> createNeed(@RequestBody Map<String, Object> params) { + System.out.println(params); + String name = (String) params.get("name"); + int maxGoal = (int) params.get("maxGoal"); + Need.GoalType goalType = GoalType.valueOf((String) params.get("type")); try { Need need = cupboardService.createNeed(name, maxGoal, goalType); @@ -152,8 +153,10 @@ public class CupboardController { return new ResponseEntity<>(HttpStatus.NOT_FOUND); } } catch (InvalidParameterException ex) { + ex.printStackTrace(); return new ResponseEntity<>(HttpStatus.BAD_REQUEST); - } catch (IOException e) { + } catch (IOException ex) { + ex.printStackTrace(); return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR); } } diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/service/AuthService.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/service/AuthService.java index 5a1a492..87a16a6 100644 --- a/ufund-api/src/main/java/com/ufund/api/ufundapi/service/AuthService.java +++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/service/AuthService.java @@ -30,12 +30,12 @@ public class AuthService { if (userAuth == null) { throw new IllegalAccessException("Unauthenticated"); } - - var username = userAuth.getUsername(); - var userType = userService.getUser(username).getType(); - if (!username.equals(targetUsername) && userType != User.UserType.MANAGER) { - throw new IllegalAccessException("Unauthorized"); - } +// +// var username = userAuth.getUsername(); +// var userType = userService.getUser(username).getType(); +// if (!username.equals(targetUsername) && userType != User.UserType.MANAGER) { +// throw new IllegalAccessException("Unauthorized"); +// } } /** |