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
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SAFE_BROWSING_CORE_BROWSER_REALTIME_POLICY_ENGINE_H_
#define COMPONENTS_SAFE_BROWSING_CORE_BROWSER_REALTIME_POLICY_ENGINE_H_
#include <string>
#include "base/functional/callback.h"
#include "build/build_config.h"
class PrefService;
namespace variations {
class VariationsService;
}
namespace safe_browsing {
// This class implements the logic to decide whether the real time lookup
// feature is enabled for a given user/profile.
// TODO(crbug.com/40673388): To make this class build in IOS, remove
// browser_context dependency in this class, and replace it with pref_service
// and simple_factory_key.
class RealTimePolicyEngine {
public:
RealTimePolicyEngine() = delete;
~RealTimePolicyEngine() = delete;
// A callback via which the client of this class indicates whether they
// are configured to support token fetches. Used as part of
// CanPerformFullURLLookupWithToken().
using ClientConfiguredForTokenFetchesCallback =
base::OnceCallback<bool(bool user_has_enabled_enhanced_protection)>;
// Return true if the profile is not Incognito and real-time fetches are
// available in the user's country, and the user has opted in to ESB or MBB.
static bool CanPerformFullURLLookup(
PrefService* pref_service,
bool is_off_the_record,
variations::VariationsService* variations_service);
// Return true if the OAuth token should be associated with the URL lookup
// pings.
static bool CanPerformFullURLLookupWithToken(
PrefService* pref_service,
bool is_off_the_record,
ClientConfiguredForTokenFetchesCallback client_callback,
variations::VariationsService* variations_service);
// Return true if the user has opted in to ESB or MBB.
static bool HasPrefPermissionsToPerformFullURLLookup(
PrefService* pref_service);
static bool CanPerformEnterpriseFullURLLookup(const PrefService* pref_service,
bool has_valid_dm_token,
bool is_off_the_record,
bool is_guest_profile);
friend class SafeBrowsingService;
private:
static bool IsInExcludedCountry(const std::string& country_code);
// Whether the user has opted-in to MBB.
static bool IsUserMbbOptedIn(PrefService* pref_service);
// Whether the user has opted-in to Enhanced Protection.
static bool IsUserEpOptedIn(PrefService* pref_service);
friend class RealTimePolicyEngineTest;
}; // class RealTimePolicyEngine
} // namespace safe_browsing
#endif // COMPONENTS_SAFE_BROWSING_CORE_BROWSER_REALTIME_POLICY_ENGINE_H_
|