2015-06-14 08:19:53 +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_COOKIES_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_COOKIES_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "base/callback.h"
|
|
|
|
#include "base/values.h"
|
|
|
|
#include "native_mate/wrappable.h"
|
|
|
|
#include "native_mate/handle.h"
|
|
|
|
#include "native_mate/dictionary.h"
|
|
|
|
|
|
|
|
#include "net/cookies/canonical_cookie.h"
|
|
|
|
|
2015-06-18 10:38:32 +00:00
|
|
|
namespace content {
|
2015-06-20 02:41:40 +00:00
|
|
|
class BrowserContext;
|
2015-06-18 10:38:32 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
|
|
|
class Cookies : public mate::Wrappable {
|
|
|
|
public:
|
|
|
|
// node.js style callback function(error, result)
|
|
|
|
typedef base::Callback<void(v8::Local<v8::Value>, v8::Local<v8::Value>)>
|
2015-06-15 07:33:09 +00:00
|
|
|
CookiesCallback;
|
2015-06-14 08:19:53 +00:00
|
|
|
|
2015-06-18 10:38:32 +00:00
|
|
|
static mate::Handle<Cookies> Create(v8::Isolate* isolate,
|
2015-06-20 02:41:40 +00:00
|
|
|
content::BrowserContext* browser_context);
|
2015-06-14 08:19:53 +00:00
|
|
|
|
|
|
|
protected:
|
2015-06-20 02:41:40 +00:00
|
|
|
explicit Cookies(content::BrowserContext* browser_context);
|
2015-06-14 08:19:53 +00:00
|
|
|
~Cookies();
|
|
|
|
|
|
|
|
void Get(const base::DictionaryValue& options,
|
2015-06-15 07:33:09 +00:00
|
|
|
const CookiesCallback& callback);
|
2015-06-18 10:38:32 +00:00
|
|
|
void Remove(const mate::Dictionary& details,
|
2015-06-15 07:33:09 +00:00
|
|
|
const CookiesCallback& callback);
|
2015-06-15 13:18:40 +00:00
|
|
|
void Set(const base::DictionaryValue& details,
|
|
|
|
const CookiesCallback& callback);
|
2015-06-14 08:19:53 +00:00
|
|
|
|
2015-06-18 10:38:32 +00:00
|
|
|
void GetCookiesOnIOThread(scoped_ptr<base::DictionaryValue> filter,
|
2015-06-15 07:33:09 +00:00
|
|
|
const CookiesCallback& callback);
|
2015-06-18 10:38:32 +00:00
|
|
|
void OnGetCookies(scoped_ptr<base::DictionaryValue> filter,
|
2015-06-15 07:33:09 +00:00
|
|
|
const CookiesCallback& callback,
|
2015-06-14 08:19:53 +00:00
|
|
|
const net::CookieList& cookie_list);
|
|
|
|
|
2015-06-15 07:33:09 +00:00
|
|
|
void RemoveCookiesOnIOThread(const GURL& url,
|
|
|
|
const std::string& name,
|
|
|
|
const CookiesCallback& callback);
|
|
|
|
void OnRemoveCookies(const CookiesCallback& callback);
|
|
|
|
|
2015-06-18 10:38:32 +00:00
|
|
|
void SetCookiesOnIOThread(scoped_ptr<base::DictionaryValue> details,
|
2015-06-15 13:18:40 +00:00
|
|
|
const GURL& url,
|
|
|
|
const CookiesCallback& callback);
|
2015-06-18 10:38:32 +00:00
|
|
|
void OnSetCookies(const CookiesCallback& callback,
|
2015-06-15 13:18:40 +00:00
|
|
|
bool set_success);
|
|
|
|
|
2015-06-15 07:33:09 +00:00
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
// mate::Wrappable implementations:
|
|
|
|
mate::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) override;
|
|
|
|
|
|
|
|
private:
|
2015-06-20 02:41:40 +00:00
|
|
|
content::BrowserContext* browser_context_;
|
2015-06-18 10:38:32 +00:00
|
|
|
|
2015-06-14 08:19:53 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Cookies);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2015-06-15 13:21:53 +00:00
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_COOKIES_H_
|