/*************************************************************************/ /* http_session.cpp */ /*************************************************************************/ /* This file is part of: */ /* PANDEMONIUM ENGINE */ /* https://github.com/Relintai/pandemonium_engine */ /*************************************************************************/ /* Copyright (c) 2022-present Péter Magyar. */ /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */ /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ /* a copy of this software and associated documentation files (the */ /* "Software"), to deal in the Software without restriction, including */ /* without limitation the rights to use, copy, modify, merge, publish, */ /* distribute, sublicense, and/or sell copies of the Software, and to */ /* permit persons to whom the Software is furnished to do so, subject to */ /* the following conditions: */ /* */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "http_session.h" #include "core/io/json.h" String HTTPSession::get_session_id() { return session_id; } void HTTPSession::set_session_id(const String &val) { session_id = val; } int HTTPSession::get_id() { return id; } void HTTPSession::set_id(const int val) { id = val; } void HTTPSession::add(const String &key, const Variant &value) { _mutex.lock(); _data[key] = value; _mutex.unlock(); } void HTTPSession::remove(const String &key) { _mutex.lock(); _data[key] = Variant(); _mutex.unlock(); } bool HTTPSession::has(const String &key) { return !_data[key].is_null(); } Variant HTTPSession::get_value(const String &key) { return _data[key]; } const Variant &HTTPSession::get_const(const String &key) { return _data[key]; } Object *HTTPSession::get_object(const String &key) { // don't lock here return _data[key]; } Ref HTTPSession::get_reference(const String &key) { // don't lock here return Ref(_data[key]); } int HTTPSession::get_int(const String &key, const int def) { // don't lock here Variant *v = _data.getptr(key); if (!v) { return def; } return *v; } void HTTPSession::clear() { _data.clear(); } void HTTPSession::reset() { clear(); session_id = ""; } HashMap *HTTPSession::get_data() { return &_data; } Dictionary HTTPSession::to_dict() { return call("_to_dict"); } void HTTPSession::from_dict(const Dictionary &dict) { call("_from_dict", dict); } Dictionary HTTPSession::_to_dict() { Dictionary dict; dict["session_id"] = session_id; dict["id"] = id; Dictionary d; const String *k = NULL; while ((k = _data.next(k))) { const Variant &val = _data.get(*k); // Maybe it should be allowed? // Or maybe when adding stuff to the sessions the method should have a store = true bool, if false skip saving if (val.get_type() == Variant::OBJECT) { continue; } d[*k] = val; } dict["data"] = d; return dict; } void HTTPSession::_from_dict(const Dictionary &dict) { _data.clear(); session_id = dict["session_id"]; id = dict["id"]; Dictionary d = dict["data"]; const Variant *k = NULL; while ((k = d.next(k))) { Variant key = *k; const Variant &val = d.get(key, Variant()); // Maybe it should be allowed? // Or maybe when adding stuff to the sessions the method should have a store = true bool, if false skip saving if (val.get_type() == Variant::OBJECT) { continue; } _data[key] = val; } } String HTTPSession::to_json() { return JSON::print(to_dict()); } void HTTPSession::from_json(const String &data) { Error err; String err_txt; int err_line; Variant v; err = JSON::parse(data, v, err_txt, err_line); ERR_FAIL_COND(err != OK); Dictionary d = v; from_dict(d); } HTTPSession::HTTPSession() { id = 0; } HTTPSession::~HTTPSession() { clear(); } void HTTPSession::_bind_methods() { ClassDB::bind_method(D_METHOD("get_session_id"), &HTTPSession::get_session_id); ClassDB::bind_method(D_METHOD("set_session_id", "val"), &HTTPSession::set_session_id); ADD_PROPERTY(PropertyInfo(Variant::STRING, "session_id"), "set_session_id", "get_session_id"); ClassDB::bind_method(D_METHOD("get_id"), &HTTPSession::get_id); ClassDB::bind_method(D_METHOD("set_id", "val"), &HTTPSession::set_id); ADD_PROPERTY(PropertyInfo(Variant::INT, "id"), "set_id", "get_id"); ClassDB::bind_method(D_METHOD("add", "key", "value"), &HTTPSession::add); ClassDB::bind_method(D_METHOD("remove", "key"), &HTTPSession::remove); ClassDB::bind_method(D_METHOD("has", "key"), &HTTPSession::has); ClassDB::bind_method(D_METHOD("get_value", "key"), &HTTPSession::get_value); ClassDB::bind_method(D_METHOD("clear"), &HTTPSession::clear); ClassDB::bind_method(D_METHOD("reset"), &HTTPSession::reset); BIND_VMETHOD(MethodInfo("_from_dict", PropertyInfo(Variant::DICTIONARY, "dict"))); BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::DICTIONARY, "dict"), "_to_dict")); ClassDB::bind_method(D_METHOD("from_dict", "dict"), &HTTPSession::from_dict); ClassDB::bind_method(D_METHOD("to_dict"), &HTTPSession::to_dict); ClassDB::bind_method(D_METHOD("_from_dict", "dict"), &HTTPSession::_from_dict); ClassDB::bind_method(D_METHOD("_to_dict"), &HTTPSession::_to_dict); ClassDB::bind_method(D_METHOD("to_json"), &HTTPSession::to_json); ClassDB::bind_method(D_METHOD("from_json", "data"), &HTTPSession::from_json); }