1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/extensions/api/downloads/downloads_api.h"
10 #include "base/basictypes.h"
11 #include "base/bind.h"
12 #include "base/bind_helpers.h"
13 #include "base/callback.h"
14 #include "base/files/file_path.h"
15 #include "base/files/file_util.h"
16 #include "base/json/json_writer.h"
17 #include "base/lazy_instance.h"
18 #include "base/location.h"
19 #include "base/logging.h"
20 #include "base/memory/weak_ptr.h"
21 #include "base/metrics/histogram.h"
22 #include "base/single_thread_task_runner.h"
23 #include "base/stl_util.h"
24 #include "base/strings/string16.h"
25 #include "base/strings/string_split.h"
26 #include "base/strings/string_util.h"
27 #include "base/strings/stringprintf.h"
28 #include "base/task/cancelable_task_tracker.h"
29 #include "base/thread_task_runner_handle.h"
30 #include "base/values.h"
31 #include "chrome/browser/browser_process.h"
32 #include "chrome/browser/download/download_danger_prompt.h"
33 #include "chrome/browser/download/download_file_icon_extractor.h"
34 #include "chrome/browser/download/download_prefs.h"
35 #include "chrome/browser/download/download_query.h"
36 #include "chrome/browser/download/download_service.h"
37 #include "chrome/browser/download/download_service_factory.h"
38 #include "chrome/browser/download/download_shelf.h"
39 #include "chrome/browser/download/download_stats.h"
40 #include "chrome/browser/download/drag_download_item.h"
41 #include "chrome/browser/icon_loader.h"
42 #include "chrome/browser/icon_manager.h"
43 #include "chrome/browser/platform_util.h"
44 #include "chrome/browser/profiles/profile.h"
45 #include "chrome/browser/renderer_host/chrome_render_message_filter.h"
46 #include "chrome/browser/ui/browser.h"
47 #include "chrome/browser/ui/browser_list.h"
48 #include "chrome/browser/ui/browser_window.h"
49 #include "chrome/common/extensions/api/downloads.h"
50 #include "components/web_modal/web_contents_modal_dialog_manager.h"
51 #include "content/public/browser/download_interrupt_reasons.h"
52 #include "content/public/browser/download_item.h"
53 #include "content/public/browser/download_save_info.h"
54 #include "content/public/browser/download_url_parameters.h"
55 #include "content/public/browser/notification_details.h"
56 #include "content/public/browser/notification_service.h"
57 #include "content/public/browser/notification_source.h"
58 #include "content/public/browser/render_frame_host.h"
59 #include "content/public/browser/render_process_host.h"
60 #include "content/public/browser/render_view_host.h"
61 #include "content/public/browser/render_widget_host_view.h"
62 #include "content/public/browser/resource_context.h"
63 #include "content/public/browser/resource_dispatcher_host.h"
64 #include "content/public/browser/web_contents.h"
65 #include "extensions/browser/event_router.h"
66 #include "extensions/browser/extension_function_dispatcher.h"
67 #include "extensions/browser/extension_prefs.h"
68 #include "extensions/browser/extension_registry.h"
69 #include "extensions/browser/notification_types.h"
70 #include "extensions/browser/warning_service.h"
71 #include "extensions/common/permissions/permissions_data.h"
72 #include "net/base/filename_util.h"
73 #include "net/base/load_flags.h"
74 #include "net/http/http_util.h"
75 #include "third_party/skia/include/core/SkBitmap.h"
76 #include "ui/base/webui/web_ui_util.h"
77 #include "ui/gfx/image/image_skia.h"
79 using content::BrowserContext
;
80 using content::BrowserThread
;
81 using content::DownloadItem
;
82 using content::DownloadManager
;
84 namespace download_extension_errors
{
86 const char kEmptyFile
[] = "Filename not yet determined";
87 const char kFileAlreadyDeleted
[] = "Download file already deleted";
88 const char kFileNotRemoved
[] = "Unable to remove file";
89 const char kIconNotFound
[] = "Icon not found";
90 const char kInvalidDangerType
[] = "Invalid danger type";
91 const char kInvalidFilename
[] = "Invalid filename";
92 const char kInvalidFilter
[] = "Invalid query filter";
93 const char kInvalidHeaderName
[] = "Invalid request header name";
94 const char kInvalidHeaderUnsafe
[] = "Unsafe request header name";
95 const char kInvalidHeaderValue
[] = "Invalid request header value";
96 const char kInvalidId
[] = "Invalid downloadId";
97 const char kInvalidOrderBy
[] = "Invalid orderBy field";
98 const char kInvalidQueryLimit
[] = "Invalid query limit";
99 const char kInvalidState
[] = "Invalid state";
100 const char kInvalidURL
[] = "Invalid URL";
101 const char kInvisibleContext
[] = "Javascript execution context is not visible "
102 "(tab, window, popup bubble)";
103 const char kNotComplete
[] = "Download must be complete";
104 const char kNotDangerous
[] = "Download must be dangerous";
105 const char kNotInProgress
[] = "Download must be in progress";
106 const char kNotResumable
[] = "DownloadItem.canResume must be true";
107 const char kOpenPermission
[] = "The \"downloads.open\" permission is required";
108 const char kShelfDisabled
[] = "Another extension has disabled the shelf";
109 const char kShelfPermission
[] = "downloads.setShelfEnabled requires the "
110 "\"downloads.shelf\" permission";
111 const char kTooManyListeners
[] = "Each extension may have at most one "
112 "onDeterminingFilename listener between all of its renderer execution "
114 const char kUnexpectedDeterminer
[] = "Unexpected determineFilename call";
115 const char kUserGesture
[] = "User gesture required";
117 } // namespace download_extension_errors
119 namespace errors
= download_extension_errors
;
121 namespace extensions
{
125 namespace downloads
= api::downloads
;
127 // Default icon size for getFileIcon() in pixels.
128 const int kDefaultIconSize
= 32;
131 const char kByExtensionIdKey
[] = "byExtensionId";
132 const char kByExtensionNameKey
[] = "byExtensionName";
133 const char kBytesReceivedKey
[] = "bytesReceived";
134 const char kCanResumeKey
[] = "canResume";
135 const char kDangerAccepted
[] = "accepted";
136 const char kDangerContent
[] = "content";
137 const char kDangerFile
[] = "file";
138 const char kDangerHost
[] = "host";
139 const char kDangerKey
[] = "danger";
140 const char kDangerSafe
[] = "safe";
141 const char kDangerUncommon
[] = "uncommon";
142 const char kDangerUnwanted
[] = "unwanted";
143 const char kDangerUrl
[] = "url";
144 const char kEndTimeKey
[] = "endTime";
145 const char kEndedAfterKey
[] = "endedAfter";
146 const char kEndedBeforeKey
[] = "endedBefore";
147 const char kErrorKey
[] = "error";
148 const char kEstimatedEndTimeKey
[] = "estimatedEndTime";
149 const char kExistsKey
[] = "exists";
150 const char kFileSizeKey
[] = "fileSize";
151 const char kFilenameKey
[] = "filename";
152 const char kFilenameRegexKey
[] = "filenameRegex";
153 const char kIdKey
[] = "id";
154 const char kIncognitoKey
[] = "incognito";
155 const char kMimeKey
[] = "mime";
156 const char kPausedKey
[] = "paused";
157 const char kQueryKey
[] = "query";
158 const char kReferrerUrlKey
[] = "referrer";
159 const char kStartTimeKey
[] = "startTime";
160 const char kStartedAfterKey
[] = "startedAfter";
161 const char kStartedBeforeKey
[] = "startedBefore";
162 const char kStateComplete
[] = "complete";
163 const char kStateInProgress
[] = "in_progress";
164 const char kStateInterrupted
[] = "interrupted";
165 const char kStateKey
[] = "state";
166 const char kTotalBytesGreaterKey
[] = "totalBytesGreater";
167 const char kTotalBytesKey
[] = "totalBytes";
168 const char kTotalBytesLessKey
[] = "totalBytesLess";
169 const char kUrlKey
[] = "url";
170 const char kUrlRegexKey
[] = "urlRegex";
172 // Note: Any change to the danger type strings, should be accompanied by a
173 // corresponding change to downloads.json.
174 const char* const kDangerStrings
[] = {
185 static_assert(arraysize(kDangerStrings
) == content::DOWNLOAD_DANGER_TYPE_MAX
,
186 "kDangerStrings should have DOWNLOAD_DANGER_TYPE_MAX elements");
188 // Note: Any change to the state strings, should be accompanied by a
189 // corresponding change to downloads.json.
190 const char* const kStateStrings
[] = {
196 static_assert(arraysize(kStateStrings
) == DownloadItem::MAX_DOWNLOAD_STATE
,
197 "kStateStrings should have MAX_DOWNLOAD_STATE elements");
199 const char* DangerString(content::DownloadDangerType danger
) {
201 DCHECK(danger
< static_cast<content::DownloadDangerType
>(
202 arraysize(kDangerStrings
)));
203 if (danger
< 0 || danger
>= static_cast<content::DownloadDangerType
>(
204 arraysize(kDangerStrings
)))
206 return kDangerStrings
[danger
];
209 content::DownloadDangerType
DangerEnumFromString(const std::string
& danger
) {
210 for (size_t i
= 0; i
< arraysize(kDangerStrings
); ++i
) {
211 if (danger
== kDangerStrings
[i
])
212 return static_cast<content::DownloadDangerType
>(i
);
214 return content::DOWNLOAD_DANGER_TYPE_MAX
;
217 const char* StateString(DownloadItem::DownloadState state
) {
219 DCHECK(state
< static_cast<DownloadItem::DownloadState
>(
220 arraysize(kStateStrings
)));
221 if (state
< 0 || state
>= static_cast<DownloadItem::DownloadState
>(
222 arraysize(kStateStrings
)))
224 return kStateStrings
[state
];
227 DownloadItem::DownloadState
StateEnumFromString(const std::string
& state
) {
228 for (size_t i
= 0; i
< arraysize(kStateStrings
); ++i
) {
229 if ((kStateStrings
[i
] != NULL
) && (state
== kStateStrings
[i
]))
230 return static_cast<DownloadItem::DownloadState
>(i
);
232 return DownloadItem::MAX_DOWNLOAD_STATE
;
235 std::string
TimeToISO8601(const base::Time
& t
) {
236 base::Time::Exploded exploded
;
237 t
.UTCExplode(&exploded
);
238 return base::StringPrintf(
239 "%04d-%02d-%02dT%02d:%02d:%02d.%03dZ", exploded
.year
, exploded
.month
,
240 exploded
.day_of_month
, exploded
.hour
, exploded
.minute
, exploded
.second
,
241 exploded
.millisecond
);
244 scoped_ptr
<base::DictionaryValue
> DownloadItemToJSON(
245 DownloadItem
* download_item
,
247 base::DictionaryValue
* json
= new base::DictionaryValue();
248 json
->SetBoolean(kExistsKey
, !download_item
->GetFileExternallyRemoved());
249 json
->SetInteger(kIdKey
, download_item
->GetId());
250 const GURL
& url
= download_item
->GetOriginalUrl();
251 json
->SetString(kUrlKey
, (url
.is_valid() ? url
.spec() : std::string()));
252 const GURL
& referrer
= download_item
->GetReferrerUrl();
253 json
->SetString(kReferrerUrlKey
, (referrer
.is_valid() ? referrer
.spec()
255 json
->SetString(kFilenameKey
,
256 download_item
->GetTargetFilePath().LossyDisplayName());
257 json
->SetString(kDangerKey
, DangerString(download_item
->GetDangerType()));
258 json
->SetString(kStateKey
, StateString(download_item
->GetState()));
259 json
->SetBoolean(kCanResumeKey
, download_item
->CanResume());
260 json
->SetBoolean(kPausedKey
, download_item
->IsPaused());
261 json
->SetString(kMimeKey
, download_item
->GetMimeType());
262 json
->SetString(kStartTimeKey
, TimeToISO8601(download_item
->GetStartTime()));
263 json
->SetDouble(kBytesReceivedKey
, download_item
->GetReceivedBytes());
264 json
->SetDouble(kTotalBytesKey
, download_item
->GetTotalBytes());
265 json
->SetBoolean(kIncognitoKey
, profile
->IsOffTheRecord());
266 if (download_item
->GetState() == DownloadItem::INTERRUPTED
) {
267 json
->SetString(kErrorKey
,
268 content::DownloadInterruptReasonToString(
269 download_item
->GetLastReason()));
270 } else if (download_item
->GetState() == DownloadItem::CANCELLED
) {
271 json
->SetString(kErrorKey
,
272 content::DownloadInterruptReasonToString(
273 content::DOWNLOAD_INTERRUPT_REASON_USER_CANCELED
));
275 if (!download_item
->GetEndTime().is_null())
276 json
->SetString(kEndTimeKey
, TimeToISO8601(download_item
->GetEndTime()));
277 base::TimeDelta time_remaining
;
278 if (download_item
->TimeRemaining(&time_remaining
)) {
279 base::Time now
= base::Time::Now();
280 json
->SetString(kEstimatedEndTimeKey
, TimeToISO8601(now
+ time_remaining
));
282 DownloadedByExtension
* by_ext
= DownloadedByExtension::Get(download_item
);
284 json
->SetString(kByExtensionIdKey
, by_ext
->id());
285 json
->SetString(kByExtensionNameKey
, by_ext
->name());
286 // Lookup the extension's current name() in case the user changed their
287 // language. This won't work if the extension was uninstalled, so the name
288 // might be the wrong language.
289 const Extension
* extension
=
290 ExtensionRegistry::Get(profile
)
291 ->GetExtensionById(by_ext
->id(), ExtensionRegistry::EVERYTHING
);
293 json
->SetString(kByExtensionNameKey
, extension
->name());
295 // TODO(benjhayden): Implement fileSize.
296 json
->SetDouble(kFileSizeKey
, download_item
->GetTotalBytes());
297 return scoped_ptr
<base::DictionaryValue
>(json
);
300 class DownloadFileIconExtractorImpl
: public DownloadFileIconExtractor
{
302 DownloadFileIconExtractorImpl() {}
304 ~DownloadFileIconExtractorImpl() override
{}
306 bool ExtractIconURLForPath(const base::FilePath
& path
,
308 IconLoader::IconSize icon_size
,
309 IconURLCallback callback
) override
;
312 void OnIconLoadComplete(
313 float scale
, const IconURLCallback
& callback
, gfx::Image
* icon
);
315 base::CancelableTaskTracker cancelable_task_tracker_
;
318 bool DownloadFileIconExtractorImpl::ExtractIconURLForPath(
319 const base::FilePath
& path
,
321 IconLoader::IconSize icon_size
,
322 IconURLCallback callback
) {
323 IconManager
* im
= g_browser_process
->icon_manager();
324 // The contents of the file at |path| may have changed since a previous
325 // request, in which case the associated icon may also have changed.
326 // Therefore, always call LoadIcon instead of attempting a LookupIcon.
329 base::Bind(&DownloadFileIconExtractorImpl::OnIconLoadComplete
,
330 base::Unretained(this), scale
, callback
),
331 &cancelable_task_tracker_
);
335 void DownloadFileIconExtractorImpl::OnIconLoadComplete(
336 float scale
, const IconURLCallback
& callback
, gfx::Image
* icon
) {
337 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
338 callback
.Run(!icon
? std::string() : webui::GetBitmapDataUrl(
339 icon
->ToImageSkia()->GetRepresentation(scale
).sk_bitmap()));
342 IconLoader::IconSize
IconLoaderSizeFromPixelSize(int pixel_size
) {
343 switch (pixel_size
) {
344 case 16: return IconLoader::SMALL
;
345 case 32: return IconLoader::NORMAL
;
348 return IconLoader::NORMAL
;
352 typedef base::hash_map
<std::string
, DownloadQuery::FilterType
> FilterTypeMap
;
354 void InitFilterTypeMap(FilterTypeMap
* filter_types_ptr
) {
355 FilterTypeMap
& filter_types
= *filter_types_ptr
;
356 filter_types
[kBytesReceivedKey
] = DownloadQuery::FILTER_BYTES_RECEIVED
;
357 filter_types
[kExistsKey
] = DownloadQuery::FILTER_EXISTS
;
358 filter_types
[kFilenameKey
] = DownloadQuery::FILTER_FILENAME
;
359 filter_types
[kFilenameRegexKey
] = DownloadQuery::FILTER_FILENAME_REGEX
;
360 filter_types
[kMimeKey
] = DownloadQuery::FILTER_MIME
;
361 filter_types
[kPausedKey
] = DownloadQuery::FILTER_PAUSED
;
362 filter_types
[kQueryKey
] = DownloadQuery::FILTER_QUERY
;
363 filter_types
[kEndedAfterKey
] = DownloadQuery::FILTER_ENDED_AFTER
;
364 filter_types
[kEndedBeforeKey
] = DownloadQuery::FILTER_ENDED_BEFORE
;
365 filter_types
[kEndTimeKey
] = DownloadQuery::FILTER_END_TIME
;
366 filter_types
[kStartedAfterKey
] = DownloadQuery::FILTER_STARTED_AFTER
;
367 filter_types
[kStartedBeforeKey
] = DownloadQuery::FILTER_STARTED_BEFORE
;
368 filter_types
[kStartTimeKey
] = DownloadQuery::FILTER_START_TIME
;
369 filter_types
[kTotalBytesKey
] = DownloadQuery::FILTER_TOTAL_BYTES
;
370 filter_types
[kTotalBytesGreaterKey
] =
371 DownloadQuery::FILTER_TOTAL_BYTES_GREATER
;
372 filter_types
[kTotalBytesLessKey
] = DownloadQuery::FILTER_TOTAL_BYTES_LESS
;
373 filter_types
[kUrlKey
] = DownloadQuery::FILTER_URL
;
374 filter_types
[kUrlRegexKey
] = DownloadQuery::FILTER_URL_REGEX
;
377 typedef base::hash_map
<std::string
, DownloadQuery::SortType
> SortTypeMap
;
379 void InitSortTypeMap(SortTypeMap
* sorter_types_ptr
) {
380 SortTypeMap
& sorter_types
= *sorter_types_ptr
;
381 sorter_types
[kBytesReceivedKey
] = DownloadQuery::SORT_BYTES_RECEIVED
;
382 sorter_types
[kDangerKey
] = DownloadQuery::SORT_DANGER
;
383 sorter_types
[kEndTimeKey
] = DownloadQuery::SORT_END_TIME
;
384 sorter_types
[kExistsKey
] = DownloadQuery::SORT_EXISTS
;
385 sorter_types
[kFilenameKey
] = DownloadQuery::SORT_FILENAME
;
386 sorter_types
[kMimeKey
] = DownloadQuery::SORT_MIME
;
387 sorter_types
[kPausedKey
] = DownloadQuery::SORT_PAUSED
;
388 sorter_types
[kStartTimeKey
] = DownloadQuery::SORT_START_TIME
;
389 sorter_types
[kStateKey
] = DownloadQuery::SORT_STATE
;
390 sorter_types
[kTotalBytesKey
] = DownloadQuery::SORT_TOTAL_BYTES
;
391 sorter_types
[kUrlKey
] = DownloadQuery::SORT_URL
;
394 bool IsNotTemporaryDownloadFilter(const DownloadItem
& download_item
) {
395 return !download_item
.IsTemporary();
398 // Set |manager| to the on-record DownloadManager, and |incognito_manager| to
399 // the off-record DownloadManager if one exists and is requested via
400 // |include_incognito|. This should work regardless of whether |profile| is
401 // original or incognito.
404 bool include_incognito
,
405 DownloadManager
** manager
,
406 DownloadManager
** incognito_manager
) {
407 *manager
= BrowserContext::GetDownloadManager(profile
->GetOriginalProfile());
408 if (profile
->HasOffTheRecordProfile() &&
409 (include_incognito
||
410 profile
->IsOffTheRecord())) {
411 *incognito_manager
= BrowserContext::GetDownloadManager(
412 profile
->GetOffTheRecordProfile());
414 *incognito_manager
= NULL
;
418 DownloadItem
* GetDownload(Profile
* profile
, bool include_incognito
, int id
) {
419 DownloadManager
* manager
= NULL
;
420 DownloadManager
* incognito_manager
= NULL
;
421 GetManagers(profile
, include_incognito
, &manager
, &incognito_manager
);
422 DownloadItem
* download_item
= manager
->GetDownload(id
);
423 if (!download_item
&& incognito_manager
)
424 download_item
= incognito_manager
->GetDownload(id
);
425 return download_item
;
428 enum DownloadsFunctionName
{
429 DOWNLOADS_FUNCTION_DOWNLOAD
= 0,
430 DOWNLOADS_FUNCTION_SEARCH
= 1,
431 DOWNLOADS_FUNCTION_PAUSE
= 2,
432 DOWNLOADS_FUNCTION_RESUME
= 3,
433 DOWNLOADS_FUNCTION_CANCEL
= 4,
434 DOWNLOADS_FUNCTION_ERASE
= 5,
436 DOWNLOADS_FUNCTION_ACCEPT_DANGER
= 7,
437 DOWNLOADS_FUNCTION_SHOW
= 8,
438 DOWNLOADS_FUNCTION_DRAG
= 9,
439 DOWNLOADS_FUNCTION_GET_FILE_ICON
= 10,
440 DOWNLOADS_FUNCTION_OPEN
= 11,
441 DOWNLOADS_FUNCTION_REMOVE_FILE
= 12,
442 DOWNLOADS_FUNCTION_SHOW_DEFAULT_FOLDER
= 13,
443 DOWNLOADS_FUNCTION_SET_SHELF_ENABLED
= 14,
444 DOWNLOADS_FUNCTION_DETERMINE_FILENAME
= 15,
445 // Insert new values here, not at the beginning.
446 DOWNLOADS_FUNCTION_LAST
449 void RecordApiFunctions(DownloadsFunctionName function
) {
450 UMA_HISTOGRAM_ENUMERATION("Download.ApiFunctions",
452 DOWNLOADS_FUNCTION_LAST
);
455 void CompileDownloadQueryOrderBy(
456 const std::vector
<std::string
>& order_by_strs
,
458 DownloadQuery
* query
) {
459 // TODO(benjhayden): Consider switching from LazyInstance to explicit string
461 static base::LazyInstance
<SortTypeMap
> sorter_types
=
462 LAZY_INSTANCE_INITIALIZER
;
463 if (sorter_types
.Get().empty())
464 InitSortTypeMap(sorter_types
.Pointer());
466 for (std::vector
<std::string
>::const_iterator iter
= order_by_strs
.begin();
467 iter
!= order_by_strs
.end(); ++iter
) {
468 std::string term_str
= *iter
;
469 if (term_str
.empty())
471 DownloadQuery::SortDirection direction
= DownloadQuery::ASCENDING
;
472 if (term_str
[0] == '-') {
473 direction
= DownloadQuery::DESCENDING
;
474 term_str
= term_str
.substr(1);
476 SortTypeMap::const_iterator sorter_type
=
477 sorter_types
.Get().find(term_str
);
478 if (sorter_type
== sorter_types
.Get().end()) {
479 *error
= errors::kInvalidOrderBy
;
482 query
->AddSorter(sorter_type
->second
, direction
);
486 void RunDownloadQuery(
487 const downloads::DownloadQuery
& query_in
,
488 DownloadManager
* manager
,
489 DownloadManager
* incognito_manager
,
491 DownloadQuery::DownloadVector
* results
) {
492 // TODO(benjhayden): Consider switching from LazyInstance to explicit string
494 static base::LazyInstance
<FilterTypeMap
> filter_types
=
495 LAZY_INSTANCE_INITIALIZER
;
496 if (filter_types
.Get().empty())
497 InitFilterTypeMap(filter_types
.Pointer());
499 DownloadQuery query_out
;
502 if (query_in
.limit
.get()) {
503 if (*query_in
.limit
.get() < 0) {
504 *error
= errors::kInvalidQueryLimit
;
507 limit
= *query_in
.limit
.get();
510 query_out
.Limit(limit
);
513 std::string state_string
= downloads::ToString(query_in
.state
);
514 if (!state_string
.empty()) {
515 DownloadItem::DownloadState state
= StateEnumFromString(state_string
);
516 if (state
== DownloadItem::MAX_DOWNLOAD_STATE
) {
517 *error
= errors::kInvalidState
;
520 query_out
.AddFilter(state
);
522 std::string danger_string
=
523 downloads::ToString(query_in
.danger
);
524 if (!danger_string
.empty()) {
525 content::DownloadDangerType danger_type
= DangerEnumFromString(
527 if (danger_type
== content::DOWNLOAD_DANGER_TYPE_MAX
) {
528 *error
= errors::kInvalidDangerType
;
531 query_out
.AddFilter(danger_type
);
533 if (query_in
.order_by
.get()) {
534 CompileDownloadQueryOrderBy(*query_in
.order_by
.get(), error
, &query_out
);
539 scoped_ptr
<base::DictionaryValue
> query_in_value(query_in
.ToValue().Pass());
540 for (base::DictionaryValue::Iterator
query_json_field(*query_in_value
.get());
541 !query_json_field
.IsAtEnd(); query_json_field
.Advance()) {
542 FilterTypeMap::const_iterator filter_type
=
543 filter_types
.Get().find(query_json_field
.key());
544 if (filter_type
!= filter_types
.Get().end()) {
545 if (!query_out
.AddFilter(filter_type
->second
, query_json_field
.value())) {
546 *error
= errors::kInvalidFilter
;
552 DownloadQuery::DownloadVector all_items
;
553 if (query_in
.id
.get()) {
554 DownloadItem
* download_item
= manager
->GetDownload(*query_in
.id
.get());
555 if (!download_item
&& incognito_manager
)
556 download_item
= incognito_manager
->GetDownload(*query_in
.id
.get());
558 all_items
.push_back(download_item
);
560 manager
->GetAllDownloads(&all_items
);
561 if (incognito_manager
)
562 incognito_manager
->GetAllDownloads(&all_items
);
564 query_out
.AddFilter(base::Bind(&IsNotTemporaryDownloadFilter
));
565 query_out
.Search(all_items
.begin(), all_items
.end(), results
);
568 DownloadPathReservationTracker::FilenameConflictAction
ConvertConflictAction(
569 downloads::FilenameConflictAction action
) {
571 case downloads::FILENAME_CONFLICT_ACTION_NONE
:
572 case downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
:
573 return DownloadPathReservationTracker::UNIQUIFY
;
574 case downloads::FILENAME_CONFLICT_ACTION_OVERWRITE
:
575 return DownloadPathReservationTracker::OVERWRITE
;
576 case downloads::FILENAME_CONFLICT_ACTION_PROMPT
:
577 return DownloadPathReservationTracker::PROMPT
;
580 return DownloadPathReservationTracker::UNIQUIFY
;
583 class ExtensionDownloadsEventRouterData
: public base::SupportsUserData::Data
{
585 static ExtensionDownloadsEventRouterData
* Get(DownloadItem
* download_item
) {
586 base::SupportsUserData::Data
* data
= download_item
->GetUserData(kKey
);
587 return (data
== NULL
) ? NULL
:
588 static_cast<ExtensionDownloadsEventRouterData
*>(data
);
591 static void Remove(DownloadItem
* download_item
) {
592 download_item
->RemoveUserData(kKey
);
595 explicit ExtensionDownloadsEventRouterData(
596 DownloadItem
* download_item
,
597 scoped_ptr
<base::DictionaryValue
> json_item
)
600 json_(json_item
.Pass()),
601 creator_conflict_action_(
602 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
),
603 determined_conflict_action_(
604 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
) {
605 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
606 download_item
->SetUserData(kKey
, this);
609 ~ExtensionDownloadsEventRouterData() override
{
611 UMA_HISTOGRAM_PERCENTAGE("Download.OnChanged",
612 (changed_fired_
* 100 / updated_
));
616 const base::DictionaryValue
& json() const { return *json_
.get(); }
617 void set_json(scoped_ptr
<base::DictionaryValue
> json_item
) {
618 json_
= json_item
.Pass();
621 void OnItemUpdated() { ++updated_
; }
622 void OnChangedFired() { ++changed_fired_
; }
624 static void SetDetermineFilenameTimeoutSecondsForTesting(int s
) {
625 determine_filename_timeout_s_
= s
;
628 void BeginFilenameDetermination(
629 const base::Closure
& no_change
,
630 const ExtensionDownloadsEventRouter::FilenameChangedCallback
& change
) {
631 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
632 ClearPendingDeterminers();
633 filename_no_change_
= no_change
;
634 filename_change_
= change
;
635 determined_filename_
= creator_suggested_filename_
;
636 determined_conflict_action_
= creator_conflict_action_
;
637 // determiner_.install_time should default to 0 so that creator suggestions
638 // should be lower priority than any actual onDeterminingFilename listeners.
640 // Ensure that the callback is called within a time limit.
641 weak_ptr_factory_
.reset(
642 new base::WeakPtrFactory
<ExtensionDownloadsEventRouterData
>(this));
643 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
645 base::Bind(&ExtensionDownloadsEventRouterData::DetermineFilenameTimeout
,
646 weak_ptr_factory_
->GetWeakPtr()),
647 base::TimeDelta::FromSeconds(determine_filename_timeout_s_
));
650 void DetermineFilenameTimeout() {
651 CallFilenameCallback();
654 void ClearPendingDeterminers() {
655 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
656 determined_filename_
.clear();
657 determined_conflict_action_
=
658 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
;
659 determiner_
= DeterminerInfo();
660 filename_no_change_
= base::Closure();
661 filename_change_
= ExtensionDownloadsEventRouter::FilenameChangedCallback();
662 weak_ptr_factory_
.reset();
663 determiners_
.clear();
666 void DeterminerRemoved(const std::string
& extension_id
) {
667 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
668 for (DeterminerInfoVector::iterator iter
= determiners_
.begin();
669 iter
!= determiners_
.end();) {
670 if (iter
->extension_id
== extension_id
) {
671 iter
= determiners_
.erase(iter
);
676 // If we just removed the last unreported determiner, then we need to call a
678 CheckAllDeterminersCalled();
681 void AddPendingDeterminer(const std::string
& extension_id
,
682 const base::Time
& installed
) {
683 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
684 for (size_t index
= 0; index
< determiners_
.size(); ++index
) {
685 if (determiners_
[index
].extension_id
== extension_id
) {
686 DCHECK(false) << extension_id
;
690 determiners_
.push_back(DeterminerInfo(extension_id
, installed
));
693 bool DeterminerAlreadyReported(const std::string
& extension_id
) {
694 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
695 for (size_t index
= 0; index
< determiners_
.size(); ++index
) {
696 if (determiners_
[index
].extension_id
== extension_id
) {
697 return determiners_
[index
].reported
;
703 void CreatorSuggestedFilename(
704 const base::FilePath
& filename
,
705 downloads::FilenameConflictAction conflict_action
) {
706 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
707 creator_suggested_filename_
= filename
;
708 creator_conflict_action_
= conflict_action
;
711 base::FilePath
creator_suggested_filename() const {
712 return creator_suggested_filename_
;
715 downloads::FilenameConflictAction
716 creator_conflict_action() const {
717 return creator_conflict_action_
;
720 void ResetCreatorSuggestion() {
721 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
722 creator_suggested_filename_
.clear();
723 creator_conflict_action_
=
724 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
;
727 // Returns false if this |extension_id| was not expected or if this
728 // |extension_id| has already reported. The caller is responsible for
729 // validating |filename|.
730 bool DeterminerCallback(
732 const std::string
& extension_id
,
733 const base::FilePath
& filename
,
734 downloads::FilenameConflictAction conflict_action
) {
735 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
736 bool found_info
= false;
737 for (size_t index
= 0; index
< determiners_
.size(); ++index
) {
738 if (determiners_
[index
].extension_id
== extension_id
) {
740 if (determiners_
[index
].reported
)
742 determiners_
[index
].reported
= true;
743 // Do not use filename if another determiner has already overridden the
744 // filename and they take precedence. Extensions that were installed
745 // later take precedence over previous extensions.
746 if (!filename
.empty() ||
747 (conflict_action
!= downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
)) {
749 std::string winner_extension_id
;
750 ExtensionDownloadsEventRouter::DetermineFilenameInternal(
753 determiners_
[index
].extension_id
,
754 determiners_
[index
].install_time
,
755 determiner_
.extension_id
,
756 determiner_
.install_time
,
757 &winner_extension_id
,
758 &determined_filename_
,
759 &determined_conflict_action_
,
761 if (!warnings
.empty())
762 WarningService::NotifyWarningsOnUI(profile
, warnings
);
763 if (winner_extension_id
== determiners_
[index
].extension_id
)
764 determiner_
= determiners_
[index
];
771 CheckAllDeterminersCalled();
776 static int determine_filename_timeout_s_
;
778 struct DeterminerInfo
{
780 DeterminerInfo(const std::string
& e_id
,
781 const base::Time
& installed
);
784 std::string extension_id
;
785 base::Time install_time
;
788 typedef std::vector
<DeterminerInfo
> DeterminerInfoVector
;
790 static const char kKey
[];
792 // This is safe to call even while not waiting for determiners to call back;
793 // in that case, the callbacks will be null so they won't be Run.
794 void CheckAllDeterminersCalled() {
795 for (DeterminerInfoVector::iterator iter
= determiners_
.begin();
796 iter
!= determiners_
.end(); ++iter
) {
800 CallFilenameCallback();
802 // Don't clear determiners_ immediately in case there's a second listener
803 // for one of the extensions, so that DetermineFilename can return
804 // kTooManyListeners. After a few seconds, DetermineFilename will return
805 // kUnexpectedDeterminer instead of kTooManyListeners so that determiners_
806 // doesn't keep hogging memory.
807 weak_ptr_factory_
.reset(
808 new base::WeakPtrFactory
<ExtensionDownloadsEventRouterData
>(this));
809 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
811 base::Bind(&ExtensionDownloadsEventRouterData::ClearPendingDeterminers
,
812 weak_ptr_factory_
->GetWeakPtr()),
813 base::TimeDelta::FromSeconds(15));
816 void CallFilenameCallback() {
817 if (determined_filename_
.empty() &&
818 (determined_conflict_action_
==
819 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
)) {
820 if (!filename_no_change_
.is_null())
821 filename_no_change_
.Run();
823 if (!filename_change_
.is_null()) {
824 filename_change_
.Run(determined_filename_
, ConvertConflictAction(
825 determined_conflict_action_
));
828 // Clear the callbacks immediately in case they aren't idempotent.
829 filename_no_change_
= base::Closure();
830 filename_change_
= ExtensionDownloadsEventRouter::FilenameChangedCallback();
836 scoped_ptr
<base::DictionaryValue
> json_
;
838 base::Closure filename_no_change_
;
839 ExtensionDownloadsEventRouter::FilenameChangedCallback filename_change_
;
841 DeterminerInfoVector determiners_
;
843 base::FilePath creator_suggested_filename_
;
844 downloads::FilenameConflictAction
845 creator_conflict_action_
;
846 base::FilePath determined_filename_
;
847 downloads::FilenameConflictAction
848 determined_conflict_action_
;
849 DeterminerInfo determiner_
;
851 scoped_ptr
<base::WeakPtrFactory
<ExtensionDownloadsEventRouterData
> >
854 DISALLOW_COPY_AND_ASSIGN(ExtensionDownloadsEventRouterData
);
857 int ExtensionDownloadsEventRouterData::determine_filename_timeout_s_
= 15;
859 ExtensionDownloadsEventRouterData::DeterminerInfo::DeterminerInfo(
860 const std::string
& e_id
,
861 const base::Time
& installed
)
862 : extension_id(e_id
),
863 install_time(installed
),
867 ExtensionDownloadsEventRouterData::DeterminerInfo::DeterminerInfo()
871 ExtensionDownloadsEventRouterData::DeterminerInfo::~DeterminerInfo() {}
873 const char ExtensionDownloadsEventRouterData::kKey
[] =
874 "DownloadItem ExtensionDownloadsEventRouterData";
876 bool OnDeterminingFilenameWillDispatchCallback(
877 bool* any_determiners
,
878 ExtensionDownloadsEventRouterData
* data
,
879 content::BrowserContext
* context
,
880 const Extension
* extension
,
882 const base::DictionaryValue
* listener_filter
) {
883 *any_determiners
= true;
884 base::Time installed
=
885 ExtensionPrefs::Get(context
)->GetInstallTime(extension
->id());
886 data
->AddPendingDeterminer(extension
->id(), installed
);
890 bool Fault(bool error
,
891 const char* message_in
,
892 std::string
* message_out
) {
895 *message_out
= message_in
;
899 bool InvalidId(DownloadItem
* valid_item
, std::string
* message_out
) {
900 return Fault(!valid_item
, errors::kInvalidId
, message_out
);
903 bool IsDownloadDeltaField(const std::string
& field
) {
904 return ((field
== kUrlKey
) ||
905 (field
== kFilenameKey
) ||
906 (field
== kDangerKey
) ||
907 (field
== kMimeKey
) ||
908 (field
== kStartTimeKey
) ||
909 (field
== kEndTimeKey
) ||
910 (field
== kStateKey
) ||
911 (field
== kCanResumeKey
) ||
912 (field
== kPausedKey
) ||
913 (field
== kErrorKey
) ||
914 (field
== kTotalBytesKey
) ||
915 (field
== kFileSizeKey
) ||
916 (field
== kExistsKey
));
921 const char DownloadedByExtension::kKey
[] =
922 "DownloadItem DownloadedByExtension";
924 DownloadedByExtension
* DownloadedByExtension::Get(
925 content::DownloadItem
* item
) {
926 base::SupportsUserData::Data
* data
= item
->GetUserData(kKey
);
927 return (data
== NULL
) ? NULL
:
928 static_cast<DownloadedByExtension
*>(data
);
931 DownloadedByExtension::DownloadedByExtension(
932 content::DownloadItem
* item
,
933 const std::string
& id
,
934 const std::string
& name
)
937 item
->SetUserData(kKey
, this);
940 DownloadsDownloadFunction::DownloadsDownloadFunction() {}
942 DownloadsDownloadFunction::~DownloadsDownloadFunction() {}
944 bool DownloadsDownloadFunction::RunAsync() {
945 scoped_ptr
<downloads::Download::Params
> params(
946 downloads::Download::Params::Create(*args_
));
947 EXTENSION_FUNCTION_VALIDATE(params
.get());
948 const downloads::DownloadOptions
& options
= params
->options
;
949 GURL
download_url(options
.url
);
950 if (Fault(!download_url
.is_valid(), errors::kInvalidURL
, &error_
))
953 Profile
* current_profile
= GetProfile();
954 if (include_incognito() && GetProfile()->HasOffTheRecordProfile())
955 current_profile
= GetProfile()->GetOffTheRecordProfile();
957 scoped_ptr
<content::DownloadUrlParameters
> download_params(
958 new content::DownloadUrlParameters(
959 download_url
, render_frame_host()->GetProcess()->GetID(),
960 render_view_host_do_not_use()->GetRoutingID(),
961 render_frame_host()->GetRoutingID(),
962 current_profile
->GetResourceContext()));
964 base::FilePath creator_suggested_filename
;
965 if (options
.filename
.get()) {
967 // Can't get filename16 from options.ToValue() because that converts it from
969 base::DictionaryValue
* options_value
= NULL
;
970 EXTENSION_FUNCTION_VALIDATE(args_
->GetDictionary(0, &options_value
));
971 base::string16 filename16
;
972 EXTENSION_FUNCTION_VALIDATE(options_value
->GetString(
973 kFilenameKey
, &filename16
));
974 creator_suggested_filename
= base::FilePath(filename16
);
975 #elif defined(OS_POSIX)
976 creator_suggested_filename
= base::FilePath(*options
.filename
.get());
978 if (!net::IsSafePortableRelativePath(creator_suggested_filename
)) {
979 error_
= errors::kInvalidFilename
;
984 if (options
.save_as
.get())
985 download_params
->set_prompt(*options
.save_as
.get());
987 if (options
.headers
.get()) {
988 typedef downloads::HeaderNameValuePair HeaderNameValuePair
;
989 for (std::vector
<linked_ptr
<HeaderNameValuePair
> >::const_iterator iter
=
990 options
.headers
->begin();
991 iter
!= options
.headers
->end();
993 const HeaderNameValuePair
& name_value
= **iter
;
994 if (!net::HttpUtil::IsValidHeaderName(name_value
.name
)) {
995 error_
= errors::kInvalidHeaderName
;
998 if (!net::HttpUtil::IsSafeHeader(name_value
.name
)) {
999 error_
= errors::kInvalidHeaderUnsafe
;
1002 if (!net::HttpUtil::IsValidHeaderValue(name_value
.value
)) {
1003 error_
= errors::kInvalidHeaderValue
;
1006 download_params
->add_request_header(name_value
.name
, name_value
.value
);
1010 std::string method_string
=
1011 downloads::ToString(options
.method
);
1012 if (!method_string
.empty())
1013 download_params
->set_method(method_string
);
1014 if (options
.body
.get())
1015 download_params
->set_post_body(*options
.body
.get());
1016 download_params
->set_callback(base::Bind(
1017 &DownloadsDownloadFunction::OnStarted
, this,
1018 creator_suggested_filename
, options
.conflict_action
));
1019 // Prevent login prompts for 401/407 responses.
1020 download_params
->set_do_not_prompt_for_login(true);
1022 DownloadManager
* manager
= BrowserContext::GetDownloadManager(
1024 manager
->DownloadUrl(download_params
.Pass());
1025 RecordDownloadSource(DOWNLOAD_INITIATED_BY_EXTENSION
);
1026 RecordApiFunctions(DOWNLOADS_FUNCTION_DOWNLOAD
);
1030 void DownloadsDownloadFunction::OnStarted(
1031 const base::FilePath
& creator_suggested_filename
,
1032 downloads::FilenameConflictAction creator_conflict_action
,
1034 content::DownloadInterruptReason interrupt_reason
) {
1035 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1036 VLOG(1) << __FUNCTION__
<< " " << item
<< " " << interrupt_reason
;
1038 DCHECK_EQ(content::DOWNLOAD_INTERRUPT_REASON_NONE
, interrupt_reason
);
1039 SetResult(new base::FundamentalValue(static_cast<int>(item
->GetId())));
1040 if (!creator_suggested_filename
.empty() ||
1041 (creator_conflict_action
!=
1042 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
)) {
1043 ExtensionDownloadsEventRouterData
* data
=
1044 ExtensionDownloadsEventRouterData::Get(item
);
1046 data
= new ExtensionDownloadsEventRouterData(
1048 scoped_ptr
<base::DictionaryValue
>(new base::DictionaryValue()));
1050 data
->CreatorSuggestedFilename(
1051 creator_suggested_filename
, creator_conflict_action
);
1053 new DownloadedByExtension(item
, extension()->id(), extension()->name());
1054 item
->UpdateObservers();
1056 DCHECK_NE(content::DOWNLOAD_INTERRUPT_REASON_NONE
, interrupt_reason
);
1057 error_
= content::DownloadInterruptReasonToString(interrupt_reason
);
1059 SendResponse(error_
.empty());
1062 DownloadsSearchFunction::DownloadsSearchFunction() {}
1064 DownloadsSearchFunction::~DownloadsSearchFunction() {}
1066 bool DownloadsSearchFunction::RunSync() {
1067 scoped_ptr
<downloads::Search::Params
> params(
1068 downloads::Search::Params::Create(*args_
));
1069 EXTENSION_FUNCTION_VALIDATE(params
.get());
1070 DownloadManager
* manager
= NULL
;
1071 DownloadManager
* incognito_manager
= NULL
;
1072 GetManagers(GetProfile(), include_incognito(), &manager
, &incognito_manager
);
1073 ExtensionDownloadsEventRouter
* router
=
1074 DownloadServiceFactory::GetForBrowserContext(
1075 manager
->GetBrowserContext())->GetExtensionEventRouter();
1076 router
->CheckForHistoryFilesRemoval();
1077 if (incognito_manager
) {
1078 ExtensionDownloadsEventRouter
* incognito_router
=
1079 DownloadServiceFactory::GetForBrowserContext(
1080 incognito_manager
->GetBrowserContext())->GetExtensionEventRouter();
1081 incognito_router
->CheckForHistoryFilesRemoval();
1083 DownloadQuery::DownloadVector results
;
1084 RunDownloadQuery(params
->query
,
1089 if (!error_
.empty())
1092 base::ListValue
* json_results
= new base::ListValue();
1093 for (DownloadManager::DownloadVector::const_iterator it
= results
.begin();
1094 it
!= results
.end(); ++it
) {
1095 DownloadItem
* download_item
= *it
;
1096 uint32 download_id
= download_item
->GetId();
1097 bool off_record
= ((incognito_manager
!= NULL
) &&
1098 (incognito_manager
->GetDownload(download_id
) != NULL
));
1099 scoped_ptr
<base::DictionaryValue
> json_item(
1100 DownloadItemToJSON(*it
,
1101 off_record
? GetProfile()->GetOffTheRecordProfile()
1102 : GetProfile()->GetOriginalProfile()));
1103 json_results
->Append(json_item
.release());
1105 SetResult(json_results
);
1106 RecordApiFunctions(DOWNLOADS_FUNCTION_SEARCH
);
1110 DownloadsPauseFunction::DownloadsPauseFunction() {}
1112 DownloadsPauseFunction::~DownloadsPauseFunction() {}
1114 bool DownloadsPauseFunction::RunSync() {
1115 scoped_ptr
<downloads::Pause::Params
> params(
1116 downloads::Pause::Params::Create(*args_
));
1117 EXTENSION_FUNCTION_VALIDATE(params
.get());
1118 DownloadItem
* download_item
=
1119 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1120 if (InvalidId(download_item
, &error_
) ||
1121 Fault(download_item
->GetState() != DownloadItem::IN_PROGRESS
,
1122 errors::kNotInProgress
, &error_
))
1124 // If the item is already paused, this is a no-op and the operation will
1125 // silently succeed.
1126 download_item
->Pause();
1127 RecordApiFunctions(DOWNLOADS_FUNCTION_PAUSE
);
1131 DownloadsResumeFunction::DownloadsResumeFunction() {}
1133 DownloadsResumeFunction::~DownloadsResumeFunction() {}
1135 bool DownloadsResumeFunction::RunSync() {
1136 scoped_ptr
<downloads::Resume::Params
> params(
1137 downloads::Resume::Params::Create(*args_
));
1138 EXTENSION_FUNCTION_VALIDATE(params
.get());
1139 DownloadItem
* download_item
=
1140 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1141 if (InvalidId(download_item
, &error_
) ||
1142 Fault(download_item
->IsPaused() && !download_item
->CanResume(),
1143 errors::kNotResumable
, &error_
))
1145 // Note that if the item isn't paused, this will be a no-op, and the extension
1146 // call will seem successful.
1147 download_item
->Resume();
1148 RecordApiFunctions(DOWNLOADS_FUNCTION_RESUME
);
1152 DownloadsCancelFunction::DownloadsCancelFunction() {}
1154 DownloadsCancelFunction::~DownloadsCancelFunction() {}
1156 bool DownloadsCancelFunction::RunSync() {
1157 scoped_ptr
<downloads::Resume::Params
> params(
1158 downloads::Resume::Params::Create(*args_
));
1159 EXTENSION_FUNCTION_VALIDATE(params
.get());
1160 DownloadItem
* download_item
=
1161 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1162 if (download_item
&&
1163 (download_item
->GetState() == DownloadItem::IN_PROGRESS
))
1164 download_item
->Cancel(true);
1165 // |download_item| can be NULL if the download ID was invalid or if the
1166 // download is not currently active. Either way, it's not a failure.
1167 RecordApiFunctions(DOWNLOADS_FUNCTION_CANCEL
);
1171 DownloadsEraseFunction::DownloadsEraseFunction() {}
1173 DownloadsEraseFunction::~DownloadsEraseFunction() {}
1175 bool DownloadsEraseFunction::RunSync() {
1176 scoped_ptr
<downloads::Erase::Params
> params(
1177 downloads::Erase::Params::Create(*args_
));
1178 EXTENSION_FUNCTION_VALIDATE(params
.get());
1179 DownloadManager
* manager
= NULL
;
1180 DownloadManager
* incognito_manager
= NULL
;
1181 GetManagers(GetProfile(), include_incognito(), &manager
, &incognito_manager
);
1182 DownloadQuery::DownloadVector results
;
1183 RunDownloadQuery(params
->query
,
1188 if (!error_
.empty())
1190 base::ListValue
* json_results
= new base::ListValue();
1191 for (DownloadManager::DownloadVector::const_iterator it
= results
.begin();
1192 it
!= results
.end(); ++it
) {
1193 json_results
->Append(
1194 new base::FundamentalValue(static_cast<int>((*it
)->GetId())));
1197 SetResult(json_results
);
1198 RecordApiFunctions(DOWNLOADS_FUNCTION_ERASE
);
1202 DownloadsRemoveFileFunction::DownloadsRemoveFileFunction() {
1205 DownloadsRemoveFileFunction::~DownloadsRemoveFileFunction() {
1208 bool DownloadsRemoveFileFunction::RunAsync() {
1209 scoped_ptr
<downloads::RemoveFile::Params
> params(
1210 downloads::RemoveFile::Params::Create(*args_
));
1211 EXTENSION_FUNCTION_VALIDATE(params
.get());
1212 DownloadItem
* download_item
=
1213 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1214 if (InvalidId(download_item
, &error_
) ||
1215 Fault((download_item
->GetState() != DownloadItem::COMPLETE
),
1216 errors::kNotComplete
, &error_
) ||
1217 Fault(download_item
->GetFileExternallyRemoved(),
1218 errors::kFileAlreadyDeleted
, &error_
))
1220 RecordApiFunctions(DOWNLOADS_FUNCTION_REMOVE_FILE
);
1221 download_item
->DeleteFile(
1222 base::Bind(&DownloadsRemoveFileFunction::Done
, this));
1226 void DownloadsRemoveFileFunction::Done(bool success
) {
1227 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1229 error_
= errors::kFileNotRemoved
;
1231 SendResponse(error_
.empty());
1234 DownloadsAcceptDangerFunction::DownloadsAcceptDangerFunction() {}
1236 DownloadsAcceptDangerFunction::~DownloadsAcceptDangerFunction() {}
1238 DownloadsAcceptDangerFunction::OnPromptCreatedCallback
*
1239 DownloadsAcceptDangerFunction::on_prompt_created_
= NULL
;
1241 bool DownloadsAcceptDangerFunction::RunAsync() {
1242 scoped_ptr
<downloads::AcceptDanger::Params
> params(
1243 downloads::AcceptDanger::Params::Create(*args_
));
1244 EXTENSION_FUNCTION_VALIDATE(params
.get());
1245 PromptOrWait(params
->download_id
, 10);
1249 void DownloadsAcceptDangerFunction::PromptOrWait(int download_id
, int retries
) {
1250 DownloadItem
* download_item
=
1251 GetDownload(GetProfile(), include_incognito(), download_id
);
1252 content::WebContents
* web_contents
= dispatcher()->GetVisibleWebContents();
1253 if (InvalidId(download_item
, &error_
) ||
1254 Fault(download_item
->GetState() != DownloadItem::IN_PROGRESS
,
1255 errors::kNotInProgress
, &error_
) ||
1256 Fault(!download_item
->IsDangerous(), errors::kNotDangerous
, &error_
) ||
1257 Fault(!web_contents
, errors::kInvisibleContext
, &error_
)) {
1258 SendResponse(error_
.empty());
1261 bool visible
= platform_util::IsVisible(web_contents
->GetNativeView());
1264 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
1265 FROM_HERE
, base::Bind(&DownloadsAcceptDangerFunction::PromptOrWait
,
1266 this, download_id
, retries
- 1),
1267 base::TimeDelta::FromMilliseconds(100));
1270 error_
= errors::kInvisibleContext
;
1271 SendResponse(error_
.empty());
1274 RecordApiFunctions(DOWNLOADS_FUNCTION_ACCEPT_DANGER
);
1275 // DownloadDangerPrompt displays a modal dialog using native widgets that the
1276 // user must either accept or cancel. It cannot be scripted.
1277 DownloadDangerPrompt
* prompt
= DownloadDangerPrompt::Create(
1281 base::Bind(&DownloadsAcceptDangerFunction::DangerPromptCallback
,
1282 this, download_id
));
1283 // DownloadDangerPrompt deletes itself
1284 if (on_prompt_created_
&& !on_prompt_created_
->is_null())
1285 on_prompt_created_
->Run(prompt
);
1286 SendResponse(error_
.empty());
1289 void DownloadsAcceptDangerFunction::DangerPromptCallback(
1290 int download_id
, DownloadDangerPrompt::Action action
) {
1291 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1292 DownloadItem
* download_item
=
1293 GetDownload(GetProfile(), include_incognito(), download_id
);
1294 if (InvalidId(download_item
, &error_
) ||
1295 Fault(download_item
->GetState() != DownloadItem::IN_PROGRESS
,
1296 errors::kNotInProgress
, &error_
))
1299 case DownloadDangerPrompt::ACCEPT
:
1300 download_item
->ValidateDangerousDownload();
1302 case DownloadDangerPrompt::CANCEL
:
1303 download_item
->Remove();
1305 case DownloadDangerPrompt::DISMISS
:
1308 SendResponse(error_
.empty());
1311 DownloadsShowFunction::DownloadsShowFunction() {}
1313 DownloadsShowFunction::~DownloadsShowFunction() {}
1315 bool DownloadsShowFunction::RunAsync() {
1316 scoped_ptr
<downloads::Show::Params
> params(
1317 downloads::Show::Params::Create(*args_
));
1318 EXTENSION_FUNCTION_VALIDATE(params
.get());
1319 DownloadItem
* download_item
=
1320 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1321 if (InvalidId(download_item
, &error_
))
1323 download_item
->ShowDownloadInShell();
1324 RecordApiFunctions(DOWNLOADS_FUNCTION_SHOW
);
1328 DownloadsShowDefaultFolderFunction::DownloadsShowDefaultFolderFunction() {}
1330 DownloadsShowDefaultFolderFunction::~DownloadsShowDefaultFolderFunction() {}
1332 bool DownloadsShowDefaultFolderFunction::RunAsync() {
1333 DownloadManager
* manager
= NULL
;
1334 DownloadManager
* incognito_manager
= NULL
;
1335 GetManagers(GetProfile(), include_incognito(), &manager
, &incognito_manager
);
1336 platform_util::OpenItem(
1337 GetProfile(), DownloadPrefs::FromDownloadManager(manager
)->DownloadPath(),
1338 platform_util::OPEN_FOLDER
, platform_util::OpenOperationCallback());
1339 RecordApiFunctions(DOWNLOADS_FUNCTION_SHOW_DEFAULT_FOLDER
);
1343 DownloadsOpenFunction::DownloadsOpenFunction() {}
1345 DownloadsOpenFunction::~DownloadsOpenFunction() {}
1347 bool DownloadsOpenFunction::RunSync() {
1348 scoped_ptr
<downloads::Open::Params
> params(
1349 downloads::Open::Params::Create(*args_
));
1350 EXTENSION_FUNCTION_VALIDATE(params
.get());
1351 DownloadItem
* download_item
=
1352 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1353 if (InvalidId(download_item
, &error_
) ||
1354 Fault(!user_gesture(), errors::kUserGesture
, &error_
) ||
1355 Fault(download_item
->GetState() != DownloadItem::COMPLETE
,
1356 errors::kNotComplete
,
1358 Fault(!extension()->permissions_data()->HasAPIPermission(
1359 APIPermission::kDownloadsOpen
),
1360 errors::kOpenPermission
,
1363 download_item
->OpenDownload();
1364 RecordApiFunctions(DOWNLOADS_FUNCTION_OPEN
);
1368 DownloadsDragFunction::DownloadsDragFunction() {}
1370 DownloadsDragFunction::~DownloadsDragFunction() {}
1372 bool DownloadsDragFunction::RunAsync() {
1373 scoped_ptr
<downloads::Drag::Params
> params(
1374 downloads::Drag::Params::Create(*args_
));
1375 EXTENSION_FUNCTION_VALIDATE(params
.get());
1376 DownloadItem
* download_item
=
1377 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1378 content::WebContents
* web_contents
=
1379 dispatcher()->GetVisibleWebContents();
1380 if (InvalidId(download_item
, &error_
) ||
1381 Fault(!web_contents
, errors::kInvisibleContext
, &error_
))
1383 RecordApiFunctions(DOWNLOADS_FUNCTION_DRAG
);
1384 gfx::Image
* icon
= g_browser_process
->icon_manager()->LookupIconFromFilepath(
1385 download_item
->GetTargetFilePath(), IconLoader::NORMAL
);
1386 gfx::NativeView view
= web_contents
->GetNativeView();
1388 // Enable nested tasks during DnD, while |DragDownload()| blocks.
1389 base::MessageLoop::ScopedNestableTaskAllower
allow(
1390 base::MessageLoop::current());
1391 DragDownloadItem(download_item
, icon
, view
);
1396 DownloadsSetShelfEnabledFunction::DownloadsSetShelfEnabledFunction() {}
1398 DownloadsSetShelfEnabledFunction::~DownloadsSetShelfEnabledFunction() {}
1400 bool DownloadsSetShelfEnabledFunction::RunSync() {
1401 scoped_ptr
<downloads::SetShelfEnabled::Params
> params(
1402 downloads::SetShelfEnabled::Params::Create(*args_
));
1403 EXTENSION_FUNCTION_VALIDATE(params
.get());
1404 if (!extension()->permissions_data()->HasAPIPermission(
1405 APIPermission::kDownloadsShelf
)) {
1406 error_
= download_extension_errors::kShelfPermission
;
1410 RecordApiFunctions(DOWNLOADS_FUNCTION_SET_SHELF_ENABLED
);
1411 DownloadManager
* manager
= NULL
;
1412 DownloadManager
* incognito_manager
= NULL
;
1413 GetManagers(GetProfile(), include_incognito(), &manager
, &incognito_manager
);
1414 DownloadService
* service
= NULL
;
1415 DownloadService
* incognito_service
= NULL
;
1417 service
= DownloadServiceFactory::GetForBrowserContext(
1418 manager
->GetBrowserContext());
1419 service
->GetExtensionEventRouter()->SetShelfEnabled(extension(),
1422 if (incognito_manager
) {
1423 incognito_service
= DownloadServiceFactory::GetForBrowserContext(
1424 incognito_manager
->GetBrowserContext());
1425 incognito_service
->GetExtensionEventRouter()->SetShelfEnabled(
1426 extension(), params
->enabled
);
1429 BrowserList
* browsers
= BrowserList::GetInstance(chrome::GetActiveDesktop());
1431 for (BrowserList::const_iterator iter
= browsers
->begin();
1432 iter
!= browsers
->end(); ++iter
) {
1433 const Browser
* browser
= *iter
;
1434 DownloadService
* current_service
=
1435 DownloadServiceFactory::GetForBrowserContext(browser
->profile());
1436 if (((current_service
== service
) ||
1437 (current_service
== incognito_service
)) &&
1438 browser
->window()->IsDownloadShelfVisible() &&
1439 !current_service
->IsShelfEnabled())
1440 browser
->window()->GetDownloadShelf()->Close(DownloadShelf::AUTOMATIC
);
1444 if (params
->enabled
&&
1445 ((manager
&& !service
->IsShelfEnabled()) ||
1446 (incognito_manager
&& !incognito_service
->IsShelfEnabled()))) {
1447 error_
= download_extension_errors::kShelfDisabled
;
1454 DownloadsGetFileIconFunction::DownloadsGetFileIconFunction()
1455 : icon_extractor_(new DownloadFileIconExtractorImpl()) {
1458 DownloadsGetFileIconFunction::~DownloadsGetFileIconFunction() {}
1460 void DownloadsGetFileIconFunction::SetIconExtractorForTesting(
1461 DownloadFileIconExtractor
* extractor
) {
1463 icon_extractor_
.reset(extractor
);
1466 bool DownloadsGetFileIconFunction::RunAsync() {
1467 scoped_ptr
<downloads::GetFileIcon::Params
> params(
1468 downloads::GetFileIcon::Params::Create(*args_
));
1469 EXTENSION_FUNCTION_VALIDATE(params
.get());
1470 const downloads::GetFileIconOptions
* options
=
1471 params
->options
.get();
1472 int icon_size
= kDefaultIconSize
;
1473 if (options
&& options
->size
.get())
1474 icon_size
= *options
->size
.get();
1475 DownloadItem
* download_item
=
1476 GetDownload(GetProfile(), include_incognito(), params
->download_id
);
1477 if (InvalidId(download_item
, &error_
) ||
1478 Fault(download_item
->GetTargetFilePath().empty(),
1479 errors::kEmptyFile
, &error_
))
1481 // In-progress downloads return the intermediate filename for GetFullPath()
1482 // which doesn't have the final extension. Therefore a good file icon can't be
1483 // found, so use GetTargetFilePath() instead.
1484 DCHECK(icon_extractor_
.get());
1485 DCHECK(icon_size
== 16 || icon_size
== 32);
1487 content::WebContents
* web_contents
=
1488 dispatcher()->GetVisibleWebContents();
1490 scale
= ui::GetScaleFactorForNativeView(
1491 web_contents
->GetRenderWidgetHostView()->GetNativeView());
1493 EXTENSION_FUNCTION_VALIDATE(icon_extractor_
->ExtractIconURLForPath(
1494 download_item
->GetTargetFilePath(),
1496 IconLoaderSizeFromPixelSize(icon_size
),
1497 base::Bind(&DownloadsGetFileIconFunction::OnIconURLExtracted
, this)));
1501 void DownloadsGetFileIconFunction::OnIconURLExtracted(const std::string
& url
) {
1502 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1503 if (Fault(url
.empty(), errors::kIconNotFound
, &error_
)) {
1504 SendResponse(false);
1507 RecordApiFunctions(DOWNLOADS_FUNCTION_GET_FILE_ICON
);
1508 SetResult(new base::StringValue(url
));
1512 ExtensionDownloadsEventRouter::ExtensionDownloadsEventRouter(
1514 DownloadManager
* manager
)
1515 : profile_(profile
),
1516 notifier_(manager
, this),
1517 extension_registry_observer_(this) {
1518 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1520 extension_registry_observer_
.Add(ExtensionRegistry::Get(profile_
));
1521 EventRouter
* router
= EventRouter::Get(profile_
);
1523 router
->RegisterObserver(this,
1524 downloads::OnDeterminingFilename::kEventName
);
1527 ExtensionDownloadsEventRouter::~ExtensionDownloadsEventRouter() {
1528 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1529 EventRouter
* router
= EventRouter::Get(profile_
);
1531 router
->UnregisterObserver(this);
1534 void ExtensionDownloadsEventRouter::
1535 SetDetermineFilenameTimeoutSecondsForTesting(int s
) {
1536 ExtensionDownloadsEventRouterData::
1537 SetDetermineFilenameTimeoutSecondsForTesting(s
);
1540 void ExtensionDownloadsEventRouter::SetShelfEnabled(const Extension
* extension
,
1542 std::set
<const Extension
*>::iterator iter
=
1543 shelf_disabling_extensions_
.find(extension
);
1544 if (iter
== shelf_disabling_extensions_
.end()) {
1546 shelf_disabling_extensions_
.insert(extension
);
1547 } else if (enabled
) {
1548 shelf_disabling_extensions_
.erase(extension
);
1552 bool ExtensionDownloadsEventRouter::IsShelfEnabled() const {
1553 return shelf_disabling_extensions_
.empty();
1556 // The method by which extensions hook into the filename determination process
1557 // is based on the method by which the omnibox API allows extensions to hook
1558 // into the omnibox autocompletion process. Extensions that wish to play a part
1559 // in the filename determination process call
1560 // chrome.downloads.onDeterminingFilename.addListener, which adds an
1561 // EventListener object to ExtensionEventRouter::listeners().
1563 // When a download's filename is being determined, DownloadTargetDeterminer (via
1564 // ChromeDownloadManagerDelegate (CDMD) ::NotifyExtensions()) passes 2 callbacks
1565 // to ExtensionDownloadsEventRouter::OnDeterminingFilename (ODF), which stores
1566 // the callbacks in the item's ExtensionDownloadsEventRouterData (EDERD) along
1567 // with all of the extension IDs that are listening for onDeterminingFilename
1568 // events. ODF dispatches chrome.downloads.onDeterminingFilename.
1570 // When the extension's event handler calls |suggestCallback|,
1571 // downloads_custom_bindings.js calls
1572 // DownloadsInternalDetermineFilenameFunction::RunAsync, which calls
1573 // EDER::DetermineFilename, which notifies the item's EDERD.
1575 // When the last extension's event handler returns, EDERD calls one of the two
1576 // callbacks that CDMD passed to ODF, allowing DownloadTargetDeterminer to
1577 // continue the filename determination process. If multiple extensions wish to
1578 // override the filename, then the extension that was last installed wins.
1580 void ExtensionDownloadsEventRouter::OnDeterminingFilename(
1582 const base::FilePath
& suggested_path
,
1583 const base::Closure
& no_change
,
1584 const FilenameChangedCallback
& change
) {
1585 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1586 ExtensionDownloadsEventRouterData
* data
=
1587 ExtensionDownloadsEventRouterData::Get(item
);
1592 data
->BeginFilenameDetermination(no_change
, change
);
1593 bool any_determiners
= false;
1594 base::DictionaryValue
* json
= DownloadItemToJSON(
1595 item
, profile_
).release();
1596 json
->SetString(kFilenameKey
, suggested_path
.LossyDisplayName());
1597 DispatchEvent(events::DOWNLOADS_ON_DETERMINING_FILENAME
,
1598 downloads::OnDeterminingFilename::kEventName
, false,
1599 base::Bind(&OnDeterminingFilenameWillDispatchCallback
,
1600 &any_determiners
, data
),
1602 if (!any_determiners
) {
1603 data
->ClearPendingDeterminers();
1604 if (!data
->creator_suggested_filename().empty() ||
1605 (data
->creator_conflict_action() !=
1606 downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
)) {
1607 change
.Run(data
->creator_suggested_filename(),
1608 ConvertConflictAction(data
->creator_conflict_action()));
1609 // If all listeners are removed, don't keep |data| around.
1610 data
->ResetCreatorSuggestion();
1617 void ExtensionDownloadsEventRouter::DetermineFilenameInternal(
1618 const base::FilePath
& filename
,
1619 downloads::FilenameConflictAction conflict_action
,
1620 const std::string
& suggesting_extension_id
,
1621 const base::Time
& suggesting_install_time
,
1622 const std::string
& incumbent_extension_id
,
1623 const base::Time
& incumbent_install_time
,
1624 std::string
* winner_extension_id
,
1625 base::FilePath
* determined_filename
,
1626 downloads::FilenameConflictAction
* determined_conflict_action
,
1627 WarningSet
* warnings
) {
1628 DCHECK(!filename
.empty() ||
1629 (conflict_action
!= downloads::FILENAME_CONFLICT_ACTION_UNIQUIFY
));
1630 DCHECK(!suggesting_extension_id
.empty());
1632 if (incumbent_extension_id
.empty()) {
1633 *winner_extension_id
= suggesting_extension_id
;
1634 *determined_filename
= filename
;
1635 *determined_conflict_action
= conflict_action
;
1639 if (suggesting_install_time
< incumbent_install_time
) {
1640 *winner_extension_id
= incumbent_extension_id
;
1641 warnings
->insert(Warning::CreateDownloadFilenameConflictWarning(
1642 suggesting_extension_id
,
1643 incumbent_extension_id
,
1645 *determined_filename
));
1649 *winner_extension_id
= suggesting_extension_id
;
1650 warnings
->insert(Warning::CreateDownloadFilenameConflictWarning(
1651 incumbent_extension_id
,
1652 suggesting_extension_id
,
1653 *determined_filename
,
1655 *determined_filename
= filename
;
1656 *determined_conflict_action
= conflict_action
;
1659 bool ExtensionDownloadsEventRouter::DetermineFilename(
1661 bool include_incognito
,
1662 const std::string
& ext_id
,
1664 const base::FilePath
& const_filename
,
1665 downloads::FilenameConflictAction conflict_action
,
1666 std::string
* error
) {
1667 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1668 RecordApiFunctions(DOWNLOADS_FUNCTION_DETERMINE_FILENAME
);
1669 DownloadItem
* item
= GetDownload(profile
, include_incognito
, download_id
);
1670 ExtensionDownloadsEventRouterData
* data
=
1671 item
? ExtensionDownloadsEventRouterData::Get(item
) : NULL
;
1672 // maxListeners=1 in downloads.idl and suggestCallback in
1673 // downloads_custom_bindings.js should prevent duplicate DeterminerCallback
1674 // calls from the same renderer, but an extension may have more than one
1675 // renderer, so don't DCHECK(!reported).
1676 if (InvalidId(item
, error
) ||
1677 Fault(item
->GetState() != DownloadItem::IN_PROGRESS
,
1678 errors::kNotInProgress
, error
) ||
1679 Fault(!data
, errors::kUnexpectedDeterminer
, error
) ||
1680 Fault(data
->DeterminerAlreadyReported(ext_id
),
1681 errors::kTooManyListeners
, error
))
1683 base::FilePath::StringType
filename_str(const_filename
.value());
1684 // Allow windows-style directory separators on all platforms.
1685 std::replace(filename_str
.begin(), filename_str
.end(),
1686 FILE_PATH_LITERAL('\\'), FILE_PATH_LITERAL('/'));
1687 base::FilePath
filename(filename_str
);
1688 bool valid_filename
= net::IsSafePortableRelativePath(filename
);
1689 filename
= (valid_filename
? filename
.NormalizePathSeparators() :
1691 // If the invalid filename check is moved to before DeterminerCallback(), then
1692 // it will block forever waiting for this ext_id to report.
1693 if (Fault(!data
->DeterminerCallback(
1694 profile
, ext_id
, filename
, conflict_action
),
1695 errors::kUnexpectedDeterminer
, error
) ||
1696 Fault((!const_filename
.empty() && !valid_filename
),
1697 errors::kInvalidFilename
, error
))
1702 void ExtensionDownloadsEventRouter::OnListenerRemoved(
1703 const EventListenerInfo
& details
) {
1704 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1705 DownloadManager
* manager
= notifier_
.GetManager();
1708 bool determiner_removed
= (
1709 details
.event_name
== downloads::OnDeterminingFilename::kEventName
);
1710 EventRouter
* router
= EventRouter::Get(profile_
);
1711 bool any_listeners
=
1712 router
->HasEventListener(downloads::OnChanged::kEventName
) ||
1713 router
->HasEventListener(downloads::OnDeterminingFilename::kEventName
);
1714 if (!determiner_removed
&& any_listeners
)
1716 DownloadManager::DownloadVector items
;
1717 manager
->GetAllDownloads(&items
);
1718 for (DownloadManager::DownloadVector::const_iterator iter
=
1720 iter
!= items
.end(); ++iter
) {
1721 ExtensionDownloadsEventRouterData
* data
=
1722 ExtensionDownloadsEventRouterData::Get(*iter
);
1725 if (determiner_removed
) {
1726 // Notify any items that may be waiting for callbacks from this
1727 // extension/determiner. This will almost always be a no-op, however, it
1728 // is possible for an extension renderer to be unloaded while a download
1729 // item is waiting for a determiner. In that case, the download item
1731 data
->DeterminerRemoved(details
.extension_id
);
1733 if (!any_listeners
&&
1734 data
->creator_suggested_filename().empty()) {
1735 ExtensionDownloadsEventRouterData::Remove(*iter
);
1740 // That's all the methods that have to do with filename determination. The rest
1741 // have to do with the other, less special events.
1743 void ExtensionDownloadsEventRouter::OnDownloadCreated(
1744 DownloadManager
* manager
, DownloadItem
* download_item
) {
1745 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1746 if (download_item
->IsTemporary())
1749 EventRouter
* router
= EventRouter::Get(profile_
);
1750 // Avoid allocating a bunch of memory in DownloadItemToJSON if it isn't going
1753 (!router
->HasEventListener(downloads::OnCreated::kEventName
) &&
1754 !router
->HasEventListener(downloads::OnChanged::kEventName
) &&
1755 !router
->HasEventListener(
1756 downloads::OnDeterminingFilename::kEventName
))) {
1759 scoped_ptr
<base::DictionaryValue
> json_item(
1760 DownloadItemToJSON(download_item
, profile_
));
1761 DispatchEvent(events::DOWNLOADS_ON_CREATED
, downloads::OnCreated::kEventName
,
1762 true, Event::WillDispatchCallback(), json_item
->DeepCopy());
1763 if (!ExtensionDownloadsEventRouterData::Get(download_item
) &&
1764 (router
->HasEventListener(downloads::OnChanged::kEventName
) ||
1765 router
->HasEventListener(
1766 downloads::OnDeterminingFilename::kEventName
))) {
1767 new ExtensionDownloadsEventRouterData(download_item
, json_item
.Pass());
1771 void ExtensionDownloadsEventRouter::OnDownloadUpdated(
1772 DownloadManager
* manager
, DownloadItem
* download_item
) {
1773 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1774 EventRouter
* router
= EventRouter::Get(profile_
);
1775 ExtensionDownloadsEventRouterData
* data
=
1776 ExtensionDownloadsEventRouterData::Get(download_item
);
1777 if (download_item
->IsTemporary() ||
1778 !router
->HasEventListener(downloads::OnChanged::kEventName
)) {
1782 // The download_item probably transitioned from temporary to not temporary,
1783 // or else an event listener was added.
1784 data
= new ExtensionDownloadsEventRouterData(
1786 scoped_ptr
<base::DictionaryValue
>(new base::DictionaryValue()));
1788 scoped_ptr
<base::DictionaryValue
> new_json(DownloadItemToJSON(
1789 download_item
, profile_
));
1790 scoped_ptr
<base::DictionaryValue
> delta(new base::DictionaryValue());
1791 delta
->SetInteger(kIdKey
, download_item
->GetId());
1792 std::set
<std::string
> new_fields
;
1793 bool changed
= false;
1795 // For each field in the new json representation of the download_item except
1796 // the bytesReceived field, if the field has changed from the previous old
1797 // json, set the differences in the |delta| object and remember that something
1798 // significant changed.
1799 for (base::DictionaryValue::Iterator
iter(*new_json
.get());
1800 !iter
.IsAtEnd(); iter
.Advance()) {
1801 new_fields
.insert(iter
.key());
1802 if (IsDownloadDeltaField(iter
.key())) {
1803 const base::Value
* old_value
= NULL
;
1804 if (!data
->json().HasKey(iter
.key()) ||
1805 (data
->json().Get(iter
.key(), &old_value
) &&
1806 !iter
.value().Equals(old_value
))) {
1807 delta
->Set(iter
.key() + ".current", iter
.value().DeepCopy());
1809 delta
->Set(iter
.key() + ".previous", old_value
->DeepCopy());
1815 // If a field was in the previous json but is not in the new json, set the
1816 // difference in |delta|.
1817 for (base::DictionaryValue::Iterator
iter(data
->json());
1818 !iter
.IsAtEnd(); iter
.Advance()) {
1819 if ((new_fields
.find(iter
.key()) == new_fields
.end()) &&
1820 IsDownloadDeltaField(iter
.key())) {
1821 // estimatedEndTime disappears after completion, but bytesReceived stays.
1822 delta
->Set(iter
.key() + ".previous", iter
.value().DeepCopy());
1827 // Update the OnChangedStat and dispatch the event if something significant
1828 // changed. Replace the stored json with the new json.
1829 data
->OnItemUpdated();
1831 DispatchEvent(events::DOWNLOADS_ON_CHANGED
,
1832 downloads::OnChanged::kEventName
, true,
1833 Event::WillDispatchCallback(), delta
.release());
1834 data
->OnChangedFired();
1836 data
->set_json(new_json
.Pass());
1839 void ExtensionDownloadsEventRouter::OnDownloadRemoved(
1840 DownloadManager
* manager
, DownloadItem
* download_item
) {
1841 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1842 if (download_item
->IsTemporary())
1845 events::DOWNLOADS_ON_ERASED
, downloads::OnErased::kEventName
, true,
1846 Event::WillDispatchCallback(),
1847 new base::FundamentalValue(static_cast<int>(download_item
->GetId())));
1850 void ExtensionDownloadsEventRouter::DispatchEvent(
1851 events::HistogramValue histogram_value
,
1852 const std::string
& event_name
,
1853 bool include_incognito
,
1854 const Event::WillDispatchCallback
& will_dispatch_callback
,
1856 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1857 if (!EventRouter::Get(profile_
))
1859 scoped_ptr
<base::ListValue
> args(new base::ListValue());
1861 std::string json_args
;
1862 base::JSONWriter::Write(*args
, &json_args
);
1863 scoped_ptr
<Event
> event(new Event(histogram_value
, event_name
, args
.Pass()));
1864 // The downloads system wants to share on-record events with off-record
1865 // extension renderers even in incognito_split_mode because that's how
1866 // chrome://downloads works. The "restrict_to_profile" mechanism does not
1867 // anticipate this, so it does not automatically prevent sharing off-record
1868 // events with on-record extension renderers.
1869 event
->restrict_to_browser_context
=
1870 (include_incognito
&& !profile_
->IsOffTheRecord()) ? NULL
: profile_
;
1871 event
->will_dispatch_callback
= will_dispatch_callback
;
1872 EventRouter::Get(profile_
)->BroadcastEvent(event
.Pass());
1873 DownloadsNotificationSource notification_source
;
1874 notification_source
.event_name
= event_name
;
1875 notification_source
.profile
= profile_
;
1876 content::Source
<DownloadsNotificationSource
> content_source(
1877 ¬ification_source
);
1878 content::NotificationService::current()->Notify(
1879 extensions::NOTIFICATION_EXTENSION_DOWNLOADS_EVENT
,
1881 content::Details
<std::string
>(&json_args
));
1884 void ExtensionDownloadsEventRouter::OnExtensionUnloaded(
1885 content::BrowserContext
* browser_context
,
1886 const Extension
* extension
,
1887 UnloadedExtensionInfo::Reason reason
) {
1888 DCHECK_CURRENTLY_ON(BrowserThread::UI
);
1889 std::set
<const Extension
*>::iterator iter
=
1890 shelf_disabling_extensions_
.find(extension
);
1891 if (iter
!= shelf_disabling_extensions_
.end())
1892 shelf_disabling_extensions_
.erase(iter
);
1895 void ExtensionDownloadsEventRouter::CheckForHistoryFilesRemoval() {
1896 static const int kFileExistenceRateLimitSeconds
= 10;
1897 DownloadManager
* manager
= notifier_
.GetManager();
1900 base::Time
now(base::Time::Now());
1901 int delta
= now
.ToTimeT() - last_checked_removal_
.ToTimeT();
1902 if (delta
<= kFileExistenceRateLimitSeconds
)
1904 last_checked_removal_
= now
;
1905 manager
->CheckForHistoryFilesRemoval();
1908 } // namespace extensions