-
Notifications
You must be signed in to change notification settings - Fork 41
ITEP-92735: Mapping service should communicate with outside world over proxy #1469
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
Merged
+440
−380
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
caa82d5
ITEP-92735: Mapping service should communicate with outside world ove…
saratpoluri 27b1237
Uniform access url paths
saratpoluri 4460fad
Fix test ports and autocalibration test URLs to use Apache proxy
saratpoluri 0792cb7
Address review comments
saratpoluri 32ae978
Update endpoints in Agents.md
saratpoluri 5a0b7ab
Handle CI chmod failure for secrets directory
Copilot d3c499a
Clarify CI chmod warning security implication
Copilot 5e236af
Note CI isolation requirement in chmod warning
Copilot 74521f0
Merge branch 'main' into fix/ITEP-92735
Irakus 8175e28
Standardize service based api client code
saratpoluri b926d45
Remove copilot test instruction redundancy
saratpoluri 134f4ef
Merge branch 'main' into fix/ITEP-92735
saratpoluri 8a753ba
Merge branch 'main' into fix/ITEP-92735
dmytroye 4030f61
Fix prettier issues
saratpoluri 33344a0
Apply suggestions from copilot code review
saratpoluri 5fa6bfc
Remove old routes
saratpoluri 3dd9d74
Merge branch 'main' into fix/ITEP-92735
saratpoluri f034388
Merge branch 'main' into fix/ITEP-92735
scenescapecicd d2ff93f
Merge branch 'main' into fix/ITEP-92735
scenescapecicd 1d88677
Merge branch 'main' into fix/ITEP-92735
scenescapecicd 9ac9e30
Connect to proper endpoint with socketio
saratpoluri addd813
Merge branch 'main' into fix/ITEP-92735
scenescapecicd fba34b1
Merge branch 'main' into fix/ITEP-92735
scenescapecicd 9f30224
Merge branch 'main' into fix/ITEP-92735
scenescapecicd 5c654a6
Merge branch 'main' into fix/ITEP-92735
scenescapecicd 3f5e36e
init shell variable from Make variable
sbelhaik ba56a57
fix MODEL_TYPE
sbelhaik 2df11e8
Merge branch 'main' into fix/ITEP-92735
sbelhaik 45fb116
Add the version extension to the mapping proxy endpoints
saratpoluri 327c570
Merge branch 'main' into fix/ITEP-92735
saratpoluri 8eb85b6
Merge branch 'main' into fix/ITEP-92735
saratpoluri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # SPDX-FileCopyrightText: (C) 2026 Intel Corporation | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| from scene_common.rest_client import RESTClient | ||
|
|
||
|
|
||
| class AutoCalibrationClient(RESTClient): | ||
| """Client for auto-calibration REST endpoints.""" | ||
|
|
||
| def getStatus(self): | ||
| """Gets auto-calibration service status.""" | ||
| return self._get("status", None) | ||
|
|
||
| def registerScene(self, sceneId, data): | ||
| """Register a scene for auto-calibration.""" | ||
| return self._create(f"scenes/{sceneId}/registration", data) | ||
|
|
||
| def getSceneRegistrationStatus(self, sceneId): | ||
| """Gets scene registration status.""" | ||
| return self._get(f"scenes/{sceneId}/registration", None) | ||
|
|
||
| def updateSceneRegistration(self, sceneId, data): | ||
| """Updates scene registration.""" | ||
| return self._update(f"scenes/{sceneId}/registration", data) | ||
|
|
||
| def calibrateCamera(self, cameraId, data): | ||
| """Calibrate a camera.""" | ||
| return self._create(f"cameras/{cameraId}/calibration", data) | ||
|
|
||
| def getCameraCalibrationStatus(self, cameraId): | ||
| """Gets camera calibration status.""" | ||
| return self._get(f"cameras/{cameraId}/calibration", None) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.