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"
|
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-13 22:13:17 +00:00
|
|
|
namespace mate {
|
|
|
|
class Arguments;
|
|
|
|
}
|
|
|
|
|
2015-07-30 02:38:04 +00:00
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
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-06-24 09:58:12 +00:00
|
|
|
class Session: public mate::TrackableObject<Session> {
|
2015-06-16 09:23:29 +00:00
|
|
|
public:
|
2015-06-24 03:59:11 +00:00
|
|
|
using ResolveProxyCallback = base::Callback<void(std::string)>;
|
|
|
|
|
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
|
|
|
|
2015-07-16 20:30:43 +00:00
|
|
|
AtomBrowserContext* browser_context() const { return browser_context_; }
|
2015-07-15 12:35:38 +00:00
|
|
|
|
2015-06-16 09:23:29 +00:00
|
|
|
protected:
|
2015-06-23 15:40:41 +00:00
|
|
|
explicit Session(AtomBrowserContext* browser_context);
|
2015-06-16 09:23:29 +00:00
|
|
|
~Session();
|
|
|
|
|
|
|
|
// mate::Wrappable implementations:
|
|
|
|
mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) override;
|
|
|
|
|
|
|
|
private:
|
2015-06-24 03:59:11 +00:00
|
|
|
void ResolveProxy(const GURL& url, ResolveProxyCallback callback);
|
2015-07-13 21:27:07 +00:00
|
|
|
void ClearCache(const net::CompletionCallback& callback);
|
2015-07-13 22:13:17 +00:00
|
|
|
void ClearStorageData(mate::Arguments* args);
|
2015-07-16 14:36:48 +00:00
|
|
|
void SetProxy(const std::string& proxy, const base::Closure& callback);
|
2015-07-30 02:38:04 +00:00
|
|
|
void SetDownloadPath(const base::FilePath& path);
|
2015-06-16 09:23:29 +00:00
|
|
|
v8::Local<v8::Value> Cookies(v8::Isolate* isolate);
|
|
|
|
|
|
|
|
v8::Global<v8::Value> cookies_;
|
|
|
|
|
2015-06-23 15:40:41 +00:00
|
|
|
AtomBrowserContext* browser_context_; // weak ref
|
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_
|