mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 12:18:22 +00:00
38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
|
#ifndef __IACCOUNTS__H__
|
||
|
#define __IACCOUNTS__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <optional>
|
||
|
#include <string_view>
|
||
|
|
||
|
enum class eGameMasterLevel : uint8_t;
|
||
|
|
||
|
class IAccounts {
|
||
|
public:
|
||
|
struct Info {
|
||
|
std::string bcryptPassword;
|
||
|
uint32_t id{};
|
||
|
uint32_t playKeyId{};
|
||
|
bool banned{};
|
||
|
bool locked{};
|
||
|
eGameMasterLevel maxGmLevel{};
|
||
|
};
|
||
|
|
||
|
// Get the account info for the given username.
|
||
|
virtual std::optional<IAccounts::Info> GetAccountInfo(const std::string_view username) = 0;
|
||
|
|
||
|
// Update the account's unmute time.
|
||
|
virtual void UpdateAccountUnmuteTime(const uint32_t accountId, const uint64_t timeToUnmute) = 0;
|
||
|
|
||
|
// Update the account's ban status.
|
||
|
virtual void UpdateAccountBan(const uint32_t accountId, const bool banned) = 0;
|
||
|
|
||
|
// Update the account's password.
|
||
|
virtual void UpdateAccountPassword(const uint32_t accountId, const std::string_view bcryptpassword) = 0;
|
||
|
|
||
|
// Add a new account to the database.
|
||
|
virtual void InsertNewAccount(const std::string_view username, const std::string_view bcryptpassword) = 0;
|
||
|
};
|
||
|
|
||
|
#endif //!__IACCOUNTS__H__
|