aboutsummaryrefslogtreecommitdiff
path: root/include/User.hpp
diff options
context:
space:
mode:
authorAleksi Lindeman <aleksi_888@hotmail.com>2018-02-01 21:15:13 +0100
committerAleksi Lindeman <aleksi_888@hotmail.com>2018-02-01 21:15:19 +0100
commit6f1089db78f14b52b869f5aaa979e52ff5e4c2d7 (patch)
treed79f7abfb0fb9f3d58f9716741512b63fb4193ec /include/User.hpp
parent80a9c135b8bdca64246f147f22d98485e0f05ee5 (diff)
Sync time with ntp server, starting with basic operations
Diffstat (limited to 'include/User.hpp')
-rw-r--r--include/User.hpp21
1 files changed, 19 insertions, 2 deletions
diff --git a/include/User.hpp b/include/User.hpp
index 727bbcf..e542434 100644
--- a/include/User.hpp
+++ b/include/User.hpp
@@ -1,15 +1,32 @@
#pragma once
-#include <opendht/crypto.h>
#include <string>
+#include <stdexcept>
namespace odhtdb
{
+ class UserNameTooLongException : public std::runtime_error
+ {
+ public:
+ UserNameTooLongException(const std::string &userName) :
+ std::runtime_error(std::string("The username ") + userName + " is longer than 255 bytes")
+ {
+
+ }
+ };
+
class User
{
public:
+ const std::string& getName() const { return name; }
+ protected:
+ User(const std::string &_name) : name(_name)
+ {
+ if(name.size() > 255)
+ throw UserNameTooLongException(name);
+ }
private:
- dht::crypto::PublicKey publicKey;
+ // TODO: Add public key
std::string name;
};
} \ No newline at end of file