chromium/chrome/browser/nearby_sharing/nearby_share_profile_info_provider_impl.cc

// 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 "chrome/browser/nearby_sharing/nearby_share_profile_info_provider_impl.h"

#include "chrome/browser/ash/profiles/profile_helper.h"
#include "chrome/browser/profiles/profile.h"
#include "components/user_manager/user_manager.h"

NearbyShareProfileInfoProviderImpl::NearbyShareProfileInfoProviderImpl(
    Profile* profile)
    : profile_(profile) {}

NearbyShareProfileInfoProviderImpl::~NearbyShareProfileInfoProviderImpl() =
    default;

std::optional<std::u16string> NearbyShareProfileInfoProviderImpl::GetGivenName()
    const {
  const user_manager::User* user =
      ash::ProfileHelper::Get()->GetUserByProfile(profile_);
  if (!user)
    return std::nullopt;

  std::u16string name = user->GetGivenName();
  return name.empty() ? std::nullopt : std::make_optional(name);
}

std::optional<std::string>
NearbyShareProfileInfoProviderImpl::GetProfileUserName() const {
  std::string name = profile_->GetProfileUserName();
  return name.empty() ? std::nullopt : std::make_optional(name);
}