WIP: [core][android] Display profile picture in profile page #8701

Draft
RedAuburn wants to merge 1 commit from RedAuburn/profile-image into master
Member

Caches image & hash, and uses the hash to check if a new image needs downloading, so works well online and offline.

also moved the networkpolicy check to the placepage, along with bools for functions that access the internet to explicitly specify it, preventing unintentional network access.

also fixes organicmaps/organicmaps#6340

To do:

  • needs to respect the networkpolicy. -done
  • iOS implementation also needed. (at least to handle editor/server_api's m_imageUrl pref returning "none" sometimes, if not a full implementation)
Caches image & hash, and uses the hash to check if a new image needs downloading, so works well online and offline. also moved the networkpolicy check to the placepage, along with bools for functions that access the internet to explicitly specify it, preventing unintentional network access. also fixes https://git.omaps.dev/organicmaps/organicmaps/issues/6340 To do: - ~~needs to respect the networkpolicy.~~ -done - iOS implementation also needed. (at least to handle editor/server_api's m_imageUrl pref returning "none" sometimes, if not a full implementation) <img width="300px" src="https://github.com/user-attachments/assets/cb7e0d01-8929-47e0-a1c4-b1c7ea22363d"/>
vng (Migrated from github.com) reviewed 2024-07-14 19:12:22 +00:00
biodranik (Migrated from github.com) requested changes 2024-10-16 18:51:00 +00:00
biodranik (Migrated from github.com) commented 2024-10-16 18:18:02 +00:00

What was wrong with nullptr? It requires less cpu cycles.

What was wrong with nullptr? It requires less cpu cycles.
biodranik (Migrated from github.com) commented 2024-10-16 18:18:28 +00:00
  auto const downloadedImagePath = editor::ProfilePicture::download(prefs.m_imageUrl);
```suggestion auto const downloadedImagePath = editor::ProfilePicture::download(prefs.m_imageUrl); ```
@ -78,0 +83,4 @@
String token = "";
if (internet_allowed)
token = getAuthToken(context);
biodranik (Migrated from github.com) commented 2024-10-16 18:21:47 +00:00
  1. We don't use python_variable_naming, but camelCase.
  2. Introducing a separate getCachedUsername() method would be clearer.
1. We don't use python_variable_naming, but camelCase. 2. Introducing a separate getCachedUsername() method would be clearer.
biodranik (Migrated from github.com) commented 2024-10-16 18:24:02 +00:00

codestyle

    if (internet_allowed)
    {
codestyle ```suggestion if (internet_allowed) { ```
biodranik (Migrated from github.com) commented 2024-10-16 18:24:16 +00:00

codestyle

      if (editsCount > 0)
codestyle ```suggestion if (editsCount > 0) ```
@ -85,3 +80,4 @@
else
mProfileImage.setImageResource(R.drawable.profile_generic);
});
biodranik (Migrated from github.com) commented 2024-10-16 18:24:53 +00:00
    final View userInfoBlock = view.findViewById(R.id.block_user_info);
```suggestion final View userInfoBlock = view.findViewById(R.id.block_user_info); ```
biodranik (Migrated from github.com) commented 2024-10-16 18:50:00 +00:00

Looks like requireContext() result can be cached in the variable.

Looks like requireContext() result can be cached in the variable.
@ -51,3 +51,3 @@
android:importantForAccessibility="no"
app:srcCompat="@drawable/profile_generic" />
tools:src="@drawable/profile_generic" />
<LinearLayout
biodranik (Migrated from github.com) commented 2024-10-16 18:48:37 +00:00

Why is this change needed?

Why is this change needed?
@ -78,6 +78,7 @@
#define WORLD_COASTS_FILE_NAME "WorldCoasts"
#define SETTINGS_FILE_NAME "settings.ini"
#define PROFILE_PICTURE_FILENAME "profile_picture"
biodranik (Migrated from github.com) commented 2024-10-16 18:48:09 +00:00

Why it should be in defines.hpp?

Why it should be in defines.hpp?
@ -0,0 +10,4 @@
// Example hash: 473f0190a9e741bb16565db85fe650d7b0a9ee69
namespace editor
{
std::string ProfilePicture::download(const std::string& pic_url)
biodranik (Migrated from github.com) commented 2024-10-16 18:41:50 +00:00

Is there any generic "download file" api already somewhere? If no, it would be better to add a generic "download a file" API, with an optional hint of expected MIME file type if necessary, so it can be reused to download anything.

Is there any generic "download file" api already somewhere? If no, it would be better to add a generic "download a file" API, with an optional hint of expected MIME file type if necessary, so it can be reused to download anything.
@ -0,0 +17,4 @@
if(!pic_url.empty()) // If internet available
{
if(pic_url != "none")
biodranik (Migrated from github.com) commented 2024-10-16 18:47:49 +00:00

Using a lot of logic here looks cumbersome, it may be cleaner to split it. Maybe:

  • Upper level getter retrieves an image
    -- if there's a cached image, then it is returned
    -- if no cached image, it is downloaded
    --- if download fails, it will be repeated next time, a stub image is used.
    --- if user doesn't have a picture, this state is cached and generic image is used.
    --- image is cached and returned
Using a lot of logic here looks cumbersome, it may be cleaner to split it. Maybe: - Upper level getter retrieves an image -- if there's a cached image, then it is returned -- if no cached image, it is downloaded --- if download fails, it will be repeated next time, a stub image is used. --- if user doesn't have a picture, this state is cached and generic image is used. --- image is cached and returned
@ -0,0 +41,4 @@
{
// User has removed profile picture online
settings::StringStorage::Instance().DeleteKeyAndValue("ProfilePictureHash");
std::filesystem::remove(image_path);
biodranik (Migrated from github.com) commented 2024-10-16 18:43:20 +00:00

Is std::filesystem available in the iOS?

Is std::filesystem available in the iOS?
@ -0,0 +4,4 @@
namespace editor
{
class ProfilePicture
biodranik (Migrated from github.com) commented 2024-10-16 18:39:24 +00:00

Can UserPreferences class be used instead of introducing this wrapper?

Can UserPreferences class be used instead of introducing this wrapper?
@ -0,0 +9,4 @@
public:
// Returns downloaded image or cached image if one exists.
// if not, an empty string is returned.
static std::string download(const std::string& pic_url);
biodranik (Migrated from github.com) commented 2024-10-16 18:40:12 +00:00

There should be a cpp code style doc.

    static std::string download(std::string const & pic_url);
There should be a cpp code style doc. ```suggestion static std::string download(std::string const & pic_url); ```
@ -170,2 +170,3 @@
pref.m_imageUrl = user.child("img").attribute("href").as_string();
pref.m_changesets = user.child("changesets").attribute("count").as_uint();
// Return "none if profile has no 'img', to differentiate from no network
pref.m_imageUrl = user.child("img")? user.child("img").attribute("href").as_string() : "none";
biodranik (Migrated from github.com) commented 2024-10-16 18:37:58 +00:00

This function should throw if there's a network error. Is "none" here really needed? Can an empty string be used instead?

This function should throw if there's a network error. Is "none" here really needed? Can an empty string be used instead?
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#8701
No description provided.