2015-06-16 09:23:29 +00: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_SESSION_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_SESSION_H_
|
|
|
|
|
2015-06-24 03:59:11 +00:00
|
|
|
#include <string>
|
|
|
|
|
2015-06-24 07:37:04 +00:00
|
|
|
#include "atom/browser/api/trackable_object.h"
|
2016-08-31 00:08:32 +00:00
|
|
|
#include "atom/browser/atom_blob_reader.h"
|
2016-07-12 12:53:19 +00:00
|
|
|
#include "base/values.h"
|
2015-08-30 18:52:01 +00:00
|
|
|
#include "content/public/browser/download_manager.h"
|
2015-06-16 09:23:29 +00:00
|
|
|
#include "native_mate/handle.h"
|
2015-07-13 21:27:07 +00:00
|
|
|
#include "net/base/completion_callback.h"
|
2015-06-16 09:23:29 +00:00
|
|
|
|
2015-06-24 03:59:11 +00:00
|
|
|
class GURL;
|
|
|
|
|
2015-07-30 02:38:04 +00:00
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
2015-08-10 07:28:18 +00:00
|
|
|
namespace mate {
|
|
|
|
class Arguments;
|
2015-09-27 13:19:52 +00:00
|
|
|
class Dictionary;
|
2015-08-10 07:28:18 +00:00
|
|
|
}
|
|
|
|
|
2015-10-22 17:26:36 +00:00
|
|
|
namespace net {
|
|
|
|
class ProxyConfig;
|
|
|
|
}
|
|
|
|
|
2015-06-16 09:23:29 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2015-06-23 15:40:41 +00:00
|
|
|
class AtomBrowserContext;
|
|
|
|
|
2015-06-16 09:23:29 +00:00
|
|
|
namespace api {
|
|
|
|
|
2015-08-30 18:52:01 +00:00
|
|
|
class Session: public mate::TrackableObject<Session>,
|
|
|
|
public content::DownloadManager::Observer {
|
2015-06-16 09:23:29 +00:00
|
|
|
public:
|
2015-06-24 03:59:11 +00:00
|
|
|
using ResolveProxyCallback = base::Callback<void(std::string)>;
|
|
|
|
|
2016-01-14 09:31:54 +00:00
|
|
|
enum class CacheAction {
|
|
|
|
CLEAR,
|
|
|
|
STATS,
|
|
|
|
};
|
|
|
|
|
2015-06-24 07:37:04 +00:00
|
|
|
// Gets or creates Session from the |browser_context|.
|
|
|
|
static mate::Handle<Session> CreateFrom(
|
|
|
|
v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
2015-06-16 09:23:29 +00:00
|
|
|
|
2016-07-12 12:01:49 +00:00
|
|
|
// Gets the Session of |partition|.
|
2015-09-05 14:39:48 +00:00
|
|
|
static mate::Handle<Session> FromPartition(
|
2016-07-12 12:53:19 +00:00
|
|
|
v8::Isolate* isolate, const std::string& partition,
|
|
|
|
const base::DictionaryValue& options = base::DictionaryValue());
|
2015-09-05 14:39:48 +00:00
|
|
|
|
|
|
|
AtomBrowserContext* browser_context() const { return browser_context_.get(); }
|
2015-07-15 12:35:38 +00:00
|
|
|
|
2015-12-03 08:04:46 +00:00
|
|
|
// mate::TrackableObject:
|
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
2016-08-02 09:08:12 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype);
|
2015-12-03 08:04:46 +00:00
|
|
|
|
2016-06-22 06:57:51 +00:00
|
|
|
// Methods.
|
2015-06-24 03:59:11 +00:00
|
|
|
void ResolveProxy(const GURL& url, ResolveProxyCallback callback);
|
2016-01-14 09:31:54 +00:00
|
|
|
template<CacheAction action>
|
|
|
|
void DoCacheAction(const net::CompletionCallback& callback);
|
2015-07-13 22:13:17 +00:00
|
|
|
void ClearStorageData(mate::Arguments* args);
|
2016-01-12 15:28:12 +00:00
|
|
|
void FlushStorageData();
|
2015-10-22 17:26:36 +00:00
|
|
|
void SetProxy(const net::ProxyConfig& config, const base::Closure& callback);
|
2015-07-30 02:38:04 +00:00
|
|
|
void SetDownloadPath(const base::FilePath& path);
|
2015-09-27 13:19:52 +00:00
|
|
|
void EnableNetworkEmulation(const mate::Dictionary& options);
|
|
|
|
void DisableNetworkEmulation();
|
2015-11-18 03:17:08 +00:00
|
|
|
void SetCertVerifyProc(v8::Local<v8::Value> proc, mate::Arguments* args);
|
2016-01-31 21:35:34 +00:00
|
|
|
void SetPermissionRequestHandler(v8::Local<v8::Value> val,
|
|
|
|
mate::Arguments* args);
|
2016-02-01 13:33:23 +00:00
|
|
|
void ClearHostResolverCache(mate::Arguments* args);
|
2016-11-30 16:35:15 +00:00
|
|
|
void ClearAuthCache(mate::Arguments* args);
|
2016-05-23 05:29:55 +00:00
|
|
|
void AllowNTLMCredentialsForDomains(const std::string& domains);
|
2016-06-22 06:57:51 +00:00
|
|
|
void SetUserAgent(const std::string& user_agent, mate::Arguments* args);
|
|
|
|
std::string GetUserAgent();
|
2016-08-31 00:08:32 +00:00
|
|
|
void GetBlobData(const std::string& uuid,
|
|
|
|
const AtomBlobReader::CompletionCallback& callback);
|
2016-11-18 10:43:43 +00:00
|
|
|
void CreateInterruptedDownload(const mate::Dictionary& options);
|
2017-09-16 15:05:49 +00:00
|
|
|
void AddPreload(const base::FilePath::StringType& preloadPath);
|
|
|
|
void RemovePreload(const base::FilePath::StringType& preloadPath);
|
|
|
|
std::vector<base::FilePath::StringType> GetPreloads();
|
2015-06-16 09:23:29 +00:00
|
|
|
v8::Local<v8::Value> Cookies(v8::Isolate* isolate);
|
2016-06-08 14:31:27 +00:00
|
|
|
v8::Local<v8::Value> Protocol(v8::Isolate* isolate);
|
2015-12-01 04:52:22 +00:00
|
|
|
v8::Local<v8::Value> WebRequest(v8::Isolate* isolate);
|
2015-06-16 09:23:29 +00:00
|
|
|
|
2016-06-22 06:57:51 +00:00
|
|
|
protected:
|
|
|
|
Session(v8::Isolate* isolate, AtomBrowserContext* browser_context);
|
|
|
|
~Session();
|
|
|
|
|
|
|
|
// content::DownloadManager::Observer:
|
|
|
|
void OnDownloadCreated(content::DownloadManager* manager,
|
|
|
|
content::DownloadItem* item) override;
|
|
|
|
|
|
|
|
private:
|
2015-12-01 04:52:22 +00:00
|
|
|
// Cached object.
|
2015-06-16 09:23:29 +00:00
|
|
|
v8::Global<v8::Value> cookies_;
|
2016-06-08 14:31:27 +00:00
|
|
|
v8::Global<v8::Value> protocol_;
|
2015-12-01 04:52:22 +00:00
|
|
|
v8::Global<v8::Value> web_request_;
|
2015-06-16 09:23:29 +00:00
|
|
|
|
2016-04-18 04:59:15 +00:00
|
|
|
// The X-DevTools-Emulate-Network-Conditions-Client-Id.
|
|
|
|
std::string devtools_network_emulation_client_id_;
|
|
|
|
|
2015-09-05 14:39:48 +00:00
|
|
|
scoped_refptr<AtomBrowserContext> browser_context_;
|
2017-09-16 15:05:49 +00:00
|
|
|
std::vector<base::FilePath::StringType> g_preloads;
|
2015-06-18 10:38:32 +00:00
|
|
|
|
2015-06-16 09:23:29 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Session);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_SESSION_H_
|