atkaksoy501 / HealTripBackend

HealTrip
0 stars 1 forks source link

business rules done #109

Closed atkaksoy501 closed 6 months ago

atkaksoy501 commented 6 months ago

Summary by CodeRabbit

coderabbitai[bot] commented 6 months ago

Sure, I can help with that! Let's organize the information you provided into the requested sections.

Walkthrough

The recent changes introduce new business rule classes for hospitals, hotels, images, organizers, patients, retreats, and users. These classes enhance the application's logic for checking the existence of various entities and simplify user existence validation.

Changes

File Summary
HospitalBusinessRules.java Introduces a class to check hospital and department existence.
HotelBusinessRules.java Defines a class to validate hotel existence by ID.
ImageBusinessRules.java Adds methods to verify the existence of hospital, hotel, or retreat images.
OrganizerBusinessRules.java Introduces methods to check organizer existence for hospitals and hotels.
PatientBusinessRules.java Updates checkIfUserExists method to directly query user existence by ID.
RetreatBusinessRules.java Introduces a service class for retreat-related business rules.
UserBusinessRules.java Modifies checkIfUserExists method to directly verify user existence by ID.

Poem

In the code's dance, new rules take a stance,
Hospitals, hotels, users in a trance,
Images, organizers, and retreats enhance,
Business logic we advance,
A rabbit's joy in every glance! 🐇📜

[!NOTE]

Pull Request Summarized by CodeRabbit Free Your organization is on the Free plan. CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please upgrade your subscription to CodeRabbit Pro by visiting

Commits Files that changed from the base of the PR and between bdedb56fa769539e39b671ded77d5019ba81278e and 0206371cc2af5203f1626d7532908713633d11b2.
Files selected for processing (50) * src/main/java/codewizards/heal_trip/DTO/UserDTO.java (2 hunks) * src/main/java/codewizards/heal_trip/api/controllers/AddressesController.java (1 hunks) * src/main/java/codewizards/heal_trip/api/controllers/AuthsController.java (1 hunks) * src/main/java/codewizards/heal_trip/api/controllers/BookingsController.java (3 hunks) * src/main/java/codewizards/heal_trip/api/controllers/DepartmentsController.java (1 hunks) * src/main/java/codewizards/heal_trip/api/controllers/DoctorsController.java (1 hunks) * src/main/java/codewizards/heal_trip/api/controllers/EmailsController.java (2 hunks) * src/main/java/codewizards/heal_trip/api/controllers/FeedbacksController.java (3 hunks) * src/main/java/codewizards/heal_trip/api/controllers/HospitalOrganizersController.java (2 hunks) * src/main/java/codewizards/heal_trip/api/controllers/HospitalsController.java (2 hunks) * src/main/java/codewizards/heal_trip/api/controllers/HotelOrganizersController.java (3 hunks) * src/main/java/codewizards/heal_trip/api/controllers/HotelsController.java (4 hunks) * src/main/java/codewizards/heal_trip/api/controllers/ImagesController.java (3 hunks) * src/main/java/codewizards/heal_trip/api/controllers/PatientsController.java (1 hunks) * src/main/java/codewizards/heal_trip/api/controllers/RetreatsController.java (2 hunks) * src/main/java/codewizards/heal_trip/business/DTOs/requests/authentication/AuthenticationRequest.java (2 hunks) * src/main/java/codewizards/heal_trip/business/abstracts/IHospitalOrganizerService.java (1 hunks) * src/main/java/codewizards/heal_trip/business/abstracts/IImageService.java (3 hunks) * src/main/java/codewizards/heal_trip/business/concretes/BookingService.java (5 hunks) * src/main/java/codewizards/heal_trip/business/concretes/DepartmentService.java (2 hunks) * src/main/java/codewizards/heal_trip/business/concretes/DoctorService.java (3 hunks) * src/main/java/codewizards/heal_trip/business/concretes/FeedbackService.java (2 hunks) * src/main/java/codewizards/heal_trip/business/concretes/HospitalOrganizerService.java (2 hunks) * src/main/java/codewizards/heal_trip/business/concretes/HospitalService.java (6 hunks) * src/main/java/codewizards/heal_trip/business/concretes/HotelOrganizerService.java (2 hunks) * src/main/java/codewizards/heal_trip/business/concretes/HotelService.java (3 hunks) * src/main/java/codewizards/heal_trip/business/concretes/ImageService.java (6 hunks) * src/main/java/codewizards/heal_trip/business/concretes/RetreatService.java (4 hunks) * src/main/java/codewizards/heal_trip/business/messages/BookingMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/DepartmentMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/DoctorMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/EmailMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/FeedbackMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/HospitalMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/HotelMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/ImageMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/OrganizerMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/messages/RetreatMessages.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/AddressBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/BookingBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/DepartmentBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/DoctorBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/FeedbackBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/HospitalBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/HotelBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/ImageBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/OrganizerBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/PatientBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/RetreatBusinessRules.java (1 hunks) * src/main/java/codewizards/heal_trip/business/rules/UserBusinessRules.java (1 hunks)

Tips ### Chat There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai): - Review comments: Directly reply to a review comment made by CodeRabbit. Example: - `I pushed a fix in commit .` - `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 generate interesting stats about this repository and render them as a table.` - `@coderabbitai show all the console.log statements in this repository.` - `@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.` 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 as PR comments) - `@coderabbitai pause` to pause the reviews on a PR. - `@coderabbitai resume` to resume the paused reviews. - `@coderabbitai review` to trigger a review. This is useful when automatic reviews are disabled for the repository. - `@coderabbitai resolve` resolve all the CodeRabbit review comments. - `@coderabbitai help` to get help. Additionally, you can add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed. ### CodeRabbit Configration 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](https://docs.coderabbit.ai/guides/configure-coderabbit) 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](https://coderabbit.ai/docs) for detailed information on how to use CodeRabbit. - Join our [Discord Community](https://discord.com/invite/GsXnASn26c) to get help, request features, and share feedback. - Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.