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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/network/network_name_util.h"
#include <stddef.h>
#include <stdint.h>
#include <utility>
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chromeos/ash/components/network/cellular_esim_profile_handler.h"
#include "chromeos/ash/components/network/network_state.h"
#include "third_party/cros_system_api/dbus/shill/dbus-constants.h"
namespace ash::network_name_util {
std::optional<std::string> GetESimProfileName(
CellularESimProfileHandler* cellular_esim_profile_handler,
const NetworkState* network_state) {
DCHECK(network_state);
// CellularESimProfileHandler is not available if the relevant flag is
// disabled.
if (!cellular_esim_profile_handler)
return std::nullopt;
// Only Cellular networks correspond to eSIM profiles.
if (network_state->type() != shill::kTypeCellular)
return std::nullopt;
// eSIM profiles have an associated EID and ICCID.
if (network_state->eid().empty() || network_state->iccid().empty())
return std::nullopt;
std::vector<CellularESimProfile> profiles =
cellular_esim_profile_handler->GetESimProfiles();
for (const auto& profile : profiles) {
if (profile.eid() != network_state->eid() ||
profile.iccid() != network_state->iccid()) {
continue;
}
// We've found a profile corresponding to the network. If possible, use the
// profile's nickname, falling back to the service provider or the name.
if (!profile.nickname().empty())
return base::UTF16ToUTF8(profile.nickname());
if (!profile.service_provider().empty())
return base::UTF16ToUTF8(profile.service_provider());
if (!profile.name().empty())
return base::UTF16ToUTF8(profile.name());
}
return std::nullopt;
}
std::optional<CellularESimProfile> GetMatchedESimProfile(
CellularESimProfileHandler* cellular_esim_profile_handler,
const NetworkState* network_state) {
std::vector<CellularESimProfile> profiles =
cellular_esim_profile_handler->GetESimProfiles();
for (const auto& profile : profiles) {
if (profile.eid() != network_state->eid() ||
profile.iccid() != network_state->iccid()) {
continue;
}
return profile;
}
return std::nullopt;
}
std::string GetNetworkName(
CellularESimProfileHandler* cellular_esim_profile_handler,
const NetworkState* network_state) {
DCHECK(network_state);
if (!network_state->eid().empty()) {
std::optional<std::string> network_name;
network_name =
GetESimProfileName(cellular_esim_profile_handler, network_state);
if (network_name.has_value())
return *network_name;
}
return network_state->name();
}
bool HasNickName(CellularESimProfileHandler* cellular_esim_profile_handler,
const NetworkState* network_state) {
DCHECK(network_state);
if (!cellular_esim_profile_handler) {
return false;
}
std::optional<CellularESimProfile> profile =
GetMatchedESimProfile(cellular_esim_profile_handler, network_state);
if (profile.has_value() && !profile.value().nickname().empty()) {
return true;
}
return false;
}
std::string GetServiceProvider(
CellularESimProfileHandler* cellular_esim_profile_handler,
const NetworkState* network_state) {
DCHECK(network_state);
if (!cellular_esim_profile_handler) {
return "";
}
std::optional<CellularESimProfile> profile =
GetMatchedESimProfile(cellular_esim_profile_handler, network_state);
if (profile.has_value()) {
return base::UTF16ToUTF8(profile.value().service_provider());
}
return "";
}
} // namespace ash::network_name_util
|