2022-07-06 00:20:39 +00:00
|
|
|
// Copyright 2018 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
|
|
|
|
namespace Network::VerifyUser {
|
|
|
|
|
|
|
|
struct UserData {
|
|
|
|
std::string username;
|
|
|
|
std::string display_name;
|
|
|
|
std::string avatar_url;
|
2021-12-25 19:27:52 +00:00
|
|
|
bool moderator = false; ///< Whether the user is a yuzu Moderator.
|
2022-07-06 00:20:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A backend used for verifying users and loading user data.
|
|
|
|
*/
|
|
|
|
class Backend {
|
|
|
|
public:
|
|
|
|
virtual ~Backend();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verifies the given token and loads the information into a UserData struct.
|
2022-07-25 15:08:20 +00:00
|
|
|
* @param verify_uid A GUID that may be used for verification.
|
2022-07-06 00:20:39 +00:00
|
|
|
* @param token A token that contains user data and verification data. The format and content is
|
|
|
|
* decided by backends.
|
|
|
|
*/
|
2022-07-25 15:08:20 +00:00
|
|
|
virtual UserData LoadUserData(const std::string& verify_uid, const std::string& token) = 0;
|
2022-07-06 00:20:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A null backend where the token is ignored.
|
|
|
|
* No verification is performed here and the function returns an empty UserData.
|
|
|
|
*/
|
|
|
|
class NullBackend final : public Backend {
|
|
|
|
public:
|
|
|
|
~NullBackend();
|
|
|
|
|
2022-07-25 15:08:20 +00:00
|
|
|
UserData LoadUserData(const std::string& verify_uid, const std::string& token) override;
|
2022-07-06 00:20:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Network::VerifyUser
|