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
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/ui/cocoa/share_menu_controller.h"
#include "base/apple/foundation_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback_forward.h"
#include "base/mac/mac_util.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/histogram_macros.h"
#include "base/run_loop.h"
#include "base/strings/escape.h"
#include "base/strings/sys_string_conversions.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/global_keyboard_shortcuts_mac.h"
#include "chrome/browser/platform_util.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#import "chrome/browser/ui/cocoa/accelerators_cocoa.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/grit/generated_resources.h"
#include "components/omnibox/browser/location_bar_model.h"
#include "net/base/apple/url_conversions.h"
#include "ui/base/accelerators/platform_accelerator_cocoa.h"
#include "ui/base/l10n/l10n_util_mac.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/mac/coordinate_conversion.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/snapshot/snapshot.h"
#include "ui/views/view.h"
// Private method, used to identify instantiated services.
@interface NSSharingService (ExposeName)
@property(readonly) NSString* name;
@end
namespace {
// The reminder service doesn't have a convenient NSSharingServiceName*
// constant.
NSString* const kRemindersSharingServiceName =
@"com.apple.reminders.RemindersShareExtension";
bool CanShare() {
Browser* last_active_browser = chrome::FindLastActive();
return last_active_browser &&
last_active_browser->location_bar_model()->ShouldDisplayURL() &&
last_active_browser->tab_strip_model()->GetActiveWebContents() &&
last_active_browser->tab_strip_model()
->GetActiveWebContents()
->GetLastCommittedURL()
.is_valid();
}
} // namespace
@implementation ShareMenuController {
// The following three ivars are provided to the system via NSSharingService
// delegates. They're needed for the transition animation, and to provide a
// screenshot of the shared site for services that support it.
NSWindow* __weak _windowForShare;
NSRect _rectForShare;
NSImage* __strong _snapshotForShare;
// The Reminders share extension reads title/URL from the currently active
// activity.
NSUserActivity* __strong _activity;
}
// NSMenuDelegate
- (BOOL)menuHasKeyEquivalent:(NSMenu*)menu
forEvent:(NSEvent*)event
target:(id*)target
action:(SEL*)action {
// Load the menu if it hasn't loaded already.
if (!menu.numberOfItems) {
[self menuNeedsUpdate:menu];
}
// Per tapted@'s comment in BookmarkMenuCocoaController, it's fine
// to return NO here if an item will handle this. This is why it's
// necessary to ensure the menu is loaded above.
return NO;
}
- (void)menuNeedsUpdate:(NSMenu*)menu {
[menu removeAllItems];
// Using a real URL instead of empty string to avoid system log about relative
// URLs in the pasteboard. This URL will not actually be shared to, just used
// to fetch sharing services that can handle the NSURL type.
NSArray* services = [NSSharingService
sharingServicesForItems:@[ [NSURL URLWithString:@"https://google.com"] ]];
NSMenuItem* email = [[NSMenuItem alloc]
initWithTitle:l10n_util::GetNSString(IDS_EMAIL_LINK_MAC)
action:@selector(emailLink:)
keyEquivalent:[self keyEquivalentForMail]];
email.target = self;
[menu addItem:email];
for (NSSharingService* service in services) {
// Email share service causes mysterious crashes, so share directly.
// See https://crbug.com/356643975
if ([service.name isEqualToString:NSSharingServiceNameComposeEmail]) {
continue;
}
// Don't include "Add to Reading List".
if ([service.name
isEqualToString:NSSharingServiceNameAddToSafariReadingList]) {
continue;
}
NSMenuItem* item = [self menuItemForService:service];
[menu addItem:item];
}
NSMenuItem* moreItem = [[NSMenuItem alloc]
initWithTitle:l10n_util::GetNSString(IDS_SHARING_MORE_MAC)
action:@selector(openSharingPrefs:)
keyEquivalent:@""];
moreItem.target = self;
moreItem.image = [self moreImage];
[menu addItem:moreItem];
}
// NSMenuItemValidation
- (BOOL)validateMenuItem:(NSMenuItem*)menuItem {
if (menuItem.action == @selector(openSharingPrefs:)) {
return YES;
}
return CanShare();
}
// NSSharingServiceDelegate
- (void)sharingService:(NSSharingService*)service
didShareItems:(NSArray*)items {
UMA_HISTOGRAM_BOOLEAN("Mac.FileMenuNativeShare", true);
[self clearTransitionData];
}
- (void)sharingService:(NSSharingService*)service
didFailToShareItems:(NSArray*)items
error:(NSError*)error {
UMA_HISTOGRAM_BOOLEAN("Mac.FileMenuNativeShare", false);
[self clearTransitionData];
}
- (NSRect)sharingService:(NSSharingService*)service
sourceFrameOnScreenForShareItem:(id)item {
return _rectForShare;
}
- (NSWindow*)sharingService:(NSSharingService*)service
sourceWindowForShareItems:(NSArray*)items
sharingContentScope:(NSSharingContentScope*)scope {
*scope = NSSharingContentScopeFull;
return _windowForShare;
}
- (NSImage*)sharingService:(NSSharingService*)service
transitionImageForShareItem:(id)item
contentRect:(NSRect*)contentRect {
return _snapshotForShare;
}
// Private methods
// Saves details required by delegate methods for the transition animation, and
// calls the provided closure when done.
- (void)saveTransitionDataFromBrowser:(Browser*)browser
whenComplete:(base::OnceClosure)closure {
_windowForShare = browser->window()->GetNativeWindow().GetNativeNSWindow();
BrowserView* browserView = BrowserView::GetBrowserViewForBrowser(browser);
if (!browserView) {
return;
}
views::View* contentsView = browserView->contents_container();
if (!contentsView) {
return;
}
gfx::Rect screenRect = contentsView->bounds();
views::View::ConvertRectToScreen(browserView, &screenRect);
_rectForShare = ScreenRectToNSRect(screenRect);
gfx::Rect rectInWidget =
browserView->ConvertRectToWidget(contentsView->bounds());
ui::GrabWindowSnapshot(gfx::NativeWindow(_windowForShare), rectInWidget,
base::BindOnce(
[](ShareMenuController* controller,
base::OnceClosure closure, gfx::Image image) {
if (!image.IsEmpty()) {
controller->_snapshotForShare =
image.ToNSImage();
}
std::move(closure).Run();
},
self, std::move(closure)));
}
- (void)clearTransitionData {
_windowForShare = nil;
_rectForShare = NSZeroRect;
_snapshotForShare = nil;
[_activity invalidate];
_activity = nil;
}
// Performs the share action using the sharing service represented by |sender|.
- (void)performShare:(NSMenuItem*)sender {
CHECK(CanShare());
Browser* browser = chrome::FindLastActive();
CHECK(browser);
content::WebContents* contents =
browser->tab_strip_model()->GetActiveWebContents();
CHECK(contents);
NSURL* url = net::NSURLWithGURL(contents->GetLastCommittedURL());
NSString* title = base::SysUTF16ToNSString(contents->GetTitle());
NSSharingService* service =
base::apple::ObjCCastStrict<NSSharingService>(sender.representedObject);
service.delegate = self;
service.subject = title;
if ([service.name isEqual:kRemindersSharingServiceName]) {
_activity = [[NSUserActivity alloc]
initWithActivityType:NSUserActivityTypeBrowsingWeb];
// webpageURL must be http or https or an exception is thrown.
if ([url.scheme hasPrefix:@"http"]) {
_activity.webpageURL = url;
}
_activity.title = title;
[_activity becomeCurrent];
}
base::RunLoop run_loop;
auto done = run_loop.QuitClosure();
[self saveTransitionDataFromBrowser:browser
whenComplete:base::BindOnce(^{
[service performWithItems:@[ url ]];
std::move(done).Run();
})];
run_loop.Run();
}
// Opens the "Sharing" subpane of the "Extensions" macOS preference pane.
- (void)openSharingPrefs:(NSMenuItem*)sender {
base::mac::OpenSystemSettingsPane(
base::mac::SystemSettingsPane::kPrivacySecurity_Extensions_Sharing);
}
- (void)emailLink:(id)sender {
CHECK(CanShare());
Browser* browser = chrome::FindLastActive();
CHECK(browser);
content::WebContents* contents =
browser->tab_strip_model()->GetActiveWebContents();
CHECK(contents);
std::string title = base::EscapeQueryParamValue(
base::UTF16ToUTF8(contents->GetTitle()), false);
std::string pageUrl = base::EscapeQueryParamValue(
contents->GetLastCommittedURL().spec(), false);
std::string mailto =
std::string("mailto:?subject=%20") + title + "&body=%0A%0A" + pageUrl;
platform_util::OpenExternal(GURL(mailto));
}
// Returns the image to be used for the "More..." menu item, or nil on macOS
// version where this private method is unsupported.
- (NSImage*)moreImage {
if ([NSSharingServicePicker
respondsToSelector:@selector(sharedMoreMenuImage)]) {
return
[NSSharingServicePicker performSelector:@selector(sharedMoreMenuImage)];
}
return nil;
}
// Creates a menu item that calls |service| when invoked.
- (NSMenuItem*)menuItemForService:(NSSharingService*)service {
NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:service.menuItemTitle
action:@selector(performShare:)
keyEquivalent:@""];
item.target = self;
item.image = service.image;
item.representedObject = service;
return item;
}
- (NSString*)keyEquivalentForMail {
ui::Accelerator accelerator;
bool found = GetDefaultMacAcceleratorForCommandId(IDC_EMAIL_PAGE_LOCATION,
&accelerator);
DCHECK(found);
return GetKeyEquivalentAndModifierMaskFromAccelerator(accelerator)
.keyEquivalent;
}
@end
|