-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AMM-1048 | Assam Pre Prod in MO Save and Frequency is not working #77
Changes from all commits
6f448ac
1b7f584
576bcdd
fef5c2d
866ec9f
2be7f43
4edcf18
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -697,26 +697,30 @@ public String getPartialBeneficiariesByBenRegIds( | |||||||||||||||||||||||||||||||||||||||||||||||
@Operation(summary = "Get beneficiaries by beneficiary registration id") | ||||||||||||||||||||||||||||||||||||||||||||||||
@PostMapping(path = "/getByBenRegIdList", headers = "Authorization") | ||||||||||||||||||||||||||||||||||||||||||||||||
public String getBeneficiariesByBenRegIds( | ||||||||||||||||||||||||||||||||||||||||||||||||
@Param(value = " {\"beneficiaryRegID\": \"Long\"}") @RequestBody String benRegIds) { | ||||||||||||||||||||||||||||||||||||||||||||||||
logger.info("IdentityController.getBeneficiariesByBenRegIds - start. benRegIdList = " + benRegIds); | ||||||||||||||||||||||||||||||||||||||||||||||||
BigInteger[] benRegIdarray = null; | ||||||||||||||||||||||||||||||||||||||||||||||||
JsonElement json = JsonParser.parseString(benRegIds); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
if (json instanceof JsonNull) { | ||||||||||||||||||||||||||||||||||||||||||||||||
return getErrorResponseString("Null/Empty Phone Number.", 200, "success", ""); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
benRegIdarray = InputMapper.getInstance().gson().fromJson(json, BigInteger[].class); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
List<BeneficiariesDTO> list = svc.getBeneficiariesDeatilsByBenRegIdList(Arrays.asList(benRegIdarray)); | ||||||||||||||||||||||||||||||||||||||||||||||||
list.removeIf(Objects::isNull); | ||||||||||||||||||||||||||||||||||||||||||||||||
Collections.sort(list); | ||||||||||||||||||||||||||||||||||||||||||||||||
String response = getSuccessResponseString(list, 200, "success", "getBeneficiariesByBenRegIds"); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
logger.info("IdentityController.getBeneficiariesByBenRegIds - end : "); | ||||||||||||||||||||||||||||||||||||||||||||||||
return response; | ||||||||||||||||||||||||||||||||||||||||||||||||
@RequestBody Long[] benRegIds) { // Accepting an array of Longs directly | ||||||||||||||||||||||||||||||||||||||||||||||||
logger.info("IdentityController.getBeneficiariesByBenRegIds - start. benRegIdList = " + benRegIds.length); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
// If benRegIds is null or empty, return an error response | ||||||||||||||||||||||||||||||||||||||||||||||||
if (benRegIds == null || benRegIds.length == 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||
return getErrorResponseString("No beneficiary registration IDs provided", 400, "error", "Array is empty"); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
// Convert the Long[] to BigInteger[] for further processing | ||||||||||||||||||||||||||||||||||||||||||||||||
BigInteger[] benRegIdArray = Arrays.stream(benRegIds) | ||||||||||||||||||||||||||||||||||||||||||||||||
.map(BigInteger::valueOf) | ||||||||||||||||||||||||||||||||||||||||||||||||
.toArray(BigInteger[]::new); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
List<BeneficiariesDTO> list = svc.getBeneficiariesDeatilsByBenRegIdList(Arrays.asList(benRegIdArray)); | ||||||||||||||||||||||||||||||||||||||||||||||||
list.removeIf(Objects::isNull); | ||||||||||||||||||||||||||||||||||||||||||||||||
Collections.sort(list); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
String response = getSuccessResponseString(list, 200, "success", "getBeneficiariesByBenRegIds"); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
logger.info("IdentityController.getBeneficiariesByBenRegIds - end : "); | ||||||||||||||||||||||||||||||||||||||||||||||||
return response; | ||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+713
to
+720
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π οΈ Refactor suggestion Consider adding error handling for service layer exceptions The service call and response handling could benefit from more robust error handling. Apply this diff to improve error handling: - List<BeneficiariesDTO> list = svc.getBeneficiariesDeatilsByBenRegIdList(Arrays.asList(benRegIdArray));
- list.removeIf(Objects::isNull);
- Collections.sort(list);
-
- String response = getSuccessResponseString(list, 200, "success", "getBeneficiariesByBenRegIds");
-
- logger.info("IdentityController.getBeneficiariesByBenRegIds - end : ");
- return response;
+ try {
+ List<BeneficiariesDTO> list = svc.getBeneficiariesDeatilsByBenRegIdList(Arrays.asList(benRegIdArray));
+ if (list == null) {
+ return getErrorResponseString("No beneficiaries found", 404, "not_found", "getBeneficiariesByBenRegIds");
+ }
+ list.removeIf(Objects::isNull);
+ Collections.sort(list);
+
+ String response = getSuccessResponseString(list, 200, "success", "getBeneficiariesByBenRegIds");
+ logger.info("IdentityController.getBeneficiariesByBenRegIds - end");
+ return response;
+ } catch (Exception e) {
+ logger.error("Error retrieving beneficiaries: {}", e.getMessage(), e);
+ return getErrorResponseString("Error retrieving beneficiaries", 500, "error", "getBeneficiariesByBenRegIds");
+ } π Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||
* Overloaded method with string | ||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Security: Fix log injection vulnerability
The current logging implementation directly interpolates user input into the log message, which could be exploited for log injection attacks.
Apply this diff to sanitize the log message:
π Committable suggestion
π§° Tools
πͺ GitHub Check: SonarCloud
[notice] 702-702: Logging should not be vulnerable to injection attacks
Change this code to not log user-controlled data.See more on SonarQube Cloud