aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-05-03 06:41:50 +0200
committerdec05eba <dec05eba@protonmail.com>2020-08-18 23:25:46 +0200
commitb0f18d6ab6ad0682738be4b23d3ddde674fc247d (patch)
tree42254ae874efb64239af70a49b7b08e09d96d96d /src
parent31c1b5b9480d7730aba08aed78a4a240268568f4 (diff)
Temporary remove timestamp check
Diffstat (limited to 'src')
-rw-r--r--src/Database.cpp6
-rw-r--r--src/DatabaseStorage.cpp26
2 files changed, 32 insertions, 0 deletions
diff --git a/src/Database.cpp b/src/Database.cpp
index 85e56d3..ee18b87 100644
--- a/src/Database.cpp
+++ b/src/Database.cpp
@@ -350,6 +350,8 @@ namespace odhtdb
throw PermissionDeniedException(errMsg);
}
+ //u64 actionCounter = databaseStorage.increaseUserActionCounter(userToPerformActionWith->getPublicKey());
+
sibs::SafeSerializer serializer;
serializer.add(DATABASE_ADD_PACKET_STRUCTURE_VERSION);
u64 timestampCombined = getSyncedTimestampUtc().getCombined();
@@ -521,6 +523,7 @@ namespace odhtdb
}
u64 creationDate = deserializer.extract<u64>();
+ /* // TODO: This doesn't seem to work right now, fix it
auto currentTimestamp = getSyncedTimestampUtc();
if(creationDate > currentTimestamp.getCombined())
{
@@ -531,6 +534,7 @@ namespace odhtdb
errMsg += to_string((double)currentTimestamp.seconds + currentTimestamp.getFractionAsSeconds());
throw sibs::DeserializeException(errMsg);
}
+ */
char creatorPublicKeyRaw[PUBLIC_KEY_NUM_BYTES];
deserializer.extract((u8*)creatorPublicKeyRaw, PUBLIC_KEY_NUM_BYTES);
@@ -571,6 +575,7 @@ namespace odhtdb
u64 creationDate = deserializerUnsigned.extract<u64>();
auto currentTimestamp = getSyncedTimestampUtc();
+ /* // TODO: This doesn't seem to work right now, fix it
if(creationDate > currentTimestamp.getCombined())
{
auto creationDateTimestamp = ntp::NtpTimestamp::fromCombined(creationDate);
@@ -580,6 +585,7 @@ namespace odhtdb
errMsg += to_string((double)currentTimestamp.seconds + currentTimestamp.getFractionAsSeconds());
throw sibs::DeserializeException(errMsg);
}
+ */
DatabaseOperation operation = deserializerUnsigned.extract<DatabaseOperation>();
#if 0
diff --git a/src/DatabaseStorage.cpp b/src/DatabaseStorage.cpp
index 9c64a86..0e7a1a8 100644
--- a/src/DatabaseStorage.cpp
+++ b/src/DatabaseStorage.cpp
@@ -684,6 +684,32 @@ namespace odhtdb
return true;
}
+ /*
+ u64 DatabaseStorage::increaseUserActionCounter(const Hash &nodeHash, const Signature::PublicKey &userPublicKey)
+ {
+ auto publicKeyUserDataMapIt = nodePublicKeyUserDataMap.find(nodeHash);
+ if(publicKeyUserDataMapIt != nodePublicKeyUserDataMap.end())
+ {
+ auto it = publicKeyUserDataMapIt->second->find(userPublicKey);
+ if(it != publicKeyUserDataMapIt->second->end())
+ {
+ return ++it->second->actionCounter;
+ }
+
+ string errMsg = "User with id ";
+ errMsg += userPublicKey.toString();
+ errMsg += " doesn't exist in node ";
+ errMsg += nodeHash.toString();
+ throw DatabaseStorageException(errMsg);
+ }
+
+ string errMsg = "Node with id ";
+ errMsg += nodeHash.toString();
+ errMsg += " doesn't exist";
+ throw DatabaseStorageException(errMsg);
+ }
+ */
+
const DatabaseStorageObjectList* DatabaseStorage::getStorage(const Hash &hash) const
{
auto it = storageMap.find(hash);