// 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 "chrome/browser/automation/automation_util.h" #include #include "base/bind.h" #include "base/memory/scoped_ptr.h" #include "base/synchronization/waitable_event.h" #include "base/time.h" #include "base/values.h" #include "chrome/browser/automation/automation_provider.h" #include "chrome/browser/automation/automation_provider_json.h" #include "chrome/browser/extensions/extension_service.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_list.h" #include "content/browser/browser_thread.h" #include "content/browser/renderer_host/render_process_host.h" #include "content/browser/renderer_host/render_view_host.h" #include "content/browser/tab_contents/tab_contents.h" #include "net/base/cookie_monster.h" #include "net/base/cookie_store.h" #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_context_getter.h" namespace { void GetCookiesCallback(base::WaitableEvent* event, std::string* cookies, const std::string& cookie_line) { *cookies = cookie_line; event->Signal(); } void GetCookiesOnIOThread( const GURL& url, const scoped_refptr& context_getter, base::WaitableEvent* event, std::string* cookies) { context_getter->GetURLRequestContext()->cookie_store()-> GetCookiesAsync(url, base::Bind(&GetCookiesCallback, event, cookies)); } void GetCanonicalCookiesCallback( base::WaitableEvent* event, net::CookieList* cookie_list, const net::CookieList& cookies) { *cookie_list = cookies; event->Signal(); } void GetCanonicalCookiesOnIOThread( const GURL& url, const scoped_refptr& context_getter, base::WaitableEvent* event, net::CookieList* cookie_list) { context_getter->GetURLRequestContext()->cookie_store()-> GetCookieMonster()->GetAllCookiesForURLAsync( url, base::Bind(&GetCanonicalCookiesCallback, event, cookie_list)); } void SetCookieCallback(base::WaitableEvent* event, bool* success, bool result) { *success = result; event->Signal(); } void SetCookieOnIOThread( const GURL& url, const std::string& value, const scoped_refptr& context_getter, base::WaitableEvent* event, bool* success) { context_getter->GetURLRequestContext()->cookie_store()-> SetCookieWithOptionsAsync( url, value, net::CookieOptions(), base::Bind(&SetCookieCallback, event, success)); } void SetCookieWithDetailsOnIOThread( const GURL& url, const net::CookieMonster::CanonicalCookie& cookie, const std::string& original_domain, const scoped_refptr& context_getter, base::WaitableEvent* event, bool* success) { net::CookieMonster* cookie_monster = context_getter->GetURLRequestContext()->cookie_store()-> GetCookieMonster(); cookie_monster->SetCookieWithDetailsAsync( url, cookie.Name(), cookie.Value(), original_domain, cookie.Path(), cookie.ExpiryDate(), cookie.IsSecure(), cookie.IsHttpOnly(), base::Bind(&SetCookieCallback, event, success)); } void DeleteCookieCallback(base::WaitableEvent* event) { event->Signal(); } void DeleteCookieOnIOThread( const GURL& url, const std::string& name, const scoped_refptr& context_getter, base::WaitableEvent* event) { context_getter->GetURLRequestContext()->cookie_store()-> DeleteCookieAsync(url, name, base::Bind(&DeleteCookieCallback, event)); } } // namespace namespace automation_util { Browser* GetBrowserAt(int index) { if (index < 0 || index >= static_cast(BrowserList::size())) return NULL; return *(BrowserList::begin() + index); } TabContents* GetTabContentsAt(int browser_index, int tab_index) { if (tab_index < 0) return NULL; Browser* browser = GetBrowserAt(browser_index); if (!browser || tab_index >= browser->tab_count()) return NULL; return browser->GetTabContentsAt(tab_index); } net::URLRequestContextGetter* GetRequestContext(TabContents* contents) { // Since we may be on the UI thread don't call GetURLRequestContext(). // Get the request context specific to the current TabContents and app. return contents->browser_context()->GetRequestContextForRenderProcess( contents->render_view_host()->process()->id()); } void GetCookies(const GURL& url, TabContents* contents, int* value_size, std::string* value) { *value_size = -1; if (url.is_valid() && contents) { scoped_refptr context_getter = GetRequestContext(contents); base::WaitableEvent event(true /* manual reset */, false /* not initially signaled */); CHECK(BrowserThread::PostTask( BrowserThread::IO, FROM_HERE, NewRunnableFunction(&GetCookiesOnIOThread, url, context_getter, &event, value))); event.Wait(); *value_size = static_cast(value->size()); } } void SetCookie(const GURL& url, const std::string& value, TabContents* contents, int* response_value) { *response_value = -1; if (url.is_valid() && contents) { scoped_refptr context_getter = GetRequestContext(contents); base::WaitableEvent event(true /* manual reset */, false /* not initially signaled */); bool success = false; CHECK(BrowserThread::PostTask( BrowserThread::IO, FROM_HERE, NewRunnableFunction(&SetCookieOnIOThread, url, value, context_getter, &event, &success))); event.Wait(); if (success) *response_value = 1; } } void DeleteCookie(const GURL& url, const std::string& cookie_name, TabContents* contents, bool* success) { *success = false; if (url.is_valid() && contents) { scoped_refptr context_getter = GetRequestContext(contents); base::WaitableEvent event(true /* manual reset */, false /* not initially signaled */); CHECK(BrowserThread::PostTask( BrowserThread::IO, FROM_HERE, NewRunnableFunction(&DeleteCookieOnIOThread, url, cookie_name, context_getter, &event))); event.Wait(); *success = true; } } void GetCookiesJSON(AutomationProvider* provider, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(provider, reply_message); std::string url; if (!args->GetString("url", &url)) { reply.SendError("'url' missing or invalid"); return; } // Since we may be on the UI thread don't call GetURLRequestContext(). scoped_refptr context_getter = provider->profile()->GetRequestContext(); net::CookieList cookie_list; base::WaitableEvent event(true /* manual reset */, false /* not initially signaled */); Task* task = NewRunnableFunction( &GetCanonicalCookiesOnIOThread, GURL(url), context_getter, &event, &cookie_list); if (!BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, task)) { reply.SendError("Couldn't post task to get the cookies"); return; } event.Wait(); ListValue* list = new ListValue(); for (size_t i = 0; i < cookie_list.size(); ++i) { const net::CookieMonster::CanonicalCookie& cookie = cookie_list[i]; DictionaryValue* cookie_dict = new DictionaryValue(); cookie_dict->SetString("name", cookie.Name()); cookie_dict->SetString("value", cookie.Value()); cookie_dict->SetString("path", cookie.Path()); cookie_dict->SetString("domain", cookie.Domain()); cookie_dict->SetBoolean("secure", cookie.IsSecure()); cookie_dict->SetBoolean("http_only", cookie.IsHttpOnly()); if (cookie.DoesExpire()) cookie_dict->SetDouble("expiry", cookie.ExpiryDate().ToDoubleT()); list->Append(cookie_dict); } DictionaryValue dict; dict.Set("cookies", list); reply.SendSuccess(&dict); } void DeleteCookieJSON(AutomationProvider* provider, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(provider, reply_message); std::string url, name; if (!args->GetString("url", &url)) { reply.SendError("'url' missing or invalid"); return; } if (!args->GetString("name", &name)) { reply.SendError("'name' missing or invalid"); return; } // Since we may be on the UI thread don't call GetURLRequestContext(). scoped_refptr context_getter = provider->profile()->GetRequestContext(); base::WaitableEvent event(true /* manual reset */, false /* not initially signaled */); Task* task = NewRunnableFunction( &DeleteCookieOnIOThread, GURL(url), name, context_getter, &event); if (!BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, task)) { reply.SendError("Couldn't post task to delete the cookie"); return; } event.Wait(); reply.SendSuccess(NULL); } void SetCookieJSON(AutomationProvider* provider, DictionaryValue* args, IPC::Message* reply_message) { AutomationJSONReply reply(provider, reply_message); std::string url; if (!args->GetString("url", &url)) { reply.SendError("'url' missing or invalid"); return; } DictionaryValue* cookie_dict; if (!args->GetDictionary("cookie", &cookie_dict)) { reply.SendError("'cookie' missing or invalid"); return; } std::string name, value; std::string domain; std::string path = "/"; std::string mac_key; std::string mac_algorithm; bool secure = false; double expiry = 0; bool http_only = false; if (!cookie_dict->GetString("name", &name)) { reply.SendError("'name' missing or invalid"); return; } if (!cookie_dict->GetString("value", &value)) { reply.SendError("'value' missing or invalid"); return; } if (cookie_dict->HasKey("domain") && !cookie_dict->GetString("domain", &domain)) { reply.SendError("optional 'domain' invalid"); return; } if (cookie_dict->HasKey("path") && !cookie_dict->GetString("path", &path)) { reply.SendError("optional 'path' invalid"); return; } // mac_key and mac_algorithm are optional. if (cookie_dict->HasKey("mac_key")) cookie_dict->GetString("mac_key", &mac_key); if (cookie_dict->HasKey("mac_algorithm")) cookie_dict->GetString("mac_algorithm", &mac_algorithm); if (cookie_dict->HasKey("secure") && !cookie_dict->GetBoolean("secure", &secure)) { reply.SendError("optional 'secure' invalid"); return; } if (cookie_dict->HasKey("expiry")) { if (!cookie_dict->GetDouble("expiry", &expiry)) { reply.SendError("optional 'expiry' invalid"); return; } } if (cookie_dict->HasKey("http_only") && !cookie_dict->GetBoolean("http_only", &http_only)) { reply.SendError("optional 'http_only' invalid"); return; } scoped_ptr cookie( net::CookieMonster::CanonicalCookie::Create( GURL(url), name, value, domain, path, mac_key, mac_algorithm, base::Time(), base::Time::FromDoubleT(expiry), secure, http_only)); if (!cookie.get()) { reply.SendError("given 'cookie' parameters are invalid"); return; } // Since we may be on the UI thread don't call GetURLRequestContext(). scoped_refptr context_getter = provider->profile()->GetRequestContext(); base::WaitableEvent event(true /* manual reset */, false /* not initially signaled */); bool success = false; Task* task = NewRunnableFunction( &SetCookieWithDetailsOnIOThread, GURL(url), *cookie.get(), domain, context_getter, &event, &success); if (!BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, task)) { reply.SendError("Couldn't post task to set the cookie"); return; } event.Wait(); if (!success) { reply.SendError("Could not set the cookie"); return; } reply.SendSuccess(NULL); } bool SendErrorIfModalDialogActive(AutomationProvider* provider, IPC::Message* message) { bool active = AppModalDialogQueue::GetInstance()->HasActiveDialog(); if (active) { AutomationJSONReply(provider, message).SendError( "Command cannot be performed because a modal dialog is active"); } return active; } } // namespace automation_util