1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/wallpaper_handlers/google_photos_wallpaper_handlers.h"
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "ash/wallpaper/wallpaper_utils/wallpaper_language.h"
#include "ash/webui/personalization_app/mojom/personalization_app.mojom.h"
#include "base/functional/bind.h"
#include "base/i18n/time_formatting.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string_number_conversions.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chrome/browser/ash/wallpaper_handlers/wallpaper_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "components/signin/public/identity_manager/access_token_info.h"
#include "components/signin/public/identity_manager/primary_account_access_token_fetcher.h"
#include "content/public/browser/browser_thread.h"
#include "google_apis/gaia/gaia_constants.h"
#include "google_apis/gaia/google_service_auth_error.h"
#include "net/base/load_flags.h"
#include "net/base/url_util.h"
#include "net/http/http_status_code.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "services/data_decoder/public/cpp/data_decoder.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/public/cpp/simple_url_loader.h"
#include "services/network/public/mojom/url_response_head.mojom.h"
#include "wallpaper_handlers_metric_utils.h"
namespace wallpaper_handlers {
namespace {
// The URL to download an album's photos from a user's Google Photos library.
constexpr char kGooglePhotosAlbumUrl[] =
"https://photosfirstparty-pa.googleapis.com/v1/chromeos/"
"collectionById:read";
// The collectionById endpoint accepts a "return_order" parameter that
// determines what order the photos are returned in, using these values.
constexpr char kGooglePhotosAlbumCollectionOrder[] = "1";
constexpr char kGooglePhotosAlbumShuffledOrder[] = "2";
// The URL to download the owned albums in a user's Google Photos library.
constexpr char kGooglePhotosAlbumsUrl[] =
"https://photosfirstparty-pa.googleapis.com/v1/chromeos/"
"userCollections:read";
// The URL to download the shared albums in a user's Google Photos library.
constexpr char kGooglePhotosSharedAlbumsUrl[] =
"https://photosfirstparty-pa.googleapis.com/v1/chromeos/"
"sharedCollections:read";
constexpr net::NetworkTrafficAnnotationTag
kGooglePhotosAlbumsTrafficAnnotation =
net::DefineNetworkTrafficAnnotation("wallpaper_google_photos_albums",
R"(
semantics {
sender: "ChromeOS Wallpaper Picker"
description:
"Within the Google Photos tile, the ChromeOS Wallpaper Picker "
"shows the user the Google Photos albums they have created and "
"the Google Photos albums they shared with other users so that "
"they can pick a photo or turn on the daily refresh feature from "
"within an album. This query fetches those albums."
trigger: "When the user accesses the Google Photos tile within the "
"ChromeOS Wallpaper Picker app."
data: "OAuth credentials for the user's Google Photos account."
destination: GOOGLE_OWNED_SERVICE
internal {
contacts {
email: "cros-p13n-eng@google.com"
}
}
user_data {
type: ACCESS_TOKEN
}
last_reviewed: "2025-02-07"
}
policy {
cookies_allowed: NO
setting: "N/A"
policy_exception_justification:
"Not implemented, considered not necessary."
})");
// The URL to download whether the user is allowed to access Google Photos data.
constexpr char kGooglePhotosEnabledUrl[] =
"https://photosfirstparty-pa.googleapis.com/v1/chromeos/userenabled:read";
constexpr net::NetworkTrafficAnnotationTag
kGooglePhotosEnabledTrafficAnnotation =
net::DefineNetworkTrafficAnnotation("wallpaper_google_photos_enabled",
R"(
semantics {
sender: "ChromeOS Wallpaper Picker"
description:
"The ChromeOS Wallpaper Picker displays a tile to view and pick from "
"a user's Google Photos library. This tile should not display any "
"user data if there is an enterprise setting preventing the user "
"from accessing Google Photos."
trigger: "When the user opens the ChromeOS Wallpaper Picker app."
data: "OAuth credentials for the user's Google Photos account."
destination: GOOGLE_OWNED_SERVICE
internal {
contacts {
email: "cros-p13n-eng@google.com"
}
}
user_data {
type: ACCESS_TOKEN
}
last_reviewed: "2025-02-07"
}
policy {
cookies_allowed: NO
setting: "N/A"
policy_exception_justification:
"Not implemented, considered not necessary."
})");
// The URL to download a photo from a user's Google Photos library.
constexpr char kGooglePhotosPhotoUrl[] =
"https://photosfirstparty-pa.googleapis.com/v1/chromeos/itemById:read";
// The URL to download all visible photos in a user's Google Photos library.
constexpr char kGooglePhotosPhotosUrl[] =
"https://photosfirstparty-pa.googleapis.com/v1/chromeos/userItems:read";
constexpr net::NetworkTrafficAnnotationTag
kGooglePhotosPhotosTrafficAnnotation =
net::DefineNetworkTrafficAnnotation("wallpaper_google_photos_photos",
R"(
semantics {
sender: "ChromeOS Wallpaper Picker"
description:
"Within the Google Photos tile, the ChromeOS Wallpaper Picker "
"shows the user all the visible photos in their Google Photos "
"library so that they can pick one as their wallpaper. "
"Alternatively, the user can select an album within the Google "
"Photos tile to pick a photo from there. This query fetches photos "
"from one of those sources. This query might also fetch a single "
"photo that has already been designated as a device's wallpaper."
trigger: "When the user accesses the Google Photos tile or selects a "
"wallpaper photo within the ChromeOS Wallpaper Picker app, or "
"when a device is notified of a new Google Photos wallpaper "
"via cross-device sync."
data: "OAuth credentials for the user's Google Photos account."
destination: GOOGLE_OWNED_SERVICE
internal {
contacts {
email: "cros-p13n-eng@google.com"
}
}
user_data {
type: ACCESS_TOKEN
}
last_reviewed: "2025-02-07"
}
policy {
cookies_allowed: NO
setting: "N/A"
policy_exception_justification:
"Not implemented, considered not necessary."
})");
// Attempts to parse `photo` as a `GooglePhotosPhoto`. If successful, adds the
// parsed photo to `parsed_response`.
void AddGooglePhotosPhotoIfValid(
ash::personalization_app::mojom::FetchGooglePhotosPhotosResponsePtr&
parsed_response,
const base::Value::Dict* photo) {
if (!photo) {
return;
}
const auto* id = photo->FindStringByDottedPath("itemId.mediaKey");
const auto* dedup_key = photo->FindString("dedupKey");
const auto* filename = photo->FindString("filename");
const auto* timestamp_string = photo->FindString("creationTimestamp");
const auto* url = photo->FindStringByDottedPath("photo.servingUrl");
const auto* location_list =
photo->FindListByDottedPath("locationFeature.name");
const auto* location_wrapper = location_list && !location_list->empty()
? location_list->front().GetIfDict()
: nullptr;
const auto* location =
location_wrapper ? location_wrapper->FindString("text") : nullptr;
base::Time timestamp;
if (!id || !filename || !timestamp_string ||
!base::Time::FromUTCString(timestamp_string->c_str(), ×tamp) ||
!url) {
LOG(ERROR) << "Failed to parse item in Google Photos photos response.";
return;
}
std::string name = base::FilePath(*filename).RemoveExtension().value();
std::u16string date = base::TimeFormatFriendlyDate(timestamp);
// A photo from Google Photos may or may not have a location set.
parsed_response->photos->push_back(
ash::personalization_app::mojom::GooglePhotosPhoto::New(
*id, dedup_key ? std::make_optional(*dedup_key) : std::nullopt, name,
date, GURL(*url),
location ? std::make_optional(*location) : std::nullopt));
}
// Returns the `GooglePhotosApi` associated with the specified `url`.
std::optional<GooglePhotosApi> ToGooglePhotosApi(const GURL& url) {
const std::string& spec = url.spec();
if (base::StartsWith(spec, kGooglePhotosEnabledUrl)) {
return GooglePhotosApi::kGetEnabled;
}
if (base::StartsWith(spec, kGooglePhotosAlbumUrl)) {
return GooglePhotosApi::kGetAlbum;
}
if (base::StartsWith(spec, kGooglePhotosAlbumsUrl)) {
return GooglePhotosApi::kGetAlbums;
}
if (base::StartsWith(spec, kGooglePhotosSharedAlbumsUrl)) {
return GooglePhotosApi::kGetSharedAlbums;
}
if (base::StartsWith(spec, kGooglePhotosPhotoUrl)) {
return GooglePhotosApi::kGetPhoto;
}
if (base::StartsWith(spec, kGooglePhotosPhotosUrl)) {
return GooglePhotosApi::kGetPhotos;
}
return std::nullopt;
}
} // namespace
template <typename T>
GooglePhotosFetcher<T>::GooglePhotosFetcher(
Profile* profile,
const net::NetworkTrafficAnnotationTag& traffic_annotation)
: profile_(profile),
identity_manager_(IdentityManagerFactory::GetForProfile(profile)),
traffic_annotation_(traffic_annotation) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(profile_);
DCHECK(identity_manager_);
identity_manager_observation_.Observe(identity_manager_.get());
}
template <typename T>
GooglePhotosFetcher<T>::~GooglePhotosFetcher() = default;
template <typename T>
void GooglePhotosFetcher<T>::AddRequestAndStartIfNecessary(
const GURL& service_url,
ClientCallback callback) {
pending_client_callbacks_[service_url].push_back(std::move(callback));
if (pending_client_callbacks_[service_url].size() > 1) {
return;
}
signin::ScopeSet scopes;
scopes.insert(GaiaConstants::kPhotosModuleOAuth2Scope);
auto fetcher = std::make_unique<signin::PrimaryAccountAccessTokenFetcher>(
"wallpaper_google_photos_fetcher", identity_manager_, scopes,
signin::PrimaryAccountAccessTokenFetcher::Mode::kWaitUntilAvailable,
signin::ConsentLevel::kSignin);
auto* fetcher_ptr = fetcher.get();
fetcher_ptr->Start(base::BindOnce(
&GooglePhotosFetcher::OnTokenReceived, weak_factory_.GetWeakPtr(),
std::move(fetcher), service_url, /*start_time=*/base::TimeTicks::Now()));
}
template <typename T>
std::optional<base::Value> GooglePhotosFetcher<T>::CreateErrorResponse(
int error_code) {
return std::nullopt;
}
template <typename T>
void GooglePhotosFetcher<T>::OnTokenReceived(
std::unique_ptr<signin::PrimaryAccountAccessTokenFetcher> fetcher,
const GURL& service_url,
base::TimeTicks start_time,
GoogleServiceAuthError error,
signin::AccessTokenInfo token_info) {
if (error.state() != GoogleServiceAuthError::NONE) {
LOG(ERROR) << "Failed to authenticate Google Photos API request to "
<< service_url.spec() << ". Error message: " << error.ToString();
OnResponseReady(service_url, start_time, std::nullopt);
return;
}
auto resource_request = std::make_unique<network::ResourceRequest>();
resource_request->method = "GET";
// By default, the server will not serialize repeated proto fields if they are
// empty. This makes it impossible for us to tell if the server has broken
// compatibility with the client or just has nothing to return. Append a
// special parameter to request that the server always serializes repeated
// proto fields and any other fields which might otherwise be omitted by
// default (https://cloud.google.com/apis/docs/system-parameters#definitions).
resource_request->url = net::AppendOrReplaceQueryParameter(
service_url, "$outputDefaults", "true");
// Cookies should not be allowed.
resource_request->credentials_mode = network::mojom::CredentialsMode::kOmit;
resource_request->load_flags = net::LOAD_DISABLE_CACHE;
resource_request->headers.SetHeader(net::HttpRequestHeaders::kContentType,
"application/json");
resource_request->headers.SetHeader(net::HttpRequestHeaders::kAuthorization,
"Bearer " + token_info.token);
auto language_tag = ash::GetLanguageTag();
if (!language_tag.empty()) {
resource_request->headers.SetHeader(
net::HttpRequestHeaders::kAcceptLanguage, language_tag);
}
auto loader = network::SimpleURLLoader::Create(std::move(resource_request),
traffic_annotation_);
auto* loader_ptr = loader.get();
loader_ptr->DownloadToStringOfUnboundedSizeUntilCrashAndDie(
profile_->GetURLLoaderFactory().get(),
base::BindOnce(&GooglePhotosFetcher::OnJsonReceived,
weak_factory_.GetWeakPtr(), std::move(loader), service_url,
start_time));
}
template <typename T>
void GooglePhotosFetcher<T>::OnJsonReceived(
std::unique_ptr<network::SimpleURLLoader> loader,
const GURL& service_url,
base::TimeTicks start_time,
std::unique_ptr<std::string> response_body) {
const int net_error = loader->NetError();
if (net_error != net::OK || !response_body) {
LOG(ERROR) << "Google Photos API request to " << service_url.spec()
<< " failed.";
auto* response_info = loader->ResponseInfo();
std::optional<base::Value> error_response;
if (response_info && response_info->headers) {
LOG(ERROR) << "HTTP response code: "
<< response_info->headers->response_code();
error_response =
CreateErrorResponse(response_info->headers->response_code());
}
OnResponseReady(service_url, start_time, std::move(error_response));
return;
}
data_decoder::DataDecoder::ParseJsonIsolated(
*response_body,
base::BindOnce(
[](const GURL& service_url,
data_decoder::DataDecoder::ValueOrError result)
-> std::optional<base::Value> {
if (!result.has_value()) {
LOG(ERROR) << "Failed to parse JSON response from Google Photos "
"API request to "
<< service_url.spec()
<< ". Error message: " << result.error();
return std::nullopt;
}
return std::move(*result);
},
service_url)
.Then(base::BindOnce(&GooglePhotosFetcher::OnResponseReady,
weak_factory_.GetWeakPtr(), service_url,
start_time)));
}
template <typename T>
void GooglePhotosFetcher<T>::OnResponseReady(
const GURL& service_url,
base::TimeTicks start_time,
std::optional<base::Value> response) {
auto result =
ParseResponse(response.has_value() ? response->GetIfDict() : nullptr);
if (auto api = ToGooglePhotosApi(service_url)) {
RecordGooglePhotosApiResponseParsed(
api.value(), /*response_time=*/base::TimeTicks::Now() - start_time,
GetResultCount(result));
} else {
NOTREACHED()
<< "Google Photos API request made to an unrecognized endpoint: "
<< service_url.spec();
}
for (auto& callback : pending_client_callbacks_[service_url]) {
std::move(callback).Run(mojo::Clone(result));
}
pending_client_callbacks_.erase(service_url);
}
template <typename T>
bool GooglePhotosFetcher<T>::IsGooglePhotosIntegrationPolicyEnabled() const {
PrefService* pref_service = profile_->GetPrefs();
return pref_service->GetBoolean(
prefs::kWallpaperGooglePhotosIntegrationEnabled);
}
GooglePhotosAlbumsFetcher::GooglePhotosAlbumsFetcher(Profile* profile)
: GooglePhotosFetcher(profile, kGooglePhotosAlbumsTrafficAnnotation) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
}
GooglePhotosAlbumsFetcher::~GooglePhotosAlbumsFetcher() {
// Records Ash.Wallpaper.GooglePhotos.Api.GetAlbums.RefreshCount metric
// at the end of the session.
RecordGooglePhotosApiRefreshCount(GooglePhotosApi::kGetAlbums,
albums_api_refresh_counter_);
}
void GooglePhotosAlbumsFetcher::AddRequestAndStartIfNecessary(
const std::optional<std::string>& resume_token,
base::OnceCallback<void(GooglePhotosAlbumsCbkArgs)> callback) {
GURL service_url = GURL(kGooglePhotosAlbumsUrl);
if (resume_token.has_value()) {
service_url = net::AppendQueryParameter(service_url, "resume_token",
resume_token.value());
// Increase the refresh counter every time the user scrolls down to the
// bottom of the page to fetch more albums with a valid refresh token.
albums_api_refresh_counter_++;
}
GooglePhotosFetcher::AddRequestAndStartIfNecessary(service_url,
std::move(callback));
}
GooglePhotosAlbumsCbkArgs GooglePhotosAlbumsFetcher::ParseResponse(
const base::Value::Dict* response) {
auto parsed_response =
ash::personalization_app::mojom::FetchGooglePhotosAlbumsResponse::New();
if (!response) {
return parsed_response;
}
const auto* resume_token = response->FindString("resumeToken");
if (resume_token && !resume_token->empty()) {
parsed_response->resume_token = *resume_token;
}
const auto* response_albums = response->FindList("collection");
if (!response_albums) {
return parsed_response;
}
parsed_response->albums =
std::vector<ash::personalization_app::mojom::GooglePhotosAlbumPtr>();
for (const auto& untyped_response_album : *response_albums) {
DCHECK(untyped_response_album.is_dict());
const auto& response_album = untyped_response_album.GetDict();
const auto* album_id =
response_album.FindStringByDottedPath("collectionId.mediaKey");
const auto* title = response_album.FindString("name");
const auto* num_photos_string = response_album.FindString("numPhotos");
const auto* cover_photo_url =
response_album.FindString("coverItemServingUrl");
const auto* timestamp_string =
response_album.FindString("latestModificationTimestamp");
int64_t num_photos;
base::Time timestamp;
if (!album_id || !title || !num_photos_string ||
!base::StringToInt64(*num_photos_string, &num_photos) ||
num_photos < 1 || !cover_photo_url || !timestamp_string ||
!base::Time::FromUTCString(timestamp_string->c_str(), ×tamp)) {
LOG(ERROR) << "Failed to parse item in Google Photos albums response.";
continue;
}
parsed_response->albums->push_back(
ash::personalization_app::mojom::GooglePhotosAlbum::New(
*album_id, *title, base::saturated_cast<int>(num_photos),
GURL(*cover_photo_url), timestamp, /*is_shared=*/false));
}
return parsed_response;
}
std::optional<size_t> GooglePhotosAlbumsFetcher::GetResultCount(
const GooglePhotosAlbumsCbkArgs& result) {
return result && result->albums ? std::make_optional(result->albums->size())
: std::nullopt;
}
GooglePhotosSharedAlbumsFetcher::GooglePhotosSharedAlbumsFetcher(
Profile* profile)
: GooglePhotosFetcher(profile, kGooglePhotosAlbumsTrafficAnnotation) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
}
GooglePhotosSharedAlbumsFetcher::~GooglePhotosSharedAlbumsFetcher() {
// Records Ash.Wallpaper.GooglePhotos.Api.GetSharedAlbums.RefreshCount metric
// at the end of the session.
RecordGooglePhotosApiRefreshCount(GooglePhotosApi::kGetSharedAlbums,
shared_albums_api_refresh_counter_);
}
void GooglePhotosSharedAlbumsFetcher::AddRequestAndStartIfNecessary(
const std::optional<std::string>& resume_token,
base::OnceCallback<void(GooglePhotosAlbumsCbkArgs)> callback) {
if (!IsGooglePhotosIntegrationPolicyEnabled()) {
DVLOG(1) << __FUNCTION__
<< ": Skipping due to disabled policy: "
"WallpaperGooglePhotosIntegrationEnabled.";
std::move(callback).Run(ash::personalization_app::mojom::
FetchGooglePhotosAlbumsResponse::New());
return;
}
GURL service_url = GURL(kGooglePhotosSharedAlbumsUrl);
if (resume_token.has_value()) {
service_url = net::AppendQueryParameter(service_url, "resume_token",
resume_token.value());
// Increase the refresh counter every time the user scrolls down to the
// bottom of the page to fetch more shared albums with a valid refresh
// token.
shared_albums_api_refresh_counter_++;
}
GooglePhotosFetcher::AddRequestAndStartIfNecessary(service_url,
std::move(callback));
}
GooglePhotosAlbumsCbkArgs GooglePhotosSharedAlbumsFetcher::ParseResponse(
const base::Value::Dict* response) {
auto parsed_response =
ash::personalization_app::mojom::FetchGooglePhotosAlbumsResponse::New();
if (!response) {
return parsed_response;
}
const auto* resume_token = response->FindString("resumeToken");
if (resume_token && !resume_token->empty()) {
parsed_response->resume_token = *resume_token;
}
const auto* response_albums = response->FindList("collection");
if (!response_albums) {
return parsed_response;
}
parsed_response->albums =
std::vector<ash::personalization_app::mojom::GooglePhotosAlbumPtr>();
for (const auto& untyped_response_album : *response_albums) {
DCHECK(untyped_response_album.is_dict());
const auto& response_album = untyped_response_album.GetDict();
const auto* album_id =
response_album.FindStringByDottedPath("collectionId.mediaKey");
const auto* title = response_album.FindString("name");
const auto* cover_photo_url =
response_album.FindString("coverItemServingUrl");
const auto* timestamp_string =
response_album.FindString("latestModificationTimestamp");
base::Time timestamp;
if (!album_id || !title || !cover_photo_url || !timestamp_string ||
!base::Time::FromUTCString(timestamp_string->c_str(), ×tamp)) {
LOG(ERROR) << "Failed to parse item in Google Photos albums response.";
continue;
}
// `num_image` is always 0 for shared albums.
parsed_response->albums->push_back(
ash::personalization_app::mojom::GooglePhotosAlbum::New(
*album_id, *title, /*num_image=*/0, GURL(*cover_photo_url),
timestamp, /*is_shared=*/true));
}
return parsed_response;
}
std::optional<size_t> GooglePhotosSharedAlbumsFetcher::GetResultCount(
const GooglePhotosAlbumsCbkArgs& result) {
return result && result->albums ? std::make_optional(result->albums->size())
: std::nullopt;
}
GooglePhotosEnabledFetcher::GooglePhotosEnabledFetcher(Profile* profile)
: GooglePhotosFetcher(profile, kGooglePhotosEnabledTrafficAnnotation) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
}
GooglePhotosEnabledFetcher::~GooglePhotosEnabledFetcher() = default;
void GooglePhotosEnabledFetcher::AddRequestAndStartIfNecessary(
base::OnceCallback<void(GooglePhotosEnablementState)> callback) {
if (!IsGooglePhotosIntegrationPolicyEnabled()) {
DVLOG(1) << __FUNCTION__
<< ": Skipping due to disabled policy: "
"WallpaperGooglePhotosIntegrationEnabled.";
std::move(callback).Run(GooglePhotosEnablementState::kDisabled);
return;
}
GooglePhotosFetcher::AddRequestAndStartIfNecessary(
GURL(kGooglePhotosEnabledUrl), std::move(callback));
}
GooglePhotosEnablementState GooglePhotosEnabledFetcher::ParseResponse(
const base::Value::Dict* response) {
if (!response) {
return GooglePhotosEnablementState::kError;
}
const auto* state = response->FindStringByDottedPath("status.userState");
if (!state) {
LOG(ERROR) << "Failed to parse Google Photos enabled response.";
return GooglePhotosEnablementState::kError;
}
return *state == "USER_PERMITTED" ? GooglePhotosEnablementState::kEnabled
: *state == "USER_DASHER_DISABLED"
? GooglePhotosEnablementState::kDisabled
: GooglePhotosEnablementState::kError;
}
std::optional<size_t> GooglePhotosEnabledFetcher::GetResultCount(
const GooglePhotosEnablementState& result) {
return result != GooglePhotosEnablementState::kError ? std::make_optional(1u)
: std::nullopt;
}
GooglePhotosPhotosFetcher::GooglePhotosPhotosFetcher(Profile* profile)
: GooglePhotosFetcher(profile, kGooglePhotosPhotosTrafficAnnotation) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
}
GooglePhotosPhotosFetcher::~GooglePhotosPhotosFetcher() {
// Records Ash.Wallpaper.GooglePhotos.Api.GetPhotos.RefreshCount metric
// at the end of the session.
RecordGooglePhotosApiRefreshCount(GooglePhotosApi::kGetPhotos,
photos_api_refresh_counter_);
}
void GooglePhotosPhotosFetcher::AddRequestAndStartIfNecessary(
const std::optional<std::string>& item_id,
const std::optional<std::string>& album_id,
const std::optional<std::string>& resume_token,
bool shuffle,
base::OnceCallback<void(GooglePhotosPhotosCbkArgs)> callback) {
if (!IsGooglePhotosIntegrationPolicyEnabled()) {
DVLOG(1) << __FUNCTION__
<< ": Skipping due to disabled policy: "
"WallpaperGooglePhotosIntegrationEnabled.";
auto parsed_response =
ash::personalization_app::mojom::FetchGooglePhotosPhotosResponse::New();
parsed_response->photos =
std::vector<ash::personalization_app::mojom::GooglePhotosPhotoPtr>();
std::move(callback).Run(mojo::Clone(parsed_response));
return;
}
GURL service_url;
if (item_id.has_value()) {
DCHECK(!album_id.has_value() && !resume_token.has_value() && !shuffle);
service_url = net::AppendQueryParameter(GURL(kGooglePhotosPhotoUrl),
"item_id", item_id.value());
} else if (album_id.has_value()) {
service_url = net::AppendQueryParameter(GURL(kGooglePhotosAlbumUrl),
"collection_id", album_id.value());
service_url =
net::AppendQueryParameter(service_url, "return_order",
shuffle ? kGooglePhotosAlbumShuffledOrder
: kGooglePhotosAlbumCollectionOrder);
} else {
DCHECK(!shuffle);
service_url = GURL(kGooglePhotosPhotosUrl);
}
if (resume_token.has_value()) {
service_url = net::AppendQueryParameter(service_url, "resume_token",
resume_token.value());
// Increase the refresh counter every time the user scrolls down to the
// bottom of the page to fetch more photos with a valid refresh token.
photos_api_refresh_counter_++;
}
GooglePhotosFetcher::AddRequestAndStartIfNecessary(service_url,
std::move(callback));
}
std::optional<base::Value> GooglePhotosPhotosFetcher::CreateErrorResponse(
int error_code) {
// If the server gives us 404, that means the request succeeded, but no
// photos with the given attributes exist. We return an empty list of photos
// to communicate this back to the caller.
if (error_code == net::HTTP_NOT_FOUND) {
auto empty_list_response =
base::Value::Dict().Set("item", base::Value::List());
return base::Value(std::move(empty_list_response));
}
return std::nullopt;
}
GooglePhotosPhotosCbkArgs GooglePhotosPhotosFetcher::ParseResponse(
const base::Value::Dict* response) {
auto parsed_response =
ash::personalization_app::mojom::FetchGooglePhotosPhotosResponse::New();
if (!response) {
return parsed_response;
}
const auto* resume_token = response->FindString("resumeToken");
if (resume_token && !resume_token->empty()) {
parsed_response->resume_token = *resume_token;
}
// The `base::Value` at key "item" can be a single photos or a list of photos.
const auto* photo_or_photos = response->Find("item");
if (!photo_or_photos) {
return parsed_response;
}
parsed_response->photos =
std::vector<ash::personalization_app::mojom::GooglePhotosPhotoPtr>();
if (auto* photos = photo_or_photos->GetIfList()) {
for (const auto& photo : *photos) {
AddGooglePhotosPhotoIfValid(parsed_response, photo.GetIfDict());
}
} else if (auto* photo = photo_or_photos->GetIfDict()) {
AddGooglePhotosPhotoIfValid(parsed_response, photo);
}
return parsed_response;
}
std::optional<size_t> GooglePhotosPhotosFetcher::GetResultCount(
const GooglePhotosPhotosCbkArgs& result) {
return result && result->photos ? std::make_optional(result->photos->size())
: std::nullopt;
}
} // namespace wallpaper_handlers
|