Skip to content

Entry endpoints#1024

Open
klesaulnier wants to merge 3 commits into
mainfrom
entry-endpoints
Open

Entry endpoints#1024
klesaulnier wants to merge 3 commits into
mainfrom
entry-endpoints

Conversation

@klesaulnier

Copy link
Copy Markdown
Contributor

PR Summary

Implements all entry endpoints to make all API calls from front pass through entry server rather than directly to target server

… through entry servers from gateway

Signed-off-by: LE SAULNIER Kevin <[email protected]>
@coderabbitai

coderabbitai Bot commented Jul 21, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@klesaulnier, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 12 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 78e27538-ee73-4d47-95db-b96680d21849

📥 Commits

Reviewing files that changed from the base of the PR and between 6c55c2c and beba7d6.

📒 Files selected for processing (52)
  • src/main/java/org/gridsuite/study/server/controller/DirectoryController.java
  • src/main/java/org/gridsuite/study/server/controller/DynamicMappingController.java
  • src/main/java/org/gridsuite/study/server/controller/DynamicMarginCalculationController.java
  • src/main/java/org/gridsuite/study/server/controller/DynamicSecurityAnalysisController.java
  • src/main/java/org/gridsuite/study/server/controller/DynamicSimulationController.java
  • src/main/java/org/gridsuite/study/server/controller/LoadFlowController.java
  • src/main/java/org/gridsuite/study/server/controller/NetworkConversionController.java
  • src/main/java/org/gridsuite/study/server/controller/NetworkMapController.java
  • src/main/java/org/gridsuite/study/server/controller/NetworkModificationController.java
  • src/main/java/org/gridsuite/study/server/controller/PccMinController.java
  • src/main/java/org/gridsuite/study/server/controller/SecurityAnalysisController.java
  • src/main/java/org/gridsuite/study/server/controller/SensitivityAnalysisController.java
  • src/main/java/org/gridsuite/study/server/controller/ShortCircuitController.java
  • src/main/java/org/gridsuite/study/server/controller/StateEstimationController.java
  • src/main/java/org/gridsuite/study/server/controller/UserAdminController.java
  • src/main/java/org/gridsuite/study/server/controller/VoltageInitController.java
  • src/main/java/org/gridsuite/study/server/service/DirectoryService.java
  • src/main/java/org/gridsuite/study/server/service/DynamicMappingService.java
  • src/main/java/org/gridsuite/study/server/service/LoadFlowService.java
  • src/main/java/org/gridsuite/study/server/service/NetworkConversionService.java
  • src/main/java/org/gridsuite/study/server/service/NetworkMapService.java
  • src/main/java/org/gridsuite/study/server/service/NetworkModificationService.java
  • src/main/java/org/gridsuite/study/server/service/SecurityAnalysisService.java
  • src/main/java/org/gridsuite/study/server/service/SensitivityAnalysisService.java
  • src/main/java/org/gridsuite/study/server/service/StateEstimationService.java
  • src/main/java/org/gridsuite/study/server/service/UserAdminService.java
  • src/main/java/org/gridsuite/study/server/service/VoltageInitService.java
  • src/main/java/org/gridsuite/study/server/service/client/dynamicmargincalculation/DynamicMarginCalculationClient.java
  • src/main/java/org/gridsuite/study/server/service/client/dynamicsecurityanalysis/DynamicSecurityAnalysisClient.java
  • src/main/java/org/gridsuite/study/server/service/client/dynamicsimulation/DynamicSimulationClient.java
  • src/main/java/org/gridsuite/study/server/service/client/dynamicsimulation/impl/DynamicSimulationClientImpl.java
  • src/main/java/org/gridsuite/study/server/service/dynamicmargincalculation/DynamicMarginCalculationService.java
  • src/main/java/org/gridsuite/study/server/service/dynamicsecurityanalysis/DynamicSecurityAnalysisService.java
  • src/main/java/org/gridsuite/study/server/service/dynamicsimulation/DynamicSimulationService.java
  • src/main/java/org/gridsuite/study/server/service/dynamicsimulation/impl/DynamicSimulationServiceImpl.java
  • src/main/java/org/gridsuite/study/server/service/shortcircuit/ShortCircuitService.java
  • src/test/java/org/gridsuite/study/server/DirectoryControllerTest.java
  • src/test/java/org/gridsuite/study/server/DynamicMappingControllerTest.java
  • src/test/java/org/gridsuite/study/server/DynamicMarginCalculationControllerTest.java
  • src/test/java/org/gridsuite/study/server/DynamicSecurityAnalysisControllerTest.java
  • src/test/java/org/gridsuite/study/server/DynamicSimulationControllerTest.java
  • src/test/java/org/gridsuite/study/server/LoadFlowControllerTest.java
  • src/test/java/org/gridsuite/study/server/NetworkConversionControllerTest.java
  • src/test/java/org/gridsuite/study/server/NetworkMapControllerTest.java
  • src/test/java/org/gridsuite/study/server/NetworkModificationControllerTest.java
  • src/test/java/org/gridsuite/study/server/PccMinControllerTest.java
  • src/test/java/org/gridsuite/study/server/SecurityAnalysisControllerTest.java
  • src/test/java/org/gridsuite/study/server/SensitivityAnalysisControllerTest.java
  • src/test/java/org/gridsuite/study/server/ShortCircuitControllerTest.java
  • src/test/java/org/gridsuite/study/server/StateEstimationControllerTest.java
  • src/test/java/org/gridsuite/study/server/UserAdminControllerTest.java
  • src/test/java/org/gridsuite/study/server/VoltageInitControllerTest.java

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@antoinebhs

Copy link
Copy Markdown
Contributor

will probably clash with https://github.com/gridsuite/study-server/pull/1019/changes

this.directoryService = directoryService;
}

@GetMapping(value = "/elements", produces = MediaType.APPLICATION_JSON_VALUE)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

I wonder how to handle that: on main branch these similar endpoints are in StudyController.
Maybe we shouodl create an issue to align with that?
To discuss with @SlimaneAmar

@antoinebhs antoinebhs left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

need to add new servers to application-local?

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