Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1277)

Unified Diff: chrome/browser/net/chrome_network_delegate.cc

Issue 11186002: Add a SafeSearch preference, policy and implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor fixes that got by the last patch set. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/net/chrome_network_delegate.cc
diff --git a/chrome/browser/net/chrome_network_delegate.cc b/chrome/browser/net/chrome_network_delegate.cc
index f34396f5f34e6b33d0ed775d1ecec5572d5511d2..306bed7b0a07c2591f0aeeb95713d2e05ed89959 100644
--- a/chrome/browser/net/chrome_network_delegate.cc
+++ b/chrome/browser/net/chrome_network_delegate.cc
@@ -4,9 +4,13 @@
#include "chrome/browser/net/chrome_network_delegate.h"
+#include <string>
+#include <vector>
+
#include "base/logging.h"
#include "base/base_paths.h"
#include "base/path_service.h"
+#include "base/string_split.h"
#include "chrome/browser/api/prefs/pref_member.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/content_settings/cookie_settings.h"
@@ -17,6 +21,7 @@
#include "chrome/browser/extensions/event_router_forwarder.h"
#include "chrome/browser/extensions/extension_info_map.h"
#include "chrome/browser/extensions/extension_process_manager.h"
+#include "chrome/browser/google/google_util.h"
#include "chrome/browser/net/load_time_stats.h"
#include "chrome/browser/performance_monitor/performance_monitor.h"
#include "chrome/browser/prefs/pref_service.h"
@@ -87,6 +92,80 @@ void ForwardProxyErrors(net::URLRequest* request,
}
}
+// Checks to see if the current parameter matches the desired one. |parameter|
+// is the current parameter which is being checked; |parameter_to_find| is the
+// parameter we are looking for. Returns true if we find the parameter (we
+// don't care about the value of the parameter, only the key).
+bool CheckForParameter(const std::string& parameter,
+ const std::string& parameter_to_find) {
battre 2012/10/30 12:56:10 I think this function does way more than necessary
Sergiu 2012/10/30 21:58:17 What I was trying to accomplish was use as few con
battre 2012/10/31 13:16:55 I like your new implementation.
+ DCHECK(parameter_to_find.find("=") != std::string::npos);
+ // prefix for "safe=off" is "safe=".
+ std::string parameter_prefix = parameter_to_find.substr(
+ 0, parameter_to_find.find("=") + 1);
+ if (StartsWithASCII(parameter, parameter_prefix, false))
battre 2012/10/30 12:56:10 This does not work if the key in |parameter| is %x
Sergiu 2012/10/30 21:58:17 RFC 3986 [1] states: URIs that differ in the re
battre 2012/10/31 13:16:55 If the last stated parameter wins in case of two c
+ return true;
+ return false;
Joao da Silva 2012/10/30 09:09:49 return StartsWithASCII(parameter, parameter_prefix
Sergiu 2012/10/30 21:58:17 Done.
+}
+
+// Examines a query to see if it should be modified to contain the SafeSearch
+// parameters. |query| is the string to examine and the return value is the
+// |query| string modified such that SafeSearch is active.
+std::string ExamineQueryForSafeSearch(const std::string& query) {
battre 2012/10/30 12:56:10 How about "void AddSafeSearchParameters(const GURL
Sergiu 2012/10/30 21:58:17 Renamed, although the signature is the same as bef
battre 2012/10/31 13:16:55 SGTM
+ std::vector<std::string> new_parameters;
+ std::string safe_parameter = chrome::kSafeSearchSafeParameter;
+ std::string ssui_parameter = chrome::kSafeSearchSsuiParameter;
+
+ std::vector<std::string> parameters;
+ base::SplitString(query, '&', &parameters);
+
+ std::vector<std::string>::iterator it;
+ for (it = parameters.begin(); it < parameters.end(); ++it) {
+ if (!CheckForParameter(*it, safe_parameter) &&
+ !CheckForParameter(*it, ssui_parameter)) {
+ new_parameters.push_back(*it);
+ }
+ }
+
+ new_parameters.push_back(safe_parameter);
+ new_parameters.push_back(ssui_parameter);
+ return JoinString(new_parameters, '&');
+}
+
+// Examines |request| and if it is a request to Google Web Search
+// it enforces that the SafeSearch query parameters are set to active
Joao da Silva 2012/10/30 09:09:49 nit: terminate sentence
Sergiu 2012/10/30 21:58:17 Done.
+// Sets the query part of |new_url| with the new value of the parameters.
+void ForceGoogleSafeSearch(net::URLRequest* request,
+ GURL* new_url) {
+ const bool is_search_url = google_util::IsGoogleSearchUrl(
+ request->url().spec());
+ const bool is_homepage_url = google_util::IsGoogleHomePageUrl(
+ request->url().spec());
+ if (is_search_url || is_homepage_url) {
+ std::string query = request->url().query();
+ std::string new_query = ExamineQueryForSafeSearch(query);
+ if (query == new_query)
+ return;
+
+ GURL::Replacements replacements;
+ replacements.SetQueryStr(new_query);
+ *new_url = request->url().ReplaceComponents(replacements);
+ }
+}
+
+// Gets called when the extensions finish work on the URL. If the extensions
+// did not do a redirect (so |new_url| is empty) then we enforce the
+// SafeSearch parameters. Otherwise we will get called again after the
+// redirect and we enforce SafeSearch then.
+void ForceGoogleSafeSearchCallbackWrapper(
+ const net::CompletionCallback& callback,
+ net::URLRequest* request,
+ GURL* new_url,
+ int rv) {
+ if (rv == net::OK && new_url->is_empty())
+ ForceGoogleSafeSearch(request, new_url);
+ callback.Run(rv);
+}
+
enum RequestStatus { REQUEST_STARTED, REQUEST_DONE };
// Notifies the ExtensionProcessManager that a request has started or stopped
@@ -146,6 +225,7 @@ ChromeNetworkDelegate::ChromeNetworkDelegate(
CookieSettings* cookie_settings,
BooleanPrefMember* enable_referrers,
BooleanPrefMember* enable_do_not_track,
+ BooleanPrefMember* force_google_safesearch,
battre 2012/10/30 12:56:10 if your functions use the spelling SafeSearch, I t
Sergiu 2012/10/30 21:58:17 Yeah, SafeSearch was a bit tricky because it is of
chrome_browser_net::LoadTimeStats* load_time_stats)
: event_router_(event_router),
profile_(profile),
@@ -153,6 +233,7 @@ ChromeNetworkDelegate::ChromeNetworkDelegate(
extension_info_map_(extension_info_map),
enable_referrers_(enable_referrers),
enable_do_not_track_(enable_do_not_track),
+ force_google_safesearch_(force_google_safesearch),
url_blacklist_manager_(url_blacklist_manager),
managed_mode_url_filter_(managed_mode_url_filter),
load_time_stats_(load_time_stats) {
@@ -172,6 +253,7 @@ void ChromeNetworkDelegate::NeverThrottleRequests() {
void ChromeNetworkDelegate::InitializePrefsOnUIThread(
BooleanPrefMember* enable_referrers,
BooleanPrefMember* enable_do_not_track,
+ BooleanPrefMember* force_google_safesearch,
PrefService* pref_service) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
enable_referrers->Init(prefs::kEnableReferrers, pref_service, NULL);
@@ -180,6 +262,10 @@ void ChromeNetworkDelegate::InitializePrefsOnUIThread(
enable_do_not_track->Init(prefs::kEnableDoNotTrack, pref_service, NULL);
enable_do_not_track->MoveToThread(BrowserThread::IO);
}
+ if (force_google_safesearch) {
+ force_google_safesearch->Init(prefs::kForceSafeSearch, pref_service, NULL);
+ force_google_safesearch->MoveToThread(BrowserThread::IO);
+ }
}
// static
@@ -220,8 +306,26 @@ int ChromeNetworkDelegate::OnBeforeURLRequest(
request->set_referrer(std::string());
if (enable_do_not_track_ && enable_do_not_track_->GetValue())
request->SetExtraRequestHeaderByName(kDNTHeader, "1", true /* override */);
- return ExtensionWebRequestEventRouter::GetInstance()->OnBeforeRequest(
- profile_, extension_info_map_.get(), request, callback, new_url);
+
+ bool force_safesearch = force_google_safesearch_ &&
+ force_google_safesearch_->GetValue();
+
+ net::CompletionCallback wrapped_callback = callback;
+ if (force_safesearch) {
+ wrapped_callback = base::Bind(&ForceGoogleSafeSearchCallbackWrapper,
+ callback,
+ base::Unretained(request),
+ base::Unretained(new_url));
+ }
+
+ int rv = ExtensionWebRequestEventRouter::GetInstance()->OnBeforeRequest(
+ profile_, extension_info_map_.get(), request, wrapped_callback,
+ new_url);
+
+ if (force_safesearch && rv == net::OK && new_url->is_empty())
+ ForceGoogleSafeSearch(request, new_url);
+
+ return rv;
}
int ChromeNetworkDelegate::OnBeforeSendHeaders(

Powered by Google App Engine
This is Rietveld 408576698