2023-12-10 23:23:15 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-12-07 20:32:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
2023-12-08 22:26:16 +00:00
|
|
|
#include <stdint.h>
|
2023-12-07 20:32:43 +00:00
|
|
|
|
|
|
|
class DBInterface {
|
|
|
|
public:
|
|
|
|
enum class Type {
|
|
|
|
mysql
|
|
|
|
};
|
|
|
|
enum class State {
|
|
|
|
disconnected,
|
|
|
|
connecting,
|
|
|
|
connected
|
|
|
|
};
|
|
|
|
static std::unique_ptr<DBInterface> create(Type type);
|
|
|
|
|
|
|
|
virtual ~DBInterface();
|
|
|
|
|
|
|
|
State currentState() const;
|
|
|
|
|
|
|
|
const Type type;
|
|
|
|
|
2023-12-22 23:25:20 +00:00
|
|
|
class Duplicate;
|
|
|
|
class DuplicateLogin;
|
|
|
|
class EmptyResult;
|
|
|
|
class NoLogin;
|
|
|
|
|
2023-12-07 20:32:43 +00:00
|
|
|
public:
|
|
|
|
virtual void connect(const std::string& path) = 0;
|
|
|
|
virtual void disconnect() = 0;
|
|
|
|
virtual void setDatabase(const std::string& newDatabase) = 0;
|
|
|
|
virtual void setCredentials(const std::string& login, const std::string& password) = 0;
|
|
|
|
|
2023-12-10 23:23:15 +00:00
|
|
|
virtual void migrate(uint8_t targetVersion) = 0;
|
2023-12-08 22:26:16 +00:00
|
|
|
virtual uint8_t getVersion() = 0;
|
|
|
|
virtual void setVersion(uint8_t version) = 0;
|
|
|
|
|
2023-12-20 22:42:13 +00:00
|
|
|
virtual unsigned int registerAccount(const std::string& login, const std::string& hash) = 0;
|
2023-12-22 23:25:20 +00:00
|
|
|
virtual std::string getAccountHash(const std::string& login) = 0;
|
2023-12-23 20:23:38 +00:00
|
|
|
virtual unsigned int createSession(const std::string& login, const std::string& access, const std::string& renew) = 0;
|
2023-12-20 22:42:13 +00:00
|
|
|
|
2023-12-07 20:32:43 +00:00
|
|
|
protected:
|
|
|
|
DBInterface(Type type);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
State state;
|
|
|
|
};
|