blob: 672844844e83d0db9bf1d7b122bab77a22ee17c3 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sharing_hub/sharing_hub_model.h"
#include "base/base64.h"
#include "base/logging.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/post_task.h"
#include "base/task/thread_pool.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/media/router/media_router_feature.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/send_tab_to_self/send_tab_to_self_util.h"
#include "chrome/browser/share/core/share_targets.h"
#include "chrome/browser/share/proto/share_target.pb.h"
#include "chrome/browser/sharing_hub/sharing_hub_features.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/browser_navigator_params.h"
#include "chrome/browser/ui/qrcode_generator/qrcode_generator_bubble_controller.h"
#include "chrome/grit/generated_resources.h"
#include "components/vector_icons/vector_icons.h"
#include "content/public/browser/browser_context.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/image/image.h"
#include "url/gurl.h"
namespace sharing_hub {
namespace {
gfx::Image DecodeIcon(std::string str) {
std::string icon_str;
base::Base64Decode(str, &icon_str);
return gfx::Image::CreateFrom1xPNGBytes(
reinterpret_cast<const unsigned char*>(icon_str.data()), icon_str.size());
}
const char kUrlReplace[] = "%(escaped_url)";
const char kTitleReplace[] = "%(escaped_title)";
} // namespace
SharingHubModel::SharingHubModel(content::BrowserContext* context)
: context_(context) {
PopulateFirstPartyActions();
sharing::ShareTargets::GetInstance()->AddObserver(this);
}
SharingHubModel::~SharingHubModel() {
sharing::ShareTargets::GetInstance()->RemoveObserver(this);
}
void SharingHubModel::GetFirstPartyActionList(
content::WebContents* web_contents,
std::vector<SharingHubAction>* list) {
for (const auto& action : first_party_action_list_) {
if (action.command_id == IDC_SEND_TAB_TO_SELF) {
if (DoShowSendTabToSelfForWebContents(web_contents)) {
list->push_back(action);
}
} else if (action.command_id == IDC_QRCODE_GENERATOR) {
if (qrcode_generator::QRCodeGeneratorBubbleController::
IsGeneratorAvailable(web_contents->GetLastCommittedURL())) {
list->push_back(action);
}
} else {
list->push_back(action);
}
}
}
void SharingHubModel::GetThirdPartyActionList(
content::WebContents* web_contents,
std::vector<SharingHubAction>* list) {
for (const auto& action : third_party_action_list_) {
list->push_back(action);
}
}
void SharingHubModel::ExecuteThirdPartyAction(Profile* profile,
int id,
const std::string& url,
const std::u16string& title) {
auto url_it = third_party_action_urls_.find(id);
if (url_it == third_party_action_urls_.end())
return;
std::string url_found = url_it->second.spec();
size_t location_shared_url = url_found.find(kUrlReplace);
if (location_shared_url != std::string::npos) {
url_found.replace(location_shared_url, strlen(kUrlReplace), url);
} else {
LOG(ERROR) << "Third Party Share API did not contain URL param.";
}
size_t location_title = url_found.find(kTitleReplace);
if (location_title != std::string::npos) {
std::string title_utf8 = base::UTF16ToUTF8(title);
url_found.replace(location_title, strlen(kTitleReplace), title_utf8);
}
// TODO (crbug.com/1229421) support descriptions in third party targets.
NavigateParams params(profile, GURL(url_found), ui::PAGE_TRANSITION_LINK);
params.disposition = WindowOpenDisposition::NEW_FOREGROUND_TAB;
params.tabstrip_add_types = TabStripModel::ADD_ACTIVE;
Navigate(&params);
}
void SharingHubModel::PopulateFirstPartyActions() {
first_party_action_list_.push_back(
{IDC_COPY_URL, l10n_util::GetStringUTF16(IDS_SHARING_HUB_COPY_LINK_LABEL),
kCopyIcon, true, gfx::ImageSkia()});
if (DesktopScreenshotsFeatureEnabled()) {
first_party_action_list_.push_back(
{IDC_SHARING_HUB_SCREENSHOT,
l10n_util::GetStringUTF16(IDS_SHARING_HUB_SCREENSHOT_LABEL),
kSharingHubScreenshotIcon, true});
}
first_party_action_list_.push_back(
{IDC_SEND_TAB_TO_SELF,
l10n_util::GetStringUTF16(IDS_CONTEXT_MENU_SEND_TAB_TO_SELF),
kSendTabToSelfIcon, true, gfx::ImageSkia()});
first_party_action_list_.push_back(
{IDC_QRCODE_GENERATOR,
l10n_util::GetStringUTF16(IDS_OMNIBOX_QRCODE_GENERATOR_ICON_LABEL),
kQrcodeGeneratorIcon, true, gfx::ImageSkia()});
if (media_router::MediaRouterEnabled(context_)) {
first_party_action_list_.push_back(
{IDC_ROUTE_MEDIA,
l10n_util::GetStringUTF16(IDS_SHARING_HUB_MEDIA_ROUTER_LABEL),
vector_icons::kMediaRouterIdleIcon, true, gfx::ImageSkia()});
}
first_party_action_list_.push_back(
{IDC_SAVE_PAGE,
l10n_util::GetStringUTF16(IDS_SHARING_HUB_SAVE_PAGE_LABEL),
kSavePageIcon, true, gfx::ImageSkia()});
}
void SharingHubModel::PopulateThirdPartyActions() {
// Note: The third party action id must be greater than 0, otherwise the
// action will be disabled in the app menu.
int id = 1;
if (third_party_targets_) {
for (const sharing::mojom::ShareTarget& target :
third_party_targets_->targets()) {
if (!target.icon().empty()) {
gfx::Image icon = DecodeIcon(target.icon());
gfx::ImageSkia icon_skia = icon.AsImageSkia();
gfx::Image icon_2x = DecodeIcon(target.icon_2x());
if (!icon_2x.IsEmpty()) {
const SkBitmap* skBitmap_2x = icon_2x.ToSkBitmap();
gfx::ImageSkiaRep rep_2x(*skBitmap_2x, 2.0);
icon_skia.AddRepresentation(rep_2x);
}
gfx::Image icon_3x = DecodeIcon(target.icon_3x());
if (!icon_3x.IsEmpty()) {
const SkBitmap* skBitmap_3x = icon_3x.ToSkBitmap();
gfx::ImageSkiaRep rep_3x(*skBitmap_3x, 3.0);
icon_skia.AddRepresentation(rep_3x);
}
icon_skia.MakeThreadSafe();
third_party_action_list_.push_back(
{id, base::ASCIIToUTF16(target.nickname()),
vector_icons::kEmailIcon, false, std::move(icon_skia)});
} else {
third_party_action_list_.push_back(
{id, base::ASCIIToUTF16(target.nickname()),
vector_icons::kEmailIcon, false, gfx::ImageSkia()});
}
third_party_action_urls_[id] = GURL(target.url());
id++;
}
}
}
bool SharingHubModel::DoShowSendTabToSelfForWebContents(
content::WebContents* web_contents) {
return send_tab_to_self::ShouldOfferFeature(web_contents);
}
void SharingHubModel::OnShareTargetsUpdated(
std::unique_ptr<sharing::mojom::ShareTargets> share_target) {
third_party_targets_ = std::move(share_target);
PopulateThirdPartyActions();
}
} // namespace sharing_hub