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
|
// 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.
[permissions=downloads]
namespace downloads {
[inline_doc] dictionary HeaderNameValuePair {
// Name of the HTTP header.
DOMString name;
// Value of the HTTP header.
DOMString value;
};
// $ref:onDeterminingFilename listeners may pass a $ref:FilenameSuggestion
// object to <code>suggest()</code> in order to override a download's target
// filename.
dictionary FilenameSuggestion {
// The $ref:DownloadItem's new target $ref:DownloadItem.filename, as a path
// relative to the user's default Downloads directory, possibly containing
// subdirectories. Absolute paths, empty paths, and paths containing
// back-references ".." will be ignored.
DOMString filename;
// Whether to overwrite any existing files.
boolean? overwrite;
};
[inline_doc] enum HttpMethod {GET, POST};
[inline_doc] dictionary DownloadOptions {
// The URL to download.
DOMString url;
// A file path relative to the Downloads directory to contain the downloaded
// file. See $ref:onDeterminingFilename for how to dynamically suggest a
// filename after the file's MIME type and a tentative filename have been
// determined.
DOMString? filename;
// Use a file-chooser to allow the user to select a filename.
boolean? saveAs;
// The HTTP method to use if the URL uses the HTTP[S] protocol.
HttpMethod? method;
// Extra HTTP headers to send with the request if the URL uses the HTTP[s]
// protocol. Each header is represented as a dictionary containing the keys
// <code>name</code> and either <code>value</code> or
// <code>binaryValue</code>, restricted to those allowed by XMLHttpRequest.
HeaderNameValuePair[]? headers;
// Post body.
DOMString? body;
};
// <dl><dt>file</dt>
// <dd>The download's filename is suspicious.</dd>
// <dt>url</dt>
// <dd>The download's URL is known to be malicious.</dd>
// <dt>content</dt>
// <dd>The downloaded file is known to be malicious.</dd>
// <dt>uncommon</dt>
// <dd>The download's URL is not commonly downloaded and could be
// dangerous.</dd>
// <dt>host</dt>
// <dd>The download came from a host known to distribute malicious
// binaries and is likely dangerous.</dd>
// <dt>safe</dt>
// <dd>The download presents no known danger to the user's computer.</dd>
// </dl>
// These string constants will never change, however the set of DangerTypes
// may change.
enum DangerType {file, url, content, uncommon, host, safe};
// <dl><dt>in_progress</dt>
// <dd>The download is currently receiving data from the server.</dd>
// <dt>interrupted</dt>
// <dd>An error broke the connection with the file host.</dd>
// <dt>complete</dt>
// <dd>The download completed successfully.</dd>
// </dl>
// These string constants will never change, however the set of States may
// change.
enum State {in_progress, interrupted, complete};
// The state of the process of downloading a file.
dictionary DownloadItem {
// An identifier that is persistent across browser sessions.
long id;
// Absolute URL.
DOMString url;
// Absolute local path.
DOMString filename;
// False if this download is recorded in the history, true if it is not
// recorded.
boolean incognito;
// Indication of whether this download is thought to be safe or known to be
// suspicious.
DangerType danger;
// True if the user has accepted the download's danger.
boolean? dangerAccepted;
// The file's MIME type.
DOMString mime;
// The time when the download began in ISO 8601 format. May be passed
// directly to the Date constructor: <code>chrome.downloads.search({},
// function(items){items.forEach(function(item){console.log(new
// Date(item.startTime))})})</code>
DOMString startTime;
// The time when the download ended in ISO 8601 format. May be passed
// directly to the Date constructor: <code>chrome.downloads.search({},
// function(items){items.forEach(function(item){if (item.endTime)
// console.log(new Date(item.endTime))})})</code>
DOMString? endTime;
// Indicates whether the download is progressing, interrupted, or complete.
State state;
// True if the download has stopped reading data from the host, but kept the
// connection open.
boolean paused;
// Number indicating why a download was interrupted.
long? error;
// Number of bytes received so far from the host, without considering file
// compression.
long bytesReceived;
// Number of bytes in the whole file, without considering file compression,
// or -1 if unknown.
long totalBytes;
// Number of bytes in the whole file post-decompression, or -1 if unknown.
long fileSize;
// Whether the downloaded file still exists. This information may be out of
// date because Chrome does not automatically watch for file removal. Call
// $ref:search() in order to trigger the check for file existence. When the
// existence check completes, if the file has been deleted, then an
// $ref:onChanged event will fire. Note that $ref:search() does not wait
// for the existence check to finish before returning, so results from
// $ref:search() may not accurately reflect the file system. Also,
// $ref:search() may be called as often as necessary, but will not check for
// file existence any more frequently than once every 10 seconds.
boolean exists;
};
[inline_doc] dictionary DownloadQuery {
// This space-separated string of search terms that may be grouped using
// quotation marks limits results to
// $ref:DownloadItem whose <code>filename</code>
// or <code>url</code> contain all of the search terms that do not begin with a dash '-'
// and none of the search terms that do begin with a dash.
DOMString? query;
// Limits results to $ref:DownloadItem that
// started before the given ms since the epoch.
DOMString? startedBefore;
// Limits results to $ref:DownloadItem that
// started after the given ms since the epoch.
DOMString? startedAfter;
// Limits results to $ref:DownloadItem that ended before the given ms since the
// epoch.
DOMString? endedBefore;
// Limits results to $ref:DownloadItem that ended after the given ms since the
// epoch.
DOMString? endedAfter;
// Limits results to $ref:DownloadItem whose
// <code>totalBytes</code> is greater than the given integer.
long? totalBytesGreater;
// Limits results to $ref:DownloadItem whose
// <code>totalBytes</code> is less than the given integer.
long? totalBytesLess;
// Limits results to $ref:DownloadItem whose
// <code>filename</code> matches the given regular expression.
DOMString? filenameRegex;
// Limits results to $ref:DownloadItem whose
// <code>url</code> matches the given regular expression.
DOMString? urlRegex;
// Setting this integer limits the number of results. Otherwise, all
// matching $ref:DownloadItem will be returned.
long? limit;
// Setting this string to a $ref:DownloadItem
// property sorts the $ref:DownloadItem prior
// to applying the above filters. For example, setting
// <code>orderBy='startTime'</code> sorts the
// $ref:DownloadItem by their start time in
// ascending order. To specify descending order, prefix <code>orderBy</code>
// with a hyphen: '-startTime'.
DOMString? orderBy;
// The <code>id</code> of the $ref:DownloadItem to query.
long? id;
// Absolute URL.
DOMString? url;
// Absolute local path.
DOMString? filename;
// Indication of whether this download is thought to be safe or known to be
// suspicious.
DangerType? danger;
// True if the user has accepted the download's danger.
boolean? dangerAccepted;
// The file's MIME type.
DOMString? mime;
// The time when the download began in ISO 8601 format.
DOMString? startTime;
// The time when the download ended in ISO 8601 format.
DOMString? endTime;
// Indicates whether the download is progressing, interrupted, or complete.
State? state;
// True if the download has stopped reading data from the host, but kept the
// connection open.
boolean? paused;
// Number indicating why a download was interrupted.
long? error;
// Number of bytes received so far from the host, without considering file
// compression.
long? bytesReceived;
// Number of bytes in the whole file, without considering file compression,
// or -1 if unknown.
long? totalBytes;
// Number of bytes in the whole file post-decompression, or -1 if unknown.
long? fileSize;
// Whether the downloaded file exists;
boolean? exists;
};
[inline_doc] dictionary DownloadStringDiff {
DOMString? previous;
DOMString? current;
};
[inline_doc] dictionary DownloadLongDiff {
long? previous;
long? current;
};
[inline_doc] dictionary DownloadBooleanDiff {
boolean? previous;
boolean? current;
};
// Encapsulates a change in a DownloadItem.
[inline_doc] dictionary DownloadDelta {
// The <code>id</code> of the $ref:DownloadItem
// that changed.
long id;
// The change in <code>url</code>, if any.
DownloadStringDiff? url;
// The change in <code>filename</code>, if any.
DownloadStringDiff? filename;
// The change in <code>danger</code>, if any.
DownloadStringDiff? danger;
// The change in <code>dangerAccepted</code>, if any.
DownloadBooleanDiff? dangerAccepted;
// The change in <code>mime</code>, if any.
DownloadStringDiff? mime;
// The change in <code>startTime</code>, if any.
DownloadStringDiff? startTime;
// The change in <code>endTime</code>, if any.
DownloadStringDiff? endTime;
// The change in <code>state</code>, if any.
DownloadStringDiff? state;
// The change in <code>paused</code>, if any.
DownloadBooleanDiff? paused;
// The change in <code>error</code>, if any.
DownloadLongDiff? error;
// The change in <code>totalBytes</code>, if any.
DownloadLongDiff? totalBytes;
// The change in <code>fileSize</code>, if any.
DownloadLongDiff? fileSize;
// The change in <code>exists</code>, if any.
DownloadBooleanDiff? exists;
};
[inline_doc] dictionary GetFileIconOptions {
// The size of the icon. The returned icon will be square with dimensions
// size * size pixels. The default size for the icon is 32x32 pixels.
[legalValues=(16,32)] long? size;
};
callback DownloadCallback = void(long downloadId);
callback SearchCallback = void(DownloadItem[] results);
callback EraseCallback = void(long[] erasedIds);
callback NullCallback = void();
callback GetFileIconCallback = void(optional DOMString iconURL);
callback SuggestFilenameCallback = void(
optional FilenameSuggestion suggestion);
interface Functions {
// Download a URL. If the URL uses the HTTP[S] protocol, then the request
// will include all cookies currently set for its hostname. If both
// <code>filename</code> and <code>saveAs</code> are specified, then the
// Save As dialog will be displayed, pre-populated with the specified
// <code>filename</code>. If the download started successfully,
// <code>callback</code> will be called with the new $ref:DownloadItem's
// <code>downloadId</code>. If there was an error starting the download,
// then <code>callback</code> will be called with
// <code>downloadId=undefined</code> and $ref:runtime.lastError will contain
// a descriptive string. The error strings are not guaranteed to remain
// backwards compatible between releases. Extensions must not parse it.
// |options|: What to download and how.
// |callback|: Called with the id of the new $ref:DownloadItem.
static void download(DownloadOptions options,
optional DownloadCallback callback);
// Find $ref:DownloadItem. Set
// <code>query</code> to the empty object to get all
// $ref:DownloadItem. To get a specific
// $ref:DownloadItem, set only the <code>id</code>
// field.
static void search(DownloadQuery query, SearchCallback callback);
// Pause the download. If the request was successful the download is in a
// paused state. Otherwise
// $ref:runtime.lastError
// contains an error message. The request will fail if the download is not
// active.
// |downloadId|: The id of the download to pause.
// |callback|: Called when the pause request is completed.
static void pause(long downloadId, optional NullCallback callback);
// Resume a paused download. If the request was successful the download is
// in progress and unpaused. Otherwise
// $ref:runtime.lastError
// contains an error message. The request will fail if the download is not
// active.
// |downloadId|: The id of the download to resume.
// |callback|: Called when the resume request is completed.
static void resume(long downloadId, optional NullCallback callback);
// Cancel a download. When <code>callback</code> is run, the download is
// cancelled, completed, interrupted or doesn't exist anymore.
// |downloadId|: The id of the download to cancel.
// |callback|: Called when the cancel request is completed.
static void cancel(long downloadId, optional NullCallback callback);
// Retrieve an icon for the specified download. For new downloads, file
// icons are available after the $ref:onCreated
// event has been received. The image returned by this function while a
// download is in progress may be different from the image returned after
// the download is complete. Icon retrieval is done by querying the
// underlying operating system or toolkit depending on the platform. The
// icon that is returned will therefore depend on a number of factors
// including state of the download, platform, registered file types and
// visual theme. If a file icon cannot be determined,
// $ref:runtime.lastError
// will contain an error message.
// |downloadId|: The identifier for the download.
// |callback|: A URL to an image that represents the download.
static void getFileIcon(long downloadId,
optional GetFileIconOptions options,
GetFileIconCallback callback);
// Open the downloaded file now if the $ref:DownloadItem is complete;
// returns an error through $ref:runtime.lastError otherwise. An
// $ref:onChanged event will fire when the item is opened for the first
// time.
// |downloadId|: The identifier for the downloaded file.
static void open(long downloadId);
// Show the downloaded file in its folder in a file manager.
// |downloadId|: The identifier for the downloaded file.
static void show(long downloadId);
// Erase matching $ref:DownloadItem from history. An $ref:onErased event
// will fire for each $ref:DownloadItem that matches <code>query</code>,
// then <code>callback</code> will be called.
static void erase(DownloadQuery query, optional EraseCallback callback);
// Prompt the user to accept a dangerous download. Does not automatically
// accept dangerous downloads. If the download is accepted, then an
// $ref:onChanged event will fire, otherwise nothing will happen. When all
// the data is fetched into a temporary file and either the download is not
// dangerous or the danger has been accepted, then the temporary file is
// renamed to the target filename, the |state| changes to 'complete', and
// $ref:onChanged fires.
// |downloadId|: The identifier for the $ref:DownloadItem.
static void acceptDanger(long downloadId);
// Initiate dragging the downloaded file to another application.
static void drag(long downloadId);
};
interface Events {
// This event fires with the $ref:DownloadItem
// object when a download begins.
static void onCreated(DownloadItem downloadItem);
// Fires with the <code>downloadId</code> when a download is erased from
// history.
// |downloadId|: The <code>id</code> of the $ref:DownloadItem that was erased.
static void onErased(long downloadId);
// When any of a $ref:DownloadItem's properties
// except <code>bytesReceived</code> changes, this event fires with the
// <code>downloadId</code> and an object containing the properties that changed.
static void onChanged(DownloadDelta downloadDelta);
// During the filename determination process, extensions will be given the
// opportunity to override the target $ref:DownloadItem.filename. Each
// extension may not register more than one listener for this event. Each
// listener must call <code>suggest</code> exactly once, either
// synchronously or asynchronously. If the listener calls
// <code>suggest</code> asynchronously, then it must return
// <code>true</code>. If the listener neither calls <code>suggest</code>
// synchronously nor returns <code>true</code>, then <code>suggest</code>
// will be called automatically. The $ref:DownloadItem will not complete
// until all listeners have called <code>suggest</code>. Listeners may call
// <code>suggest</code> without any arguments in order to allow the download
// to use <code>downloadItem.filename</code> for its filename, or pass a
// $ref:FilenameSuggestion object to <code>suggest</code> in order to
// override the target filename. If more than one extension overrides the
// filename, then the last extension installed whose listener passes a
// $ref:FilenameSuggestion object to <code>suggest</code> wins. In order to
// avoid confusion regarding which extension will win, users should not
// install extensions that may conflict. If the download is initiated by
// $ref:download and the target filename is known before the MIME type and
// tentative filename have been determined, use
// $ref:DownloadOptions.filename instead.
[maxListeners=1] static void onDeterminingFilename(
DownloadItem downloadItem, SuggestFilenameCallback suggest);
};
};
|