forked from sensiasoft/sensorhub
-
Notifications
You must be signed in to change notification settings - Fork 24
HttpClientWrapper to use switch between using Java Http and Ok Http for android #335
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
Open
kalynstricklin
wants to merge
10
commits into
opensensorhub:master
Choose a base branch
from
kalynstricklin:http-client-wrapper
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
98379a9
added httpclientwrapper
kalynstricklin 51803ea
added oauth to the java http client wrapper and then added the regist…
kalynstricklin d73a22c
removed token from httpurl (may remove this entire file)
kalynstricklin f8c81bf
reverted back to Fix to allow CS API client to push observations w/o …
kalynstricklin bd80979
updated copywright
kalynstricklin 2df73f1
Removed uses of okhttpclient in place of IHttpClient that lets you im…
kalynstricklin 4129b82
updated endpoints and password
kalynstricklin 34e83ea
removede unused code, added display info, and renamed java class
kalynstricklin 1084822
Re-added foi id logic to push logic
kalynstricklin 50ae563
current changes implemented
kalynstricklin 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
649 changes: 272 additions & 377 deletions
649
...ervice-consys/src/main/java/org/sensorhub/impl/service/consys/client/ConSysApiClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
14 changes: 14 additions & 0 deletions
14
...sys/src/main/java/org/sensorhub/impl/service/consys/client/ConSysApiClientDescriptor.java
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
33 changes: 33 additions & 0 deletions
33
...vice-consys/src/main/java/org/sensorhub/impl/service/consys/client/ConSysOAuthConfig.java
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,33 @@ | ||
| /***************************** BEGIN LICENSE BLOCK *************************** | ||
| The contents of this file are subject to the Mozilla Public License, v. 2.0. | ||
| If a copy of the MPL was not distributed with this file, You can obtain one | ||
| at http://mozilla.org/MPL/2.0/. | ||
| Software distributed under the License is distributed on an "AS IS" basis, | ||
| WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | ||
| for the specific language governing rights and limitations under the License. | ||
| Copyright (C) 2025 GeoRobotix. All Rights Reserved. | ||
| ******************************* END LICENSE BLOCK ***************************/ | ||
|
|
||
| package org.sensorhub.impl.service.consys.client; | ||
|
|
||
| import org.sensorhub.api.config.DisplayInfo; | ||
|
|
||
| public class ConSysOAuthConfig { | ||
|
|
||
| @DisplayInfo(label = "Use OAuth Authentication") | ||
| public boolean oAuthEnabled = true; | ||
|
|
||
| @DisplayInfo(label="Token Endpoint", desc="URL of OAuth provider's token endpoint") | ||
| public String tokenEndpoint; | ||
|
|
||
| @DisplayInfo(desc="Client ID as provided by your OAuth provider") | ||
| public String clientID; | ||
|
|
||
|
|
||
| @DisplayInfo(desc="Client Secret as provided by your OAuth provider") | ||
| public String clientSecret; | ||
| } |
33 changes: 33 additions & 0 deletions
33
...-service-consys/src/main/java/org/sensorhub/impl/service/consys/client/ITokenHandler.java
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,33 @@ | ||
| /***************************** BEGIN LICENSE BLOCK *************************** | ||
|
|
||
| The contents of this file are subject to the Mozilla Public License, v. 2.0. | ||
| If a copy of the MPL was not distributed with this file, You can obtain one | ||
| at http://mozilla.org/MPL/2.0/. | ||
|
|
||
| Software distributed under the License is distributed on an "AS IS" basis, | ||
| WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | ||
| for the specific language governing rights and limitations under the License. | ||
|
|
||
| Copyright (C) 2025 GeoRobotix. All Rights Reserved. | ||
|
|
||
| ******************************* END LICENSE BLOCK ***************************/ | ||
|
|
||
| package org.sensorhub.impl.service.consys.client; | ||
|
|
||
| public interface ITokenHandler { | ||
|
|
||
| /** | ||
| * gets the current access token | ||
| */ | ||
| String getToken(); | ||
|
|
||
| /** | ||
| * refreshes a new access token | ||
| */ | ||
| void refreshAccessToken(); | ||
|
|
||
| /** | ||
| * checks if the current token has expired | ||
| */ | ||
| boolean isExpired(); | ||
| } |
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.