Skip to content
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

Changed saving report log to audit db #11502

Merged
merged 1 commit into from
Apr 1, 2025

Conversation

ImeshRanawellaSG
Copy link
Collaborator

@ImeshRanawellaSG ImeshRanawellaSG commented Apr 1, 2025

Summary by CodeRabbit

  • Refactor
    • Enhanced report logging by switching from a complex object reference to a streamlined user identifier for improved consistency.
  • Chore
    • Updated the configuration for report processing to utilize a refined database context, ensuring more reliable interactions.

@ImeshRanawellaSG ImeshRanawellaSG self-assigned this Apr 1, 2025
Copy link
Contributor

coderabbitai bot commented Apr 1, 2025

Walkthrough

This update replaces an object reference with a simpler identifier in the report logging mechanism. In the ReportLog class, the previous association with a WebUser is removed and substituted with a non-nullable Long field (generatedById). Additionally, the persistence unit for ReportLogFacade is modified, changing the unit name from "hmisPU" to "hmisAuditPU". These changes adjust how user identity and database interactions are managed without altering the overall business logic.

Changes

File(s) Change Summary
src/.../entity/report/ReportLog.java Removed WebUser generatedBy and added a non-nullable Long generatedById. Updated the constructor and getter method.
src/.../facade/ReportLogFacade.java Updated @PersistenceContext unit name from "hmisPU" to "hmisAuditPU".

Poem

I’m a rabbit, hopping so light,
Watching these changes take their flight.
From objects to IDs, the code now sings,
And persistence flows with fresher wings.
Bound by updates, I cheer with delight!
🐰✨

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
src/main/java/com/divudi/core/entity/report/ReportLog.java (2)

49-56: Constructor updated to store ID instead of WebUser object

The constructor has been updated to extract and store the user ID rather than storing the WebUser object reference. This change is consistent with the field type change.

Consider creating an additional constructor that accepts the ID directly, which would be useful for testing or when the WebUser object isn't readily available:

+ public ReportLog(IReportType reportType, Long generatedById, Date startTime, Date endTime) {
+     this.generatedById = generatedById;
+     this.startTime = startTime;
+     this.endTime = endTime;
+     this.reportType = reportType.getReportType();
+     this.reportName = reportType.getReportName();
+     this.executionTimeInMillis = endTime.getTime() - startTime.getTime();
+ }

4-4: WebUser import still used

The WebUser import is still needed for the constructor parameter, but this class no longer has a direct relationship with WebUser entities.

If you create an additional constructor that accepts the ID directly (as suggested above), and if the existing constructor is no longer used elsewhere in the codebase, you could remove this import.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b92ff34 and 2460a71.

📒 Files selected for processing (2)
  • src/main/java/com/divudi/core/entity/report/ReportLog.java (3 hunks)
  • src/main/java/com/divudi/core/facade/ReportLogFacade.java (1 hunks)
🔇 Additional comments (4)
src/main/java/com/divudi/core/facade/ReportLogFacade.java (1)

11-11:

✅ Verification successful

Persistence unit updated to hmisAuditPU

The change from "hmisPU" to "hmisAuditPU" aligns with the PR objective of changing report logging to the audit database. This separates audit data from the main application data, which is a good practice for auditing.


🏁 Script executed:

#!/bin/bash
# Check if the hmisAuditPU is properly configured in persistence.xml
fd "persistence.xml" | xargs grep -A 10 "hmisAuditPU"

Length of output: 409


Persistence Unit Configuration Verified

The use of @PersistenceContext(unitName = "hmisAuditPU") in src/main/java/com/divudi/core/facade/ReportLogFacade.java is correct. The output from the search confirms that persistence.xml properly defines the persistence unit "hmisAuditPU" with the expected configuration. This correctly separates audit logging from the main application data as intended.

src/main/java/com/divudi/core/entity/report/ReportLog.java (3)

28-29: Column change from WebUser reference to Long ID

Replacing the WebUser reference with just the ID field is appropriate when moving to a separate audit database, as it avoids cross-database relationship issues.


1-116:

✅ Verification successful

Overall implementation of ReportLog changes

The changes to this class are well-implemented and align with the PR objective of moving report logs to a separate audit database. The approach of storing just the user ID rather than a direct entity reference is appropriate for this scenario.


🏁 Script executed:

#!/bin/bash
# Check for any code that might be affected by these changes
# Look for places that might be using the old relationship
rg "\.getGeneratedBy\(\)" --type java -A 2 -B 2
# Look for places creating ReportLog objects
rg "new ReportLog\(" --type java -A 5 -B 2

Length of output: 820


Final Approval: Verified ReportLog Implementation and Integration

The changes in ReportLog.java have been confirmed as correctly implemented. The updated class storing only the user ID has been integrated well, and our verification in ReportTimerController.java (using the new ReportLog( constructor) confirms that there are no lingering dependencies on the previous direct entity relationship.

  • ReportLog class: Correct modifications for moving report logs to a separate audit database.
  • ReportTimerController.java: Usage of the updated constructor shows consistency and no outdated method calls like .getGeneratedBy().

77-79:

❓ Verification inconclusive

Getter updated for new field

The getter has been appropriately updated to return the user ID instead of a WebUser object.


🏁 Script executed:

#!/bin/bash
# Check for any code that may be trying to get WebUser from ReportLog
rg "getGeneratedBy\(\)" --type java -A 3 -B 3

Length of output: 47


Getter update verified – manual confirmation required

The updated getter in src/main/java/com/divudi/core/entity/report/ReportLog.java (lines 77–79) now returns the user ID (Long) instead of a WebUser object. A search for calls to the legacy getter (getGeneratedBy()) produced no output, which suggests that no remaining dependencies on the old implementation were detected. However, due to the low-quality inference from the script output, please manually verify that no other parts of the codebase expect a WebUser object.

  • File location: src/main/java/com/divudi/core/entity/report/ReportLog.java (lines 77–79)
  • Action: Manually confirm that all references to the previous getter have been updated accordingly.

@ImeshRanawellaSG ImeshRanawellaSG merged commit 5d3c32b into development Apr 1, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants