mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
92 lines
3.4 KiB
C++
92 lines
3.4 KiB
C++
// Copyright 2022 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef PLATFORM_API_ACCOUNT_MANAGER_H_
|
|
#define PLATFORM_API_ACCOUNT_MANAGER_H_
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "absl/functional/any_invocable.h"
|
|
#include "absl/status/status.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "internal/platform/implementation/account_info.h"
|
|
#include "internal/platform/implementation/signin_attempt.h"
|
|
|
|
namespace nearby {
|
|
|
|
// AccountManager manages the accounts are used to access Nearby backend.
|
|
// In current design, AccountManager only support one active account.
|
|
class AccountManager {
|
|
public:
|
|
using Account = AccountInfo;
|
|
|
|
// Observes the activity of the account manager.
|
|
class Observer {
|
|
public:
|
|
virtual ~Observer() = default;
|
|
|
|
virtual void OnLoginSucceeded(absl::string_view account_id) = 0;
|
|
// |credential_error| is true if the logout is due to critical auth error.
|
|
virtual void OnLogoutSucceeded(absl::string_view account_id,
|
|
bool credential_error) = 0;
|
|
};
|
|
|
|
virtual ~AccountManager() = default;
|
|
|
|
// Gets current active account. If no login user, return std::nullopt.
|
|
virtual std::optional<Account> GetCurrentAccount() = 0;
|
|
|
|
// Initializes the login process for a Google account from an oauth client.
|
|
// |client_id| GCP client_id of the client
|
|
// |client_secret| GCP client_secret of the client
|
|
// Returns a SigninAttempt object that can be used to complete the login
|
|
// process.
|
|
virtual std::unique_ptr<SigninAttempt> Login(
|
|
absl::string_view client_id, absl::string_view client_secret) = 0;
|
|
|
|
// Logs out current active account. |logout_callback| is called when logout is
|
|
// completed.
|
|
virtual void Logout(
|
|
absl::AnyInvocable<void(absl::Status)> logout_callback) = 0;
|
|
|
|
// Gets access token for the active account.
|
|
// |success_callback| is called when an access token is fetched successfully.
|
|
// |failure_callback| is called when fetching an access token failed.
|
|
//
|
|
// Returns false if account_id is empty or callback is null.
|
|
virtual bool GetAccessToken(
|
|
absl::string_view account_id,
|
|
absl::AnyInvocable<void(absl::string_view)> success_callback,
|
|
absl::AnyInvocable<void(absl::Status)> failure_callback) = 0;
|
|
|
|
// Returns a pair containing the client id and client secret used in the most
|
|
// recent Login request.
|
|
// If no current user is logged in, returns empty string for both.
|
|
virtual std::pair<std::string, std::string> GetOAuthClientCredential() = 0;
|
|
|
|
virtual void AddObserver(Observer* observer) = 0;
|
|
virtual void RemoveObserver(Observer* observer) = 0;
|
|
|
|
virtual void SaveAccountPrefs(absl::string_view user_id,
|
|
absl::string_view client_id,
|
|
absl::string_view client_secret) = 0;
|
|
};
|
|
|
|
} // namespace nearby
|
|
|
|
#endif // PLATFORM_API_ACCOUNT_MANAGER_H_
|