summaryrefslogtreecommitdiff
path: root/include/sessions.hpp
diff options
context:
space:
mode:
authorKowalski, Kamil <kamil.kowalski@intel.com>2018-02-15 17:26:51 +0300
committerEd Tanous <ed.tanous@intel.com>2018-03-07 01:35:06 +0300
commit5cef0f7d3434858e1ba25c209acb606814c20cda (patch)
tree06905ed7efc0bfcb099275c1de984dc9fd681779 /include/sessions.hpp
parent7fdc97c3e519ef7921a4654084ea0c63f738a75c (diff)
downloadbmcweb-5cef0f7d3434858e1ba25c209acb606814c20cda.tar.xz
Reimplement presistent data loading in no-throw way
Reimplemented persistent data file loading in no-throw approach to avoid errors during startup when bmcweb_persistent_data.json has been corrupted. Additionally this will allow to turn off all exceptions in the project (removed try-catch). Change-Id: I9bf863ebfd7ce9125d1e7e948f7ac739db94e009 Signed-off-by: Kowalski, Kamil <kamil.kowalski@intel.com> Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Diffstat (limited to 'include/sessions.hpp')
-rw-r--r--include/sessions.hpp60
1 files changed, 43 insertions, 17 deletions
diff --git a/include/sessions.hpp b/include/sessions.hpp
index 6d4ab4da57..90df93e427 100644
--- a/include/sessions.hpp
+++ b/include/sessions.hpp
@@ -28,6 +28,49 @@ struct UserSession {
std::string csrf_token;
std::chrono::time_point<std::chrono::steady_clock> last_updated;
PersistenceType persistence;
+
+ /**
+ * @brief Fills object with data from UserSession's JSON representation
+ *
+ * This replaces nlohmann's from_json to ensure no-throw approach
+ *
+ * @param[in] j JSON object from which data should be loaded
+ *
+ * @return true if data has been loaded properly, false otherwise
+ */
+ bool fromJson(const nlohmann::json& j) {
+ auto jUid = j.find("unique_id");
+ auto jToken = j.find("session_token");
+ auto jUsername = j.find("username");
+ auto jCsrf = j.find("csrf_token");
+
+ // Verify existence
+ if (jUid == j.end() || jToken == j.end() || jUsername == j.end() ||
+ jCsrf == j.end()) {
+ return false;
+ }
+
+ // Verify types
+ if (!jUid->is_string() || !jToken->is_string() || !jUsername->is_string() ||
+ !jCsrf->is_string()) {
+ return false;
+ }
+
+ unique_id = jUid->get<std::string>();
+ session_token = jToken->get<std::string>();
+ username = jUsername->get<std::string>();
+ csrf_token = jCsrf->get<std::string>();
+
+ // For now, sessions that were persisted through a reboot get their timer
+ // reset. This could probably be overcome with a better understanding of
+ // wall clock time and steady timer time, possibly persisting values with
+ // wall clock time instead of steady timer, but the tradeoffs of all the
+ // corner cases involved are non-trivial, so this is done temporarily
+ last_updated = std::chrono::steady_clock::now();
+ persistence = PersistenceType::TIMEOUT;
+
+ return true;
+ }
};
void to_json(nlohmann::json& j, const UserSession& p) {
@@ -39,23 +82,6 @@ void to_json(nlohmann::json& j, const UserSession& p) {
}
}
-void from_json(const nlohmann::json& j, UserSession& p) {
- try {
- p.unique_id = j.at("unique_id").get<std::string>();
- p.session_token = j.at("session_token").get<std::string>();
- p.username = j.at("username").get<std::string>();
- p.csrf_token = j.at("csrf_token").get<std::string>();
- // For now, sessions that were persisted through a reboot get their timer
- // reset. This could probably be overcome with a better understanding of
- // wall clock time and steady timer time, possibly persisting values with
- // wall clock time instead of steady timer, but the tradeoffs of all the
- // corner cases involved are non-trivial, so this is done temporarily
- p.last_updated = std::chrono::steady_clock::now();
- } catch (std::out_of_range) {
- // do nothing. Session API incompatibility, leave sessions empty
- }
-}
-
class Middleware;
class SessionStore {