1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/safe_browsing/protocol_manager_helper.h"
8 #include "base/base64.h"
10 #include "base/environment.h"
11 #include "base/logging.h"
12 #include "base/stl_util.h"
13 #include "base/strings/string_util.h"
14 #include "base/strings/stringprintf.h"
15 #include "chrome/common/env_vars.h"
16 #include "components/version_info/version_info.h"
17 #include "google_apis/google_api_keys.h"
18 #include "net/base/escape.h"
20 SafeBrowsingProtocolConfig::SafeBrowsingProtocolConfig()
21 : disable_auto_update(false)
22 #if defined(OS_ANDROID)
23 , disable_connection_check(false)
28 SafeBrowsingProtocolConfig::~SafeBrowsingProtocolConfig() {
32 std::string
SafeBrowsingProtocolManagerHelper::Version() {
33 if (version_info::GetVersionNumber().empty())
36 return version_info::GetVersionNumber();
40 std::string
SafeBrowsingProtocolManagerHelper::ComposeUrl(
41 const std::string
& prefix
,
42 const std::string
& method
,
43 const std::string
& client_name
,
44 const std::string
& version
,
45 const std::string
& additional_query
) {
46 DCHECK(!prefix
.empty() && !method
.empty() &&
47 !client_name
.empty() && !version
.empty());
48 std::string url
= base::StringPrintf("%s/%s?client=%s&appver=%s&pver=3.0",
49 prefix
.c_str(), method
.c_str(),
50 client_name
.c_str(), version
.c_str());
51 std::string api_key
= google_apis::GetAPIKey();
52 if (!api_key
.empty()) {
53 base::StringAppendF(&url
, "&key=%s",
54 net::EscapeQueryParamValue(api_key
, true).c_str());
56 if (!additional_query
.empty()) {
57 DCHECK(url
.find("?") != std::string::npos
);
59 url
.append(additional_query
);
65 std::string
SafeBrowsingProtocolManagerHelper::ComposeUrl(
66 const std::string
& prefix
,
67 const std::string
& method
,
68 const std::string
& client_name
,
69 const std::string
& version
,
70 const std::string
& additional_query
,
71 bool is_extended_reporting
) {
73 ComposeUrl(prefix
, method
, client_name
, version
, additional_query
);
74 if (is_extended_reporting
) {