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
|
// 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/api/runtime/runtime_api.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/extensions/event_router.h"
#include "chrome/browser/extensions/extension_host.h"
#include "chrome/browser/extensions/extension_process_manager.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_system.h"
#include "chrome/browser/extensions/lazy_background_task_queue.h"
#include "chrome/browser/extensions/updater/extension_updater.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/common/extensions/extension.h"
#include "googleurl/src/gurl.h"
namespace extensions {
namespace {
const char kOnStartupEvent[] = "runtime.onStartup";
const char kOnInstalledEvent[] = "runtime.onInstalled";
const char kOnUpdateAvailableEvent[] = "runtime.onUpdateAvailable";
const char kNoBackgroundPageError[] = "You do not have a background page.";
const char kPageLoadError[] = "Background page failed to load.";
const char kInstallReason[] = "reason";
const char kInstallReasonChromeUpdate[] = "chrome_update";
const char kInstallReasonUpdate[] = "update";
const char kInstallReasonInstall[] = "install";
const char kInstallPreviousVersion[] = "previousVersion";
const char kUpdatesDisabledError[] = "Autoupdate is not enabled.";
const char kUpdateFound[] = "update_available";
const char kUpdateNotFound[] = "no_update";
const char kUpdateThrottled[] = "throttled";
static void DispatchOnStartupEventImpl(
Profile* profile,
const std::string& extension_id,
bool first_call,
ExtensionHost* host) {
// A NULL host from the LazyBackgroundTaskQueue means the page failed to
// load. Give up.
if (!host && !first_call)
return;
if (g_browser_process->IsShuttingDown() ||
!g_browser_process->profile_manager()->IsValidProfile(profile))
return;
ExtensionSystem* system = ExtensionSystem::Get(profile);
if (!system)
return;
// If this is a persistent background page, we want to wait for it to load
// (it might not be ready, since this is startup). But only enqueue once.
// If it fails to load the first time, don't bother trying again.
const Extension* extension =
system->extension_service()->extensions()->GetByID(extension_id);
if (extension && extension->has_persistent_background_page() && first_call &&
system->lazy_background_task_queue()->
ShouldEnqueueTask(profile, extension)) {
system->lazy_background_task_queue()->AddPendingTask(
profile, extension_id,
base::Bind(&DispatchOnStartupEventImpl,
profile, extension_id, false));
return;
}
scoped_ptr<base::ListValue> event_args(new ListValue());
system->event_router()->DispatchEventToExtension(
extension_id, kOnStartupEvent, event_args.Pass(), NULL, GURL());
}
} // namespace
// static
void RuntimeEventRouter::DispatchOnStartupEvent(
Profile* profile, const std::string& extension_id) {
DispatchOnStartupEventImpl(profile, extension_id, true, NULL);
}
// static
void RuntimeEventRouter::DispatchOnInstalledEvent(
Profile* profile,
const std::string& extension_id,
const Version& old_version,
bool chrome_updated) {
ExtensionSystem* system = ExtensionSystem::Get(profile);
if (!system)
return;
// Special case: normally, extensions add their own lazy event listeners.
// However, since the extension has just been installed, it hasn't had a
// chance to register for events. So we register on its behalf. If the
// extension does not actually have a listener, the event will just be
// ignored.
scoped_ptr<base::ListValue> event_args(new ListValue());
base::DictionaryValue* info = new base::DictionaryValue();
event_args->Append(info);
if (old_version.IsValid()) {
info->SetString(kInstallReason, kInstallReasonUpdate);
info->SetString(kInstallPreviousVersion, old_version.GetString());
} else if (chrome_updated) {
info->SetString(kInstallReason, kInstallReasonChromeUpdate);
} else {
info->SetString(kInstallReason, kInstallReasonInstall);
}
DCHECK(system->event_router());
system->event_router()->AddLazyEventListener(kOnInstalledEvent, extension_id);
system->event_router()->DispatchEventToExtension(
extension_id, kOnInstalledEvent, event_args.Pass(), NULL, GURL());
system->event_router()->RemoveLazyEventListener(kOnInstalledEvent,
extension_id);
}
// static
void RuntimeEventRouter::DispatchOnUpdateAvailableEvent(
Profile* profile,
const std::string& extension_id,
const DictionaryValue* manifest) {
ExtensionSystem* system = ExtensionSystem::Get(profile);
if (!system)
return;
scoped_ptr<ListValue> args(new ListValue);
args->Append(manifest->DeepCopy());
DCHECK(system->event_router());
system->event_router()->DispatchEventToExtension(
extension_id, kOnUpdateAvailableEvent, args.Pass(), NULL, GURL());
}
bool RuntimeGetBackgroundPageFunction::RunImpl() {
ExtensionHost* host =
ExtensionSystem::Get(profile())->process_manager()->
GetBackgroundHostForExtension(extension_id());
if (host) {
OnPageLoaded(host);
} else if (GetExtension()->has_lazy_background_page()) {
ExtensionSystem::Get(profile())->lazy_background_task_queue()->
AddPendingTask(
profile(), extension_id(),
base::Bind(&RuntimeGetBackgroundPageFunction::OnPageLoaded,
this));
} else {
error_ = kNoBackgroundPageError;
return false;
}
return true;
}
void RuntimeGetBackgroundPageFunction::OnPageLoaded(ExtensionHost* host) {
if (host) {
SendResponse(true);
} else {
error_ = kPageLoadError;
SendResponse(false);
}
}
bool RuntimeReloadFunction::RunImpl() {
// We can't call ReloadExtension directly, since when this method finishes
// it tries to decrease the reference count for the extension, which fails
// if the extension has already been reloaded; so instead we post a task.
MessageLoop::current()->PostTask(FROM_HERE,
base::Bind(&ExtensionService::ReloadExtension,
profile()->GetExtensionService()->AsWeakPtr(),
extension_id()));
return true;
}
RuntimeRequestUpdateCheckFunction::RuntimeRequestUpdateCheckFunction() {
registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UPDATE_FOUND,
content::NotificationService::AllSources());
}
bool RuntimeRequestUpdateCheckFunction::RunImpl() {
ExtensionSystem* system = ExtensionSystem::Get(profile());
ExtensionService* service = system->extension_service();
ExtensionUpdater* updater = service->updater();
if (!updater) {
error_ = kUpdatesDisabledError;
return false;
}
did_reply_ = false;
if (!updater->CheckExtensionSoon(extension_id(), base::Bind(
&RuntimeRequestUpdateCheckFunction::CheckComplete, this))) {
did_reply_ = true;
SetResult(new base::StringValue(kUpdateThrottled));
SendResponse(true);
}
return true;
}
void RuntimeRequestUpdateCheckFunction::CheckComplete() {
if (did_reply_)
return;
did_reply_ = true;
// Since no UPDATE_FOUND notification was seen, this generally would mean
// that no update is found, but a previous update check might have already
// queued up an update, so check for that here to make sure we return the
// right value.
ExtensionSystem* system = ExtensionSystem::Get(profile());
ExtensionService* service = system->extension_service();
const Extension* update = service->GetPendingExtensionUpdate(extension_id());
if (update) {
ReplyUpdateFound(update->VersionString());
} else {
SetResult(new base::StringValue(kUpdateNotFound));
}
SendResponse(true);
}
void RuntimeRequestUpdateCheckFunction::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
if (did_reply_)
return;
DCHECK(type == chrome::NOTIFICATION_EXTENSION_UPDATE_FOUND);
typedef const std::pair<std::string, Version> UpdateDetails;
const std::string& id = content::Details<UpdateDetails>(details)->first;
const Version& version = content::Details<UpdateDetails>(details)->second;
if (id == extension_id()) {
ReplyUpdateFound(version.GetString());
}
}
void RuntimeRequestUpdateCheckFunction::ReplyUpdateFound(
const std::string& version) {
did_reply_ = true;
results_.reset(new base::ListValue);
results_->AppendString(kUpdateFound);
base::DictionaryValue* details = new base::DictionaryValue;
results_->Append(details);
details->SetString("version", version);
SendResponse(true);
}
} // namespace extensions
|