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
|
// Copyright (c) 2012 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/extensions/extension_install_ui.h"
#include <map>
#include "base/command_line.h"
#include "base/file_util.h"
#include "base/message_loop.h"
#include "base/string_number_conversions.h"
#include "base/string_util.h"
#include "base/stringprintf.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/extensions/bundle_installer.h"
#include "chrome/browser/extensions/extension_install_dialog.h"
#include "chrome/browser/extensions/theme_installed_infobar_delegate.h"
#include "chrome/browser/infobars/infobar_tab_helper.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/simple_message_box.h"
#include "chrome/browser/tabs/tab_strip_model.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_icon_set.h"
#include "chrome/common/extensions/extension_resource.h"
#include "chrome/common/extensions/url_pattern.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/notification_service.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/image/image.h"
#if defined(USE_ASH)
#include "ash/shell.h"
#endif
using content::WebContents;
using extensions::BundleInstaller;
static const int kTitleIds[ExtensionInstallUI::NUM_PROMPT_TYPES] = {
0, // The regular install prompt depends on what's being installed.
IDS_EXTENSION_INLINE_INSTALL_PROMPT_TITLE,
IDS_EXTENSION_INSTALL_PROMPT_TITLE,
IDS_EXTENSION_RE_ENABLE_PROMPT_TITLE,
IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE
};
static const int kHeadingIds[ExtensionInstallUI::NUM_PROMPT_TYPES] = {
IDS_EXTENSION_INSTALL_PROMPT_HEADING,
0, // Inline installs use the extension name.
0, // Heading for bundle installs depends on the bundle contents.
IDS_EXTENSION_RE_ENABLE_PROMPT_HEADING,
IDS_EXTENSION_PERMISSIONS_PROMPT_HEADING
};
static const int kAcceptButtonIds[ExtensionInstallUI::NUM_PROMPT_TYPES] = {
IDS_EXTENSION_PROMPT_INSTALL_BUTTON,
IDS_EXTENSION_PROMPT_INSTALL_BUTTON,
IDS_EXTENSION_PROMPT_INSTALL_BUTTON,
IDS_EXTENSION_PROMPT_RE_ENABLE_BUTTON,
IDS_EXTENSION_PROMPT_PERMISSIONS_BUTTON
};
static const int kAbortButtonIds[ExtensionInstallUI::NUM_PROMPT_TYPES] = {
0, // These all use the platform's default cancel label.
0,
0,
0,
IDS_EXTENSION_PROMPT_PERMISSIONS_ABORT_BUTTON
};
static const int kPermissionsHeaderIds[ExtensionInstallUI::NUM_PROMPT_TYPES] = {
IDS_EXTENSION_PROMPT_WILL_HAVE_ACCESS_TO,
IDS_EXTENSION_PROMPT_WILL_HAVE_ACCESS_TO,
IDS_EXTENSION_PROMPT_THESE_WILL_HAVE_ACCESS_TO,
IDS_EXTENSION_PROMPT_WILL_NOW_HAVE_ACCESS_TO,
IDS_EXTENSION_PROMPT_WANTS_ACCESS_TO,
};
namespace {
// Size of extension icon in top left of dialog.
const int kIconSize = 69;
} // namespace
ExtensionInstallUI::Prompt::Prompt(PromptType type)
: type_(type),
extension_(NULL),
bundle_(NULL),
average_rating_(0.0),
rating_count_(0) {
}
ExtensionInstallUI::Prompt::~Prompt() {
}
void ExtensionInstallUI::Prompt::SetPermissions(
const std::vector<string16>& permissions) {
permissions_ = permissions;
}
void ExtensionInstallUI::Prompt::SetInlineInstallWebstoreData(
const std::string& localized_user_count,
double average_rating,
int rating_count) {
CHECK_EQ(INLINE_INSTALL_PROMPT, type_);
localized_user_count_ = localized_user_count;
average_rating_ = average_rating;
rating_count_ = rating_count;
}
string16 ExtensionInstallUI::Prompt::GetDialogTitle() const {
if (type_ == INSTALL_PROMPT) {
return l10n_util::GetStringUTF16(extension_->is_app() ?
IDS_EXTENSION_INSTALL_APP_PROMPT_TITLE :
IDS_EXTENSION_INSTALL_EXTENSION_PROMPT_TITLE);
} else {
return l10n_util::GetStringUTF16(kTitleIds[type_]);
}
}
string16 ExtensionInstallUI::Prompt::GetHeading() const {
if (type_ == INLINE_INSTALL_PROMPT) {
return UTF8ToUTF16(extension_->name());
} else if (type_ == BUNDLE_INSTALL_PROMPT) {
return bundle_->GetHeadingTextFor(BundleInstaller::Item::STATE_PENDING);
} else {
return l10n_util::GetStringFUTF16(
kHeadingIds[type_], UTF8ToUTF16(extension_->name()));
}
}
string16 ExtensionInstallUI::Prompt::GetAcceptButtonLabel() const {
return l10n_util::GetStringUTF16(kAcceptButtonIds[type_]);
}
bool ExtensionInstallUI::Prompt::HasAbortButtonLabel() const {
return kAbortButtonIds[type_] > 0;
}
string16 ExtensionInstallUI::Prompt::GetAbortButtonLabel() const {
CHECK(HasAbortButtonLabel());
return l10n_util::GetStringUTF16(kAbortButtonIds[type_]);
}
string16 ExtensionInstallUI::Prompt::GetPermissionsHeading() const {
return l10n_util::GetStringUTF16(kPermissionsHeaderIds[type_]);
}
void ExtensionInstallUI::Prompt::AppendRatingStars(
StarAppender appender, void* data) const {
CHECK(appender);
CHECK_EQ(INLINE_INSTALL_PROMPT, type_);
int rating_integer = floor(average_rating_);
double rating_fractional = average_rating_ - rating_integer;
if (rating_fractional > 0.66) {
rating_integer++;
}
if (rating_fractional < 0.33 || rating_fractional > 0.66) {
rating_fractional = 0;
}
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
int i;
for (i = 0; i < rating_integer; i++) {
appender(rb.GetBitmapNamed(IDR_EXTENSIONS_RATING_STAR_ON), data);
}
if (rating_fractional) {
appender(rb.GetBitmapNamed(IDR_EXTENSIONS_RATING_STAR_HALF_LEFT), data);
i++;
}
for (; i < kMaxExtensionRating; i++) {
appender(rb.GetBitmapNamed(IDR_EXTENSIONS_RATING_STAR_OFF), data);
}
}
string16 ExtensionInstallUI::Prompt::GetRatingCount() const {
CHECK_EQ(INLINE_INSTALL_PROMPT, type_);
return l10n_util::GetStringFUTF16(
IDS_EXTENSION_RATING_COUNT,
UTF8ToUTF16(base::IntToString(rating_count_)));
}
string16 ExtensionInstallUI::Prompt::GetUserCount() const {
CHECK_EQ(INLINE_INSTALL_PROMPT, type_);
return l10n_util::GetStringFUTF16(
IDS_EXTENSION_USER_COUNT,
UTF8ToUTF16(localized_user_count_));
}
size_t ExtensionInstallUI::Prompt::GetPermissionCount() const {
return permissions_.size();
}
string16 ExtensionInstallUI::Prompt::GetPermission(size_t index) const {
CHECK_LT(index, permissions_.size());
return l10n_util::GetStringFUTF16(
IDS_EXTENSION_PERMISSION_LINE, permissions_[index]);
}
ExtensionInstallUI::ExtensionInstallUI(Profile* profile)
: profile_(profile),
ui_loop_(MessageLoop::current()),
previous_using_native_theme_(false),
extension_(NULL),
delegate_(NULL),
prompt_type_(NUM_PROMPT_TYPES),
ALLOW_THIS_IN_INITIALIZER_LIST(tracker_(this)),
use_app_installed_bubble_(false),
skip_post_install_ui_(false) {
// Remember the current theme in case the user presses undo.
if (profile_) {
const Extension* previous_theme =
ThemeServiceFactory::GetThemeForProfile(profile_);
if (previous_theme)
previous_theme_id_ = previous_theme->id();
previous_using_native_theme_ =
ThemeServiceFactory::GetForProfile(profile_)->UsingNativeTheme();
}
}
ExtensionInstallUI::~ExtensionInstallUI() {
}
void ExtensionInstallUI::ConfirmInstall(Delegate* delegate,
const Extension* extension) {
DCHECK(ui_loop_ == MessageLoop::current());
extension_ = extension;
permissions_ = extension->GetActivePermissions();
delegate_ = delegate;
// We special-case themes to not show any confirm UI. Instead they are
// immediately installed, and then we show an infobar (see OnInstallSuccess)
// to allow the user to revert if they don't like it.
if (extension->is_theme()) {
delegate->InstallUIProceed();
return;
}
ShowConfirmation(INSTALL_PROMPT);
}
void ExtensionInstallUI::ConfirmReEnable(Delegate* delegate,
const Extension* extension) {
DCHECK(ui_loop_ == MessageLoop::current());
extension_ = extension;
permissions_ = extension->GetActivePermissions();
delegate_ = delegate;
ShowConfirmation(RE_ENABLE_PROMPT);
}
void ExtensionInstallUI::ConfirmPermissions(
Delegate* delegate,
const Extension* extension,
const ExtensionPermissionSet* permissions) {
DCHECK(ui_loop_ == MessageLoop::current());
extension_ = extension;
permissions_ = permissions;
delegate_ = delegate;
ShowConfirmation(PERMISSIONS_PROMPT);
}
void ExtensionInstallUI::OnInstallSuccess(const Extension* extension,
SkBitmap* icon) {
if (skip_post_install_ui_)
return;
extension_ = extension;
SetIcon(icon);
if (extension->is_theme()) {
ShowThemeInfoBar(previous_theme_id_, previous_using_native_theme_,
extension, profile_);
return;
}
// Extensions aren't enabled by default in incognito so we confirm
// the install in a normal window.
Profile* profile = profile_->GetOriginalProfile();
Browser* browser = Browser::GetOrCreateTabbedBrowser(profile);
if (browser->tab_count() == 0)
browser->AddBlankTab(true);
browser->window()->Show();
bool use_bubble_for_apps = false;
#if defined(TOOLKIT_VIEWS)
CommandLine* cmdline = CommandLine::ForCurrentProcess();
use_bubble_for_apps = (use_app_installed_bubble_ ||
cmdline->HasSwitch(switches::kAppsNewInstallBubble));
#endif
if (extension->is_app() && !use_bubble_for_apps) {
ExtensionInstallUI::OpenAppInstalledUI(browser, extension->id());
return;
}
browser::ShowExtensionInstalledBubble(extension, browser, icon_, profile);
}
namespace {
bool disable_failure_ui_for_tests = false;
} // namespace
void ExtensionInstallUI::OnInstallFailure(const string16& error) {
DCHECK(ui_loop_ == MessageLoop::current());
if (disable_failure_ui_for_tests || skip_post_install_ui_)
return;
Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
browser::ShowErrorBox(
browser ? browser->window()->GetNativeHandle() : NULL,
l10n_util::GetStringUTF16(IDS_EXTENSION_INSTALL_FAILURE_TITLE),
error);
}
void ExtensionInstallUI::SetIcon(const SkBitmap* image) {
if (image)
icon_ = *image;
else
icon_ = SkBitmap();
if (icon_.empty())
icon_ = Extension::GetDefaultIcon(extension_->is_app());
}
void ExtensionInstallUI::OnImageLoaded(const gfx::Image& image,
const std::string& extension_id,
int index) {
SetIcon(image.IsEmpty() ? NULL : image.ToSkBitmap());
switch (prompt_type_) {
case PERMISSIONS_PROMPT:
case RE_ENABLE_PROMPT:
case INSTALL_PROMPT: {
content::NotificationService* service =
content::NotificationService::current();
service->Notify(chrome::NOTIFICATION_EXTENSION_WILL_SHOW_CONFIRM_DIALOG,
content::Source<ExtensionInstallUI>(this),
content::NotificationService::NoDetails());
Prompt prompt(prompt_type_);
prompt.SetPermissions(permissions_->GetWarningMessages());
prompt.set_extension(extension_);
prompt.set_icon(gfx::Image(new SkBitmap(icon_)));
ShowExtensionInstallDialog(profile_, delegate_, prompt);
break;
}
default:
NOTREACHED() << "Unknown message";
break;
}
}
// static
void ExtensionInstallUI::OpenAppInstalledUI(Browser* browser,
const std::string& app_id) {
if (NewTabUI::ShouldShowApps()) {
browser::NavigateParams params = browser->GetSingletonTabNavigateParams(
GURL(chrome::kChromeUINewTabURL));
browser::Navigate(¶ms);
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_APP_INSTALLED_TO_NTP,
content::Source<WebContents>(params.target_contents->web_contents()),
content::Details<const std::string>(&app_id));
} else {
#if defined(USE_ASH)
ash::Shell::GetInstance()->ToggleAppList();
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_APP_INSTALLED_TO_APPLIST,
content::Source<Profile>(browser->profile()),
content::Details<const std::string>(&app_id));
#else
NOTREACHED();
#endif
}
}
// static
void ExtensionInstallUI::DisableFailureUIForTests() {
disable_failure_ui_for_tests = true;
}
void ExtensionInstallUI::ShowThemeInfoBar(const std::string& previous_theme_id,
bool previous_using_native_theme,
const Extension* new_theme,
Profile* profile) {
if (!new_theme->is_theme())
return;
// Get last active tabbed browser of profile.
Browser* browser = BrowserList::FindTabbedBrowser(profile, true);
if (!browser)
return;
TabContentsWrapper* tab_contents = browser->GetSelectedTabContentsWrapper();
if (!tab_contents)
return;
InfoBarTabHelper* infobar_helper = tab_contents->infobar_tab_helper();
// First find any previous theme preview infobars.
InfoBarDelegate* old_delegate = NULL;
for (size_t i = 0; i < infobar_helper->infobar_count(); ++i) {
InfoBarDelegate* delegate = infobar_helper->GetInfoBarDelegateAt(i);
ThemeInstalledInfoBarDelegate* theme_infobar =
delegate->AsThemePreviewInfobarDelegate();
if (theme_infobar) {
// If the user installed the same theme twice, ignore the second install
// and keep the first install info bar, so that they can easily undo to
// get back the previous theme.
if (theme_infobar->MatchesTheme(new_theme))
return;
old_delegate = delegate;
break;
}
}
// Then either replace that old one or add a new one.
InfoBarDelegate* new_delegate = GetNewThemeInstalledInfoBarDelegate(
tab_contents, new_theme, previous_theme_id, previous_using_native_theme);
if (old_delegate)
infobar_helper->ReplaceInfoBar(old_delegate, new_delegate);
else
infobar_helper->AddInfoBar(new_delegate);
}
void ExtensionInstallUI::ShowConfirmation(PromptType prompt_type) {
// Load the image asynchronously. For the response, check OnImageLoaded.
prompt_type_ = prompt_type;
ExtensionResource image =
extension_->GetIconResource(ExtensionIconSet::EXTENSION_ICON_LARGE,
ExtensionIconSet::MATCH_BIGGER);
tracker_.LoadImage(extension_, image,
gfx::Size(kIconSize, kIconSize),
ImageLoadingTracker::DONT_CACHE);
}
InfoBarDelegate* ExtensionInstallUI::GetNewThemeInstalledInfoBarDelegate(
TabContentsWrapper* tab_contents,
const Extension* new_theme,
const std::string& previous_theme_id,
bool previous_using_native_theme) {
Profile* profile = tab_contents->profile();
return new ThemeInstalledInfoBarDelegate(
tab_contents->infobar_tab_helper(),
profile->GetExtensionService(),
ThemeServiceFactory::GetForProfile(profile),
new_theme,
previous_theme_id,
previous_using_native_theme);
}
|