2015-09-20 18:56:10 +08:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_
|
|
|
|
|
|
|
|
#include <string>
|
2016-11-18 16:13:43 +05:30
|
|
|
#include <vector>
|
2015-09-20 18:56:10 +08:00
|
|
|
|
|
|
|
#include "atom/browser/api/trackable_object.h"
|
2018-11-08 15:51:06 +01:00
|
|
|
#include "atom/browser/ui/file_dialog.h"
|
2015-09-24 15:55:45 +08:00
|
|
|
#include "base/files/file_path.h"
|
2018-04-10 17:29:26 +02:00
|
|
|
#include "components/download/public/common/download_item.h"
|
2015-09-20 18:56:10 +08:00
|
|
|
#include "native_mate/handle.h"
|
|
|
|
#include "url/gurl.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2015-12-03 16:04:46 +08:00
|
|
|
class DownloadItem : public mate::TrackableObject<DownloadItem>,
|
2018-04-10 17:29:26 +02:00
|
|
|
public download::DownloadItem::Observer {
|
2015-09-20 18:56:10 +08:00
|
|
|
public:
|
|
|
|
static mate::Handle<DownloadItem> Create(v8::Isolate* isolate,
|
2018-04-10 17:29:26 +02:00
|
|
|
download::DownloadItem* item);
|
2015-09-24 19:31:09 +08:00
|
|
|
|
2015-12-03 16:04:46 +08:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 18:08:12 +09:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2015-12-03 16:04:46 +08:00
|
|
|
|
2016-02-02 20:11:39 +08:00
|
|
|
void Pause();
|
2016-06-09 20:51:01 +09:00
|
|
|
bool IsPaused() const;
|
2016-02-02 20:11:39 +08:00
|
|
|
void Resume();
|
2016-06-09 20:51:01 +09:00
|
|
|
bool CanResume() const;
|
2016-02-02 20:11:39 +08:00
|
|
|
void Cancel();
|
2016-03-08 23:28:53 +09:00
|
|
|
int64_t GetReceivedBytes() const;
|
|
|
|
int64_t GetTotalBytes() const;
|
2016-02-02 20:11:39 +08:00
|
|
|
std::string GetMimeType() const;
|
|
|
|
bool HasUserGesture() const;
|
|
|
|
std::string GetFilename() const;
|
|
|
|
std::string GetContentDisposition() const;
|
|
|
|
const GURL& GetURL() const;
|
2016-11-18 16:13:43 +05:30
|
|
|
const std::vector<GURL>& GetURLChain() const;
|
2018-04-10 17:29:26 +02:00
|
|
|
download::DownloadItem::DownloadState GetState() const;
|
2016-06-09 20:51:01 +09:00
|
|
|
bool IsDone() const;
|
2016-02-02 20:11:39 +08:00
|
|
|
void SetSavePath(const base::FilePath& path);
|
|
|
|
base::FilePath GetSavePath() const;
|
2018-11-08 15:51:06 +01:00
|
|
|
file_dialog::DialogSettings GetSaveDialogOptions() const;
|
|
|
|
void SetSaveDialogOptions(const file_dialog::DialogSettings& options);
|
2016-11-18 16:13:43 +05:30
|
|
|
std::string GetLastModifiedTime() const;
|
|
|
|
std::string GetETag() const;
|
|
|
|
double GetStartTime() const;
|
2016-02-02 20:11:39 +08:00
|
|
|
|
2015-09-24 19:31:09 +08:00
|
|
|
protected:
|
2018-04-10 17:29:26 +02:00
|
|
|
DownloadItem(v8::Isolate* isolate, download::DownloadItem* download_item);
|
2018-04-17 16:03:51 -07:00
|
|
|
~DownloadItem() override;
|
2015-09-20 18:56:10 +08:00
|
|
|
|
2018-04-10 17:29:26 +02:00
|
|
|
// Override download::DownloadItem::Observer methods
|
|
|
|
void OnDownloadUpdated(download::DownloadItem* download) override;
|
|
|
|
void OnDownloadDestroyed(download::DownloadItem* download) override;
|
2015-09-20 18:56:10 +08:00
|
|
|
|
|
|
|
private:
|
2016-02-02 20:11:39 +08:00
|
|
|
base::FilePath save_path_;
|
2018-11-08 15:51:06 +01:00
|
|
|
file_dialog::DialogSettings dialog_options_;
|
2018-04-10 17:29:26 +02:00
|
|
|
download::DownloadItem* download_item_;
|
2015-09-20 18:56:10 +08:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DownloadItem);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_DOWNLOAD_ITEM_H_
|