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
|
// Copyright 2021 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/sharing/sms/sms_remote_fetcher_ui_controller.h"
#include <utility>
#include "base/functional/callback.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/sharing/sms/sms_remote_fetcher_metrics.h"
#include "chrome/browser/shell_integration.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/grit/generated_resources.h"
#include "components/sharing_message/sharing_constants.h"
#include "components/sharing_message/sharing_dialog.h"
#include "components/sharing_message/sharing_target_device_info.h"
#include "components/vector_icons/vector_icons.h"
#include "content/public/browser/sms_fetcher.h"
#include "content/public/browser/web_contents.h"
#include "third_party/blink/public/common/sms/webotp_constants.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/strings/grit/ui_strings.h"
using SharingMessage = components_sharing_message::SharingMessage;
// static
SmsRemoteFetcherUiController*
SmsRemoteFetcherUiController::GetOrCreateFromWebContents(
content::WebContents* web_contents) {
SmsRemoteFetcherUiController::CreateForWebContents(web_contents);
return SmsRemoteFetcherUiController::FromWebContents(web_contents);
}
SmsRemoteFetcherUiController::SmsRemoteFetcherUiController(
content::WebContents* web_contents)
: SharingUiController(web_contents),
content::WebContentsUserData<SmsRemoteFetcherUiController>(
*web_contents) {}
SmsRemoteFetcherUiController::~SmsRemoteFetcherUiController() = default;
PageActionIconType SmsRemoteFetcherUiController::GetIconType() {
return PageActionIconType::kSmsRemoteFetcher;
}
sync_pb::SharingSpecificFields::EnabledFeatures
SmsRemoteFetcherUiController::GetRequiredFeature() const {
return sync_pb::SharingSpecificFields::SMS_FETCHER;
}
void SmsRemoteFetcherUiController::DoUpdateApps(UpdateAppsCallback callback) {
std::move(callback).Run(std::vector<SharingApp>());
}
void SmsRemoteFetcherUiController::OnDeviceChosen(
const SharingTargetDeviceInfo& device) {}
void SmsRemoteFetcherUiController::OnAppChosen(const SharingApp& app) {}
std::u16string SmsRemoteFetcherUiController::GetContentType() const {
return l10n_util::GetStringUTF16(IDS_BROWSER_SHARING_CONTENT_TYPE_TEXT);
}
const gfx::VectorIcon& SmsRemoteFetcherUiController::GetVectorIcon() const {
return kSmartphoneRefreshIcon;
}
bool SmsRemoteFetcherUiController::ShouldShowLoadingIcon() const {
return false;
}
std::u16string
SmsRemoteFetcherUiController::GetTextForTooltipAndAccessibleName() const {
return std::u16string();
}
bool SmsRemoteFetcherUiController::HasAccessibleUi() const {
// crrev.com/c/2964059 stopped all UI from being shown and removed the
// accessible name. That did not remove the icon from the accessibility
// tree. To stop this UI from being shown to assistive technologies, we
// return false here.
return false;
}
SharingFeatureName SmsRemoteFetcherUiController::GetFeatureMetricsPrefix()
const {
return SharingFeatureName::kSmsRemoteFetcher;
}
void SmsRemoteFetcherUiController::OnSmsRemoteFetchResponse(
OnRemoteCallback callback,
SharingSendMessageResult result,
std::unique_ptr<components_sharing_message::ResponseMessage> response) {
if (result != SharingSendMessageResult::kSuccessful) {
std::move(callback).Run(std::nullopt, std::nullopt,
content::SmsFetchFailureType::kCrossDeviceFailure);
RecordWebOTPCrossDeviceFailure(
WebOTPCrossDeviceFailure::kSharingMessageFailure);
return;
}
DCHECK(response);
DCHECK(response->has_sms_fetch_response());
if (response->sms_fetch_response().has_failure_type()) {
std::move(callback).Run(std::nullopt, std::nullopt,
static_cast<content::SmsFetchFailureType>(
response->sms_fetch_response().failure_type()));
RecordWebOTPCrossDeviceFailure(
WebOTPCrossDeviceFailure::kAPIFailureOnAndroid);
return;
}
auto origin_strings = response->sms_fetch_response().origins();
std::vector<url::Origin> origin_list;
for (const std::string& origin_string : origin_strings)
origin_list.push_back(url::Origin::Create(GURL(origin_string)));
std::move(callback).Run(std::move(origin_list),
response->sms_fetch_response().one_time_code(),
std::nullopt);
RecordWebOTPCrossDeviceFailure(WebOTPCrossDeviceFailure::kNoFailure);
}
base::OnceClosure SmsRemoteFetcherUiController::FetchRemoteSms(
const std::vector<url::Origin>& origin_list,
OnRemoteCallback callback) {
SharingService::SharingDeviceList devices = GetDevices();
base::UmaHistogramExactLinear("Sharing.SmsFetcherAvailableDeviceCount",
devices.size(),
/*value_max=*/20);
if (devices.empty()) {
std::move(callback).Run(std::nullopt, std::nullopt,
content::SmsFetchFailureType::kCrossDeviceFailure);
RecordWebOTPCrossDeviceFailure(WebOTPCrossDeviceFailure::kNoRemoteDevice);
return base::NullCallback();
}
// Sends to the first device that has the capability enabled. User cannot
// select device because the site sends out the SMS asynchronously.
const SharingTargetDeviceInfo& device = devices.front();
last_device_name_ = device.client_name();
components_sharing_message::SharingMessage request;
for (const url::Origin& origin : origin_list)
request.mutable_sms_fetch_request()->add_origins(origin.Serialize());
return SendMessageToDevice(
device, blink::kWebOTPRequestTimeout, std::move(request),
base::BindOnce(&SmsRemoteFetcherUiController::OnSmsRemoteFetchResponse,
weak_ptr_factory_.GetWeakPtr(), std::move(callback)));
}
WEB_CONTENTS_USER_DATA_KEY_IMPL(SmsRemoteFetcherUiController);
|