[Android] OAuth2 flow with browser V2 #9044

Merged
root merged 3 commits from android/osm-login-oauth2-google into master 2024-08-21 14:58:02 +00:00
Member

N.B. New login flow is enabled only for "google" builds! F-Droid and Web builds should work as previously.

How OAuth2 flow should work (happy path):

  • OsmLoginFragment - User pushes "Login to OpenStreetMap" button
  • OsmLoginFragment - triggers browser
  • Browser - OSM.org login flow
  • Browser - redirects to om://oauth2/osm/callback?code=XXX
  • MwmActivity - handles om:// URI and extracts code value
  • MwmActivity - calls OsmLoginActivity with code in extras
  • OsmLoginFragment - calls native code to get OAuth2 token using code
  • OsmLoginFragment - calls native code to get username using OAuth2 token
  • OsmLoginFragment - redirects to ProfileActivity

https://github.com/user-attachments/assets/94f51fca-4fac-45b8-94ae-7495731ed93e

This PR does the same as #8825 but with no UI changes.

**N.B.** New login flow is enabled only for "google" builds! F-Droid and Web builds should work as previously. How OAuth2 flow should work (happy path): * `OsmLoginFragment` - User pushes "Login to OpenStreetMap" button * `OsmLoginFragment` - triggers browser * `Browser` - OSM.org login flow * `Browser` - redirects to `om://oauth2/osm/callback?code=XXX` * `MwmActivity` - handles `om://` URI and extracts code value * `MwmActivity` - calls OsmLoginActivity with code in extras * `OsmLoginFragment` - calls native code to get OAuth2 token using code * `OsmLoginFragment` - calls native code to get username using OAuth2 token * `OsmLoginFragment` - redirects to `ProfileActivity` https://github.com/user-attachments/assets/94f51fca-4fac-45b8-94ae-7495731ed93e This PR does the same as #8825 but with no UI changes.
biodranik (Migrated from github.com) reviewed 2024-08-21 14:16:51 +00:00
biodranik (Migrated from github.com) left a comment

Thanks! It works in the emulator, a bit of nit code styling and we can merge into the master to beta-test on many users.

Thanks! It works in the emulator, a bit of nit code styling and we can merge into the master to beta-test on many users.
@ -48,15 +50,41 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
mLoginInput = view.findViewById(R.id.osm_username);
mPasswordInput = view.findViewById(R.id.osm_password);
biodranik (Migrated from github.com) commented 2024-08-21 13:56:28 +00:00

Does this code work for a non-google flavor?

Does this code work for a non-google flavor?
biodranik (Migrated from github.com) commented 2024-08-21 14:01:06 +00:00

Can storing this variable as a member be avoided?

Can storing this variable as a member be avoided?
@ -113,4 +146,27 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
startActivity(new Intent(requireContext(), ProfileActivity.class));
requireActivity().finish();
}
biodranik (Migrated from github.com) commented 2024-08-21 14:02:10 +00:00
      ThreadPool.getWorker().execute(() ->
      {
```suggestion ThreadPool.getWorker().execute(() -> { ```
biodranik (Migrated from github.com) commented 2024-08-21 14:02:25 +00:00
        UiThread.run(() ->
        {
```suggestion UiThread.run(() -> { ```
@ -116,1 +169,4 @@
});
}
}
}
biodranik (Migrated from github.com) commented 2024-08-21 14:01:18 +00:00
```suggestion ```
biodranik (Migrated from github.com) commented 2024-08-21 14:03:47 +00:00
   auto const requestTokenUrl = m_baseUrl + "/oauth2/authorize";
```suggestion auto const requestTokenUrl = m_baseUrl + "/oauth2/authorize"; ```
biodranik (Migrated from github.com) commented 2024-08-21 14:04:03 +00:00

or std::string

   auto const requestTokenQuery = BuildPostRequest(
   {
or std::string ```suggestion auto const requestTokenQuery = BuildPostRequest( { ```
@ -283,3 +288,4 @@
string OsmOAuth::FinishAuthorization(string const & oauth2code) const
{
auto params = BuildPostRequest({
biodranik (Migrated from github.com) commented 2024-08-21 14:02:49 +00:00
std::string OsmOAuth::BuildOAuth2Url() const
```suggestion std::string OsmOAuth::BuildOAuth2Url() const ```
strump reviewed 2024-08-21 14:37:44 +00:00
@ -48,15 +50,41 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
mLoginInput = view.findViewById(R.id.osm_username);
mPasswordInput = view.findViewById(R.id.osm_password);
Author
Member

Yes. OAuth2 callback URIs are handled by all flavors. And if user have two versions installed (GooglePlay and F-Droid) he will see "Select which app to use" because om:// URIs are handled by all flavors.

Yes. OAuth2 callback URIs are handled by all flavors. And if user have two versions installed (GooglePlay and F-Droid) he will see "Select which app to use" because `om://` URIs are handled by all flavors.
strump reviewed 2024-08-21 14:44:10 +00:00
Author
Member

This variable couldn't be const because .append("...") method fails.

This variable couldn't be `const` because `.append("...")` method fails.
strump reviewed 2024-08-21 14:48:01 +00:00
Author
Member

Fixed

Fixed
strump reviewed 2024-08-21 14:49:10 +00:00
@ -283,3 +288,4 @@
string OsmOAuth::FinishAuthorization(string const & oauth2code) const
{
auto params = BuildPostRequest({
Author
Member

In editor/osm_auth.cpp file all methods have string return type. Should I change all methods to std::string?

In `editor/osm_auth.cpp` file all methods have `string` return type. Should I change all methods to `std::string`?
strump reviewed 2024-08-21 14:49:15 +00:00
@ -113,4 +146,27 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
startActivity(new Intent(requireContext(), ProfileActivity.class));
requireActivity().finish();
}
Author
Member

Fixed

Fixed
strump reviewed 2024-08-21 14:49:19 +00:00
@ -113,4 +146,27 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
startActivity(new Intent(requireContext(), ProfileActivity.class));
requireActivity().finish();
}
Author
Member

Fixed

Fixed
strump reviewed 2024-08-21 14:50:16 +00:00
@ -48,15 +50,41 @@ public class OsmLoginFragment extends BaseMwmToolbarFragment
mLoginInput = view.findViewById(R.id.osm_username);
mPasswordInput = view.findViewById(R.id.osm_password);
Author
Member

I introduced String readOAuth2CodeFromArguments() method to get rid of the field.

I introduced `String readOAuth2CodeFromArguments()` method to get rid of the field.
biodranik (Migrated from github.com) reviewed 2024-08-21 14:55:50 +00:00
biodranik (Migrated from github.com) commented 2024-08-21 14:55:50 +00:00

My bad, sorry.

My bad, sorry.
biodranik (Migrated from github.com) reviewed 2024-08-21 14:56:24 +00:00
@ -283,3 +288,4 @@
string OsmOAuth::FinishAuthorization(string const & oauth2code) const
{
auto params = BuildPostRequest({
biodranik (Migrated from github.com) commented 2024-08-21 14:56:24 +00:00

No need, let's make it later in bulk in a separate PR.

No need, let's make it later in bulk in a separate PR.
biodranik (Migrated from github.com) approved these changes 2024-08-21 14:57:47 +00:00
biodranik (Migrated from github.com) left a comment

Thanks for the fix! Let's test it now.

Thanks for the fix! Let's test it now.
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#9044
No description provided.