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
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "android_webview/native/cookie_manager.h"
#include "android_webview/browser/aw_cookie_access_policy.h"
#include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h"
#include "android_webview/native/aw_browser_dependency_factory.h"
#include "base/android/jni_string.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/lazy_instance.h"
#include "base/message_loop.h"
#include "base/message_loop_proxy.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/thread_restrictions.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/url_constants.h"
#include "jni/AwCookieManager_jni.h"
#include "net/cookies/cookie_monster.h"
#include "net/cookies/cookie_options.h"
#include "net/url_request/url_request_context.h"
using base::android::ConvertJavaStringToUTF8;
using base::android::ConvertJavaStringToUTF16;
using content::BrowserThread;
using net::CookieList;
using net::CookieMonster;
// In the future, we may instead want to inject an explicit CookieStore
// dependency into this object during process initialization to avoid
// depending on the URLRequestContext.
// See issue http://crbug.com/157683
// All functions on the CookieManager can be called from any thread, including
// threads without a message loop. BrowserThread::FILE is used to call methods
// on CookieMonster that needs to be called, and called back, on a chrome
// thread.
namespace android_webview {
namespace {
class CookieManager {
public:
static CookieManager* GetInstance();
void SetCookieMonster(net::CookieMonster* cookie_monster);
void SetAcceptCookie(bool accept);
bool AcceptCookie();
void SetCookie(const GURL& host, const std::string& cookie_value);
std::string GetCookie(const GURL& host);
void RemoveSessionCookie();
void RemoveAllCookie();
void RemoveExpiredCookie();
void FlushCookieStore();
bool HasCookies();
bool AllowFileSchemeCookies();
void SetAcceptFileSchemeCookies(bool accept);
private:
friend struct base::DefaultLazyInstanceTraits<CookieManager>;
CookieManager();
~CookieManager();
typedef base::Callback<void(base::WaitableEvent*)> CookieTask;
void ExecCookieTask(const CookieTask& task,
const bool wait_for_completion);
void SetCookieAsyncHelper(
const GURL& host,
const std::string& value,
base::WaitableEvent* completion);
void SetCookieCompleted(bool success);
void GetCookieValueAsyncHelper(
const GURL& host,
std::string* result,
base::WaitableEvent* completion);
void GetCookieValueCompleted(base::WaitableEvent* completion,
std::string* result,
const std::string& value);
void RemoveSessionCookieAsyncHelper(base::WaitableEvent* completion);
void RemoveAllCookieAsyncHelper(base::WaitableEvent* completion);
void RemoveCookiesCompleted(int num_deleted);
void FlushCookieStoreAsyncHelper(base::WaitableEvent* completion);
void HasCookiesAsyncHelper(bool* result,
base::WaitableEvent* completion);
void HasCookiesCompleted(base::WaitableEvent* completion,
bool* result,
const CookieList& cookies);
scoped_refptr<net::CookieMonster> cookie_monster_;
DISALLOW_COPY_AND_ASSIGN(CookieManager);
};
base::LazyInstance<CookieManager>::Leaky g_lazy_instance;
// static
CookieManager* CookieManager::GetInstance() {
return g_lazy_instance.Pointer();
}
CookieManager::CookieManager() {
}
CookieManager::~CookieManager() {
}
// Executes the |task| on the FILE thread. |wait_for_completion| should only be
// true if the Java API method returns a value or is explicitly stated to be
// synchronous.
void CookieManager::ExecCookieTask(const CookieTask& task,
const bool wait_for_completion) {
base::WaitableEvent completion(false, false);
DCHECK(cookie_monster_);
BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
base::Bind(task, wait_for_completion ? &completion : NULL));
if (wait_for_completion) {
ScopedAllowWaitForLegacyWebViewApi wait;
completion.Wait();
}
}
void CookieManager::SetCookieMonster(net::CookieMonster* cookie_monster) {
DCHECK(!cookie_monster_);
cookie_monster_ = cookie_monster;
}
void CookieManager::SetAcceptCookie(bool accept) {
AwCookieAccessPolicy::GetInstance()->SetGlobalAllowAccess(accept);
}
bool CookieManager::AcceptCookie() {
return AwCookieAccessPolicy::GetInstance()->GetGlobalAllowAccess();
}
void CookieManager::SetCookie(const GURL& host,
const std::string& cookie_value) {
ExecCookieTask(base::Bind(&CookieManager::SetCookieAsyncHelper,
base::Unretained(this),
host,
cookie_value), false);
}
void CookieManager::SetCookieAsyncHelper(
const GURL& host,
const std::string& value,
base::WaitableEvent* completion) {
DCHECK(!completion);
net::CookieOptions options;
options.set_include_httponly();
cookie_monster_->SetCookieWithOptionsAsync(
host, value, options,
base::Bind(&CookieManager::SetCookieCompleted, base::Unretained(this)));
}
void CookieManager::SetCookieCompleted(bool success) {
// The CookieManager API does not return a value for SetCookie,
// so we don't need to propagate the |success| value back to the caller.
}
std::string CookieManager::GetCookie(const GURL& host) {
std::string cookie_value;
ExecCookieTask(base::Bind(&CookieManager::GetCookieValueAsyncHelper,
base::Unretained(this),
host,
&cookie_value), true);
return cookie_value;
}
void CookieManager::GetCookieValueAsyncHelper(
const GURL& host,
std::string* result,
base::WaitableEvent* completion) {
net::CookieOptions options;
options.set_include_httponly();
cookie_monster_->GetCookiesWithOptionsAsync(
host,
options,
base::Bind(&CookieManager::GetCookieValueCompleted,
base::Unretained(this),
completion,
result));
}
void CookieManager::GetCookieValueCompleted(base::WaitableEvent* completion,
std::string* result,
const std::string& value) {
*result = value;
DCHECK(completion);
completion->Signal();
}
void CookieManager::RemoveSessionCookie() {
ExecCookieTask(base::Bind(&CookieManager::RemoveSessionCookieAsyncHelper,
base::Unretained(this)), false);
}
void CookieManager::RemoveSessionCookieAsyncHelper(
base::WaitableEvent* completion) {
DCHECK(!completion);
cookie_monster_->DeleteSessionCookiesAsync(
base::Bind(&CookieManager::RemoveCookiesCompleted,
base::Unretained(this)));
}
void CookieManager::RemoveCookiesCompleted(int num_deleted) {
// The CookieManager API does not return a value for removeSessionCookie or
// removeAllCookie, so we don't need to propagate the |num_deleted| value back
// to the caller.
}
void CookieManager::RemoveAllCookie() {
ExecCookieTask(base::Bind(&CookieManager::RemoveAllCookieAsyncHelper,
base::Unretained(this)), false);
}
// TODO(kristianm): Pass a null callback so it will not be invoked
// across threads.
void CookieManager::RemoveAllCookieAsyncHelper(
base::WaitableEvent* completion) {
DCHECK(!completion);
cookie_monster_->DeleteAllAsync(
base::Bind(&CookieManager::RemoveCookiesCompleted,
base::Unretained(this)));
}
void CookieManager::RemoveExpiredCookie() {
// HasCookies will call GetAllCookiesAsync, which in turn will force a GC.
HasCookies();
}
void CookieManager::FlushCookieStoreAsyncHelper(
base::WaitableEvent* completion) {
DCHECK(!completion);
cookie_monster_->FlushStore(base::Bind(&base::DoNothing));
}
void CookieManager::FlushCookieStore() {
ExecCookieTask(base::Bind(&CookieManager::FlushCookieStoreAsyncHelper,
base::Unretained(this)), false);
}
bool CookieManager::HasCookies() {
bool has_cookies;
ExecCookieTask(base::Bind(&CookieManager::HasCookiesAsyncHelper,
base::Unretained(this),
&has_cookies), true);
return has_cookies;
}
// TODO(kristianm): Simplify this, copying the entire list around
// should not be needed.
void CookieManager::HasCookiesAsyncHelper(bool* result,
base::WaitableEvent* completion) {
cookie_monster_->GetAllCookiesAsync(
base::Bind(&CookieManager::HasCookiesCompleted,
base::Unretained(this),
completion,
result));
}
void CookieManager::HasCookiesCompleted(base::WaitableEvent* completion,
bool* result,
const CookieList& cookies) {
*result = cookies.size() != 0;
DCHECK(completion);
completion->Signal();
}
bool CookieManager::AllowFileSchemeCookies() {
return cookie_monster_->IsCookieableScheme(chrome::kFileScheme);
}
void CookieManager::SetAcceptFileSchemeCookies(bool accept) {
// The docs on CookieManager base class state the API must not be called after
// creating a CookieManager instance (which contradicts its own internal
// implementation) but this code does rely on the essence of that comment, as
// the monster will DCHECK here if it has already been lazy initialized (i.e.
// if cookies have been read or written from the store). If that turns out to
// be a problemin future, it looks like it maybe possible to relax the DCHECK.
cookie_monster_->SetEnableFileScheme(accept);
}
} // namespace
static void SetAcceptCookie(JNIEnv* env, jobject obj, jboolean accept) {
CookieManager::GetInstance()->SetAcceptCookie(accept);
}
static jboolean AcceptCookie(JNIEnv* env, jobject obj) {
return CookieManager::GetInstance()->AcceptCookie();
}
static void SetCookie(JNIEnv* env, jobject obj, jstring url, jstring value) {
GURL host(ConvertJavaStringToUTF16(env, url));
std::string cookie_value(ConvertJavaStringToUTF8(env, value));
CookieManager::GetInstance()->SetCookie(host, cookie_value);
}
static jstring GetCookie(JNIEnv* env, jobject obj, jstring url) {
GURL host(ConvertJavaStringToUTF16(env, url));
return base::android::ConvertUTF8ToJavaString(
env,
CookieManager::GetInstance()->GetCookie(host)).Release();
}
static void RemoveSessionCookie(JNIEnv* env, jobject obj) {
CookieManager::GetInstance()->RemoveSessionCookie();
}
static void RemoveAllCookie(JNIEnv* env, jobject obj) {
CookieManager::GetInstance()->RemoveAllCookie();
}
static void RemoveExpiredCookie(JNIEnv* env, jobject obj) {
CookieManager::GetInstance()->RemoveExpiredCookie();
}
static void FlushCookieStore(JNIEnv* env, jobject obj) {
CookieManager::GetInstance()->FlushCookieStore();
}
static jboolean HasCookies(JNIEnv* env, jobject obj) {
return CookieManager::GetInstance()->HasCookies();
}
static jboolean AllowFileSchemeCookies(JNIEnv* env, jobject obj) {
return CookieManager::GetInstance()->AllowFileSchemeCookies();
}
static void SetAcceptFileSchemeCookies(JNIEnv* env, jobject obj,
jboolean accept) {
return CookieManager::GetInstance()->SetAcceptFileSchemeCookies(accept);
}
void SetCookieMonsterOnNetworkStackInit(net::CookieMonster* cookie_monster) {
CookieManager::GetInstance()->SetCookieMonster(cookie_monster);
}
bool RegisterCookieManager(JNIEnv* env) {
return RegisterNativesImpl(env);
}
} // android_webview namespace
|