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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_API_DOWNLOADS_DOWNLOADS_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_DOWNLOADS_DOWNLOADS_API_H_
#include <memory>
#include <set>
#include <string>
#include "base/files/file_path.h"
#include "base/memory/raw_ptr.h"
#include "base/scoped_observation.h"
#include "base/time/time.h"
#include "chrome/browser/download/download_danger_prompt.h"
#include "chrome/common/extensions/api/downloads.h"
#include "components/download/content/public/all_download_item_notifier.h"
#include "components/download/public/common/download_path_reservation_tracker.h"
#include "content/public/browser/download_manager.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_function.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_registry_observer.h"
#include "extensions/browser/warning_set.h"
class DownloadFileIconExtractor;
class DownloadOpenPrompt;
class Profile;
// Functions in the chrome.downloads namespace facilitate
// controlling downloads from extensions. See the full API doc at
// https://docs.google.com/document/d/12rNimeeGaA8jEV60PPKtT4pmJYmY9ae_edl3hJyoXYE/
namespace download_extension_errors {
// Errors that can be returned through chrome.runtime.lastError.message.
extern const char kEmptyFile[];
extern const char kFileAlreadyDeleted[];
extern const char kFileNotRemoved[];
extern const char kIconNotFound[];
extern const char kInvalidDangerType[];
extern const char kInvalidFilename[];
extern const char kInvalidFilter[];
extern const char kInvalidHeaderName[];
extern const char kInvalidHeaderValue[];
extern const char kInvalidHeaderUnsafe[];
extern const char kInvalidId[];
extern const char kInvalidOrderBy[];
extern const char kInvalidQueryLimit[];
extern const char kInvalidState[];
extern const char kInvalidURL[];
extern const char kInvisibleContext[];
extern const char kNotComplete[];
extern const char kNotDangerous[];
extern const char kNotInProgress[];
extern const char kNotResumable[];
extern const char kOpenPermission[];
extern const char kShelfDisabled[];
extern const char kShelfPermission[];
extern const char kTooManyListeners[];
extern const char kUiDisabled[];
extern const char kUiPermission[];
extern const char kUnexpectedDeterminer[];
extern const char kUserGesture[];
} // namespace download_extension_errors
namespace extensions {
class DownloadedByExtension : public base::SupportsUserData::Data {
public:
static DownloadedByExtension* Get(download::DownloadItem* item);
DownloadedByExtension(download::DownloadItem* item,
const std::string& id,
const std::string& name);
DownloadedByExtension(const DownloadedByExtension&) = delete;
DownloadedByExtension& operator=(const DownloadedByExtension&) = delete;
const std::string& id() const { return id_; }
const std::string& name() const { return name_; }
private:
static const char kKey[];
std::string id_;
std::string name_;
};
class DownloadsDownloadFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.download", DOWNLOADS_DOWNLOAD)
DownloadsDownloadFunction();
DownloadsDownloadFunction(const DownloadsDownloadFunction&) = delete;
DownloadsDownloadFunction& operator=(const DownloadsDownloadFunction&) =
delete;
ResponseAction Run() override;
protected:
~DownloadsDownloadFunction() override;
private:
void OnStarted(const base::FilePath& creator_suggested_filename,
extensions::api::downloads::FilenameConflictAction
creator_conflict_action,
download::DownloadItem* item,
download::DownloadInterruptReason interrupt_reason);
};
class DownloadsSearchFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.search", DOWNLOADS_SEARCH)
DownloadsSearchFunction();
DownloadsSearchFunction(const DownloadsSearchFunction&) = delete;
DownloadsSearchFunction& operator=(const DownloadsSearchFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsSearchFunction() override;
};
class DownloadsPauseFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.pause", DOWNLOADS_PAUSE)
DownloadsPauseFunction();
DownloadsPauseFunction(const DownloadsPauseFunction&) = delete;
DownloadsPauseFunction& operator=(const DownloadsPauseFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsPauseFunction() override;
};
class DownloadsResumeFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.resume", DOWNLOADS_RESUME)
DownloadsResumeFunction();
DownloadsResumeFunction(const DownloadsResumeFunction&) = delete;
DownloadsResumeFunction& operator=(const DownloadsResumeFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsResumeFunction() override;
};
class DownloadsCancelFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.cancel", DOWNLOADS_CANCEL)
DownloadsCancelFunction();
DownloadsCancelFunction(const DownloadsCancelFunction&) = delete;
DownloadsCancelFunction& operator=(const DownloadsCancelFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsCancelFunction() override;
};
class DownloadsEraseFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.erase", DOWNLOADS_ERASE)
DownloadsEraseFunction();
DownloadsEraseFunction(const DownloadsEraseFunction&) = delete;
DownloadsEraseFunction& operator=(const DownloadsEraseFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsEraseFunction() override;
};
class DownloadsRemoveFileFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.removeFile", DOWNLOADS_REMOVEFILE)
DownloadsRemoveFileFunction();
DownloadsRemoveFileFunction(const DownloadsRemoveFileFunction&) = delete;
DownloadsRemoveFileFunction& operator=(const DownloadsRemoveFileFunction&) =
delete;
ResponseAction Run() override;
protected:
~DownloadsRemoveFileFunction() override;
private:
void Done(bool success);
};
class DownloadsAcceptDangerFunction : public ExtensionFunction {
public:
using OnPromptCreatedCallback =
base::OnceCallback<void(DownloadDangerPrompt*)>;
static void OnPromptCreatedForTesting(
OnPromptCreatedCallback* callback) {
on_prompt_created_ = callback;
}
DECLARE_EXTENSION_FUNCTION("downloads.acceptDanger", DOWNLOADS_ACCEPTDANGER)
DownloadsAcceptDangerFunction();
DownloadsAcceptDangerFunction(const DownloadsAcceptDangerFunction&) = delete;
DownloadsAcceptDangerFunction& operator=(
const DownloadsAcceptDangerFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsAcceptDangerFunction() override;
void DangerPromptCallback(int download_id,
DownloadDangerPrompt::Action action);
private:
void PromptOrWait(int download_id, int retries);
static OnPromptCreatedCallback* on_prompt_created_;
};
class DownloadsShowFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.show", DOWNLOADS_SHOW)
DownloadsShowFunction();
DownloadsShowFunction(const DownloadsShowFunction&) = delete;
DownloadsShowFunction& operator=(const DownloadsShowFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsShowFunction() override;
};
class DownloadsShowDefaultFolderFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION(
"downloads.showDefaultFolder", DOWNLOADS_SHOWDEFAULTFOLDER)
DownloadsShowDefaultFolderFunction();
DownloadsShowDefaultFolderFunction(
const DownloadsShowDefaultFolderFunction&) = delete;
DownloadsShowDefaultFolderFunction& operator=(
const DownloadsShowDefaultFolderFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsShowDefaultFolderFunction() override;
};
class DownloadsOpenFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.open", DOWNLOADS_OPEN)
DownloadsOpenFunction();
DownloadsOpenFunction(const DownloadsOpenFunction&) = delete;
DownloadsOpenFunction& operator=(const DownloadsOpenFunction&) = delete;
ResponseAction Run() override;
using OnPromptCreatedCallback = base::OnceCallback<void(DownloadOpenPrompt*)>;
static void set_on_prompt_created_cb_for_testing(
OnPromptCreatedCallback* on_prompt_created_cb) {
on_prompt_created_cb_ = on_prompt_created_cb;
}
protected:
~DownloadsOpenFunction() override;
private:
void OpenPromptDone(int download_id, bool accept);
static OnPromptCreatedCallback* on_prompt_created_cb_;
};
class DownloadsSetShelfEnabledFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.setShelfEnabled",
DOWNLOADS_SETSHELFENABLED)
DownloadsSetShelfEnabledFunction();
DownloadsSetShelfEnabledFunction(const DownloadsSetShelfEnabledFunction&) =
delete;
DownloadsSetShelfEnabledFunction& operator=(
const DownloadsSetShelfEnabledFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsSetShelfEnabledFunction() override;
};
class DownloadsSetUiOptionsFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.setUiOptions", DOWNLOADS_SETUIOPTIONS)
DownloadsSetUiOptionsFunction();
DownloadsSetUiOptionsFunction(const DownloadsSetUiOptionsFunction&) = delete;
DownloadsSetUiOptionsFunction& operator=(
const DownloadsSetUiOptionsFunction&) = delete;
ResponseAction Run() override;
protected:
~DownloadsSetUiOptionsFunction() override;
};
class DownloadsGetFileIconFunction : public ExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("downloads.getFileIcon", DOWNLOADS_GETFILEICON)
DownloadsGetFileIconFunction();
DownloadsGetFileIconFunction(const DownloadsGetFileIconFunction&) = delete;
DownloadsGetFileIconFunction& operator=(const DownloadsGetFileIconFunction&) =
delete;
ResponseAction Run() override;
void SetIconExtractorForTesting(DownloadFileIconExtractor* extractor);
protected:
~DownloadsGetFileIconFunction() override;
private:
void OnIconURLExtracted(const std::string& url);
base::FilePath path_;
std::unique_ptr<DownloadFileIconExtractor> icon_extractor_;
};
// Observes a single DownloadManager and many DownloadItems and dispatches
// onCreated and onErased events.
class ExtensionDownloadsEventRouter
: public extensions::EventRouter::Observer,
public extensions::ExtensionRegistryObserver,
public download::AllDownloadItemNotifier::Observer {
public:
typedef base::OnceCallback<void(
const base::FilePath& changed_filename,
download::DownloadPathReservationTracker::FilenameConflictAction)>
FilenameChangedCallback;
static void SetDetermineFilenameTimeoutSecondsForTesting(int s);
// The logic for how to handle conflicting filename suggestions from multiple
// extensions is split out here for testing.
static void DetermineFilenameInternal(
const base::FilePath& filename,
extensions::api::downloads::FilenameConflictAction conflict_action,
const std::string& suggesting_extension_id,
const base::Time& suggesting_install_time,
const std::string& incumbent_extension_id,
const base::Time& incumbent_install_time,
std::string* winner_extension_id,
base::FilePath* determined_filename,
extensions::api::downloads::FilenameConflictAction*
determined_conflict_action,
extensions::WarningSet* warnings);
// A downloads.onDeterminingFilename listener has returned. If the extension
// wishes to override the download's filename, then |filename| will be
// non-empty. |filename| will be interpreted as a relative path, appended to
// the default downloads directory. If the extension wishes to overwrite any
// existing files, then |overwrite| will be true. Returns true on success,
// false otherwise.
static bool DetermineFilename(
content::BrowserContext* browser_context,
bool include_incognito,
const std::string& ext_id,
int download_id,
const base::FilePath& filename,
extensions::api::downloads::FilenameConflictAction conflict_action,
std::string* error);
explicit ExtensionDownloadsEventRouter(
Profile* profile, content::DownloadManager* manager);
ExtensionDownloadsEventRouter(const ExtensionDownloadsEventRouter&) = delete;
ExtensionDownloadsEventRouter& operator=(
const ExtensionDownloadsEventRouter&) = delete;
~ExtensionDownloadsEventRouter() override;
void SetUiEnabled(const extensions::Extension* extension, bool enabled);
bool IsUiEnabled() const;
// Called by ChromeDownloadManagerDelegate during the filename determination
// process, allows extensions to change the item's target filename. If no
// extension wants to change the target filename, then |filename_changed| will
// be called with an empty filename and the filename determination process
// will continue as normal. If an extension wants to change the target
// filename, then |filename_changed| will be called with the new filename and
// a flag indicating whether the new file should overwrite any old files of
// the same name.
void OnDeterminingFilename(download::DownloadItem* item,
const base::FilePath& suggested_path,
FilenameChangedCallback filename_changed);
// AllDownloadItemNotifier::Observer.
void OnDownloadCreated(content::DownloadManager* manager,
download::DownloadItem* download_item) override;
void OnDownloadUpdated(content::DownloadManager* manager,
download::DownloadItem* download_item) override;
void OnDownloadRemoved(content::DownloadManager* manager,
download::DownloadItem* download_item) override;
// extensions::EventRouter::Observer.
void OnListenerRemoved(const extensions::EventListenerInfo& details) override;
void CheckForHistoryFilesRemoval();
private:
void DispatchEvent(events::HistogramValue histogram_value,
const std::string& event_name,
bool include_incognito,
Event::WillDispatchCallback will_dispatch_callback,
base::Value json_arg);
// extensions::ExtensionRegistryObserver.
void OnExtensionUnloaded(content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UnloadedExtensionReason reason) override;
raw_ptr<Profile> profile_;
download::AllDownloadItemNotifier notifier_;
std::set<raw_ptr<const extensions::Extension, SetExperimental>>
ui_disabling_extensions_;
base::Time last_checked_removal_;
// Listen to extension unloaded notifications.
base::ScopedObservation<extensions::ExtensionRegistry,
extensions::ExtensionRegistryObserver>
extension_registry_observation_{this};
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_DOWNLOADS_DOWNLOADS_API_H_
|