blob: ba59b774e3a76fbdda873c94d3da106586b89dca [file] [log] [blame]
// Copyright 2014 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/net/safe_search_util.h"
#include <string>
#include <utility>
#include <vector>
#include "base/logging.h"
#include "base/macros.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_piece.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "chrome/common/url_constants.h"
#include "components/google/core/browser/google_util.h"
#include "net/cookies/cookie_util.h"
#include "net/http/http_request_headers.h"
#include "net/url_request/url_request.h"
#include "url/gurl.h"
namespace {
int g_force_google_safe_search_count_for_test = 0;
int g_force_youtube_restrict_count_for_test = 0;
const char kYouTubeRestrictHeaderName[] = "YouTube-Restrict";
const char kYouTubeRestrictHeaderValueModerate[] = "Moderate";
const char kYouTubeRestrictHeaderValueStrict[] = "Strict";
// Returns whether a URL parameter, |first_parameter| (e.g. foo=bar), has the
// same key as the the |second_parameter| (e.g. foo=baz). Both parameters
// must be in key=value form.
bool HasSameParameterKey(base::StringPiece first_parameter,
base::StringPiece second_parameter) {
DCHECK(second_parameter.find("=") != std::string::npos);
// Prefix for "foo=bar" is "foo=".
base::StringPiece parameter_prefix =
second_parameter.substr(0, second_parameter.find("=") + 1);
return base::StartsWith(first_parameter, parameter_prefix,
base::CompareCase::INSENSITIVE_ASCII);
}
// Examines the query string containing parameters and adds the necessary ones
// so that SafeSearch is active. |query| is the string to examine and the
// return value is the |query| string modified such that SafeSearch is active.
std::string AddSafeSearchParameters(const std::string& query) {
std::vector<base::StringPiece> new_parameters;
std::string safe_parameter = chrome::kSafeSearchSafeParameter;
std::string ssui_parameter = chrome::kSafeSearchSsuiParameter;
for (const base::StringPiece& param : base::SplitStringPiece(
query, "&", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL)) {
if (!HasSameParameterKey(param, safe_parameter) &&
!HasSameParameterKey(param, ssui_parameter)) {
new_parameters.push_back(param);
}
}
new_parameters.push_back(safe_parameter);
new_parameters.push_back(ssui_parameter);
return base::JoinString(new_parameters, "&");
}
} // namespace
namespace safe_search_util {
// If |request| is a request to Google Web Search the function
// enforces that the SafeSearch query parameters are set to active.
// Sets the query part of |new_url| with the new value of the parameters.
void ForceGoogleSafeSearch(const net::URLRequest* request, GURL* new_url) {
++g_force_google_safe_search_count_for_test;
if (!google_util::IsGoogleSearchUrl(request->url()) &&
!google_util::IsGoogleHomePageUrl(request->url()))
return;
std::string query = request->url().query();
std::string new_query = AddSafeSearchParameters(query);
if (query == new_query)
return;
GURL::Replacements replacements;
replacements.SetQueryStr(new_query);
*new_url = request->url().ReplaceComponents(replacements);
}
void ForceYouTubeRestrict(const net::URLRequest* request,
net::HttpRequestHeaders* headers,
YouTubeRestrictMode mode) {
++g_force_youtube_restrict_count_for_test;
if (!google_util::IsYoutubeDomainUrl(
request->url(),
google_util::ALLOW_SUBDOMAIN,
google_util::DISALLOW_NON_STANDARD_PORTS))
return;
switch (mode) {
case YOUTUBE_RESTRICT_OFF:
case YOUTUBE_RESTRICT_COUNT:
NOTREACHED();
break;
case YOUTUBE_RESTRICT_MODERATE:
headers->SetHeader(kYouTubeRestrictHeaderName,
kYouTubeRestrictHeaderValueModerate);
break;
case YOUTUBE_RESTRICT_STRICT:
headers->SetHeader(kYouTubeRestrictHeaderName,
kYouTubeRestrictHeaderValueStrict);
break;
}
}
int GetForceGoogleSafeSearchCountForTesting() {
return g_force_google_safe_search_count_for_test;
}
int GetForceYouTubeRestrictCountForTesting() {
return g_force_youtube_restrict_count_for_test;
}
void ClearForceGoogleSafeSearchCountForTesting() {
g_force_google_safe_search_count_for_test = 0;
}
void ClearForceYouTubeRestrictCountForTesting() {
g_force_youtube_restrict_count_for_test = 0;
}
} // namespace safe_search_util