// 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.

#include "chrome/browser/net/secure_dns_util.h"

#include <algorithm>
#include <iterator>
#include <memory>
#include <string>
#include <vector>

#include "base/check.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_macros.h"
#include "chrome/browser/net/dns_probe_runner.h"
#include "components/country_codes/country_codes.h"
#include "net/dns/public/dns_config_overrides.h"
#include "net/dns/public/dns_over_https_config.h"
#include "net/dns/public/doh_provider_entry.h"
#include "net/dns/public/secure_dns_mode.h"

namespace chrome_browser_net::secure_dns {

namespace {

bool EntryIsForCountry(const net::DohProviderEntry* entry,
                       country_codes::CountryId country_id) {
  if (entry->display_globally) {
    return true;
  }
  const auto& countries = entry->display_countries;
  bool matches = std::ranges::any_of(
      countries, [country_id](const std::string& country_code) {
        return country_codes::CountryId(country_code) == country_id;
      });
  if (matches) {
    DCHECK(!entry->ui_name.empty());
    DCHECK(!entry->privacy_policy.empty());
  }
  return matches;
}

}  // namespace

net::DohProviderEntry::List ProvidersForCountry(
    const net::DohProviderEntry::List& providers,
    country_codes::CountryId country_id) {
  net::DohProviderEntry::List local_providers;
  std::ranges::copy_if(providers, std::back_inserter(local_providers),
                       [country_id](const net::DohProviderEntry* entry) {
                         return EntryIsForCountry(entry, country_id);
                       });
  return local_providers;
}

net::DohProviderEntry::List SelectEnabledProviders(
    const net::DohProviderEntry::List& providers) {
  net::DohProviderEntry::List enabled_providers;
  std::ranges::copy_if(
      providers, std::back_inserter(enabled_providers),
      [](const net::DohProviderEntry* entry) {
        return base::FeatureList::IsEnabled(entry->feature.get());
      });
  return enabled_providers;
}

void UpdateValidationHistogram(bool valid) {
  UMA_HISTOGRAM_BOOLEAN("Net.DNS.UI.ValidationAttemptSuccess", valid);
}

void UpdateProbeHistogram(bool success) {
  UMA_HISTOGRAM_BOOLEAN("Net.DNS.UI.ProbeAttemptSuccess", success);
}

std::unique_ptr<DnsProbeRunner> MakeProbeRunner(
    net::DnsOverHttpsConfig doh_config,
    const network::NetworkContextGetter& network_context_getter) {
  net::DnsConfigOverrides overrides;
  overrides.search = std::vector<std::string>();
  overrides.attempts = 1;
  overrides.secure_dns_mode = net::SecureDnsMode::kSecure;
  overrides.dns_over_https_config = std::move(doh_config);

  return std::make_unique<DnsProbeRunner>(std::move(overrides),
                                          network_context_getter);
}

}  // namespace chrome_browser_net::secure_dns
