Leosac  0.8.0
Open Source Access Control
ExternalServerSerializer.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2014-2022 Leosac
3 
4  This file is part of Leosac.
5 
6  Leosac is free software: you can redistribute it and/or modify
7  it under the terms of the GNU Affero General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  Leosac is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Affero General Public License for more details.
15 
16  You should have received a copy of the GNU Affero General Public License
17  along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 
23 #include "tools/JSONUtils.hpp"
24 #include "tools/log.hpp"
25 
26 namespace Leosac
27 {
28 namespace Hardware
29 {
31  const SecurityContext &sc)
32 {
33  json serialized = DeviceSerializer::serialize(in, sc);
34  ASSERT_LOG(serialized.at("type").is_string(),
35  "Base device serialization did something unexpected.");
36 
37  // Override object type
38  serialized["type"] = "external-server";
39 
40  // Add External Message specific attributes
41  serialized["attributes"]["host"] = in.host();
42  serialized["attributes"]["port"] = in.port();
43 
44  return serialized;
45 }
46 
48  const SecurityContext &sc)
49 {
50  using namespace JSONUtil;
51  DeviceSerializer::unserialize(out, in, sc);
52 
53  out.host(extract_with_default(in, "host", out.host()));
54  out.port(extract_with_default(in, "port", out.port()));
55 }
56 }
57 }
Leosac::json
nlohmann::json json
Definition: AuditSerializer.hpp:29
Leosac::JSONUtil::extract_with_default
std::chrono::system_clock::time_point extract_with_default(const nlohmann::json &obj, const std::string &key, const std::chrono::system_clock::time_point &tp)
Extract an ISO 8601 datetime string from a json object.
Definition: JSONUtils.cpp:45
ASSERT_LOG
#define ASSERT_LOG(cond, msg)
Definition: log.hpp:190
ExternalServerSerializer.hpp
Leosac::Hardware::ExternalServerSerializer::unserialize
static void unserialize(Hardware::ExternalServer &out, const json &in, const SecurityContext &sc)
Definition: ExternalServerSerializer.cpp:47
Leosac::Hardware::ExternalServerSerializer::serialize
static json serialize(const Hardware::ExternalServer &in, const SecurityContext &sc)
Definition: ExternalServerSerializer.cpp:30
Leosac
This is the header file for a generated source file, GitSHA1.cpp.
Definition: APIStatusCode.hpp:22
Leosac::Hardware::ExternalServer::host
std::string host() const
Definition: ExternalServer.cpp:40
JSONUtils.hpp
Leosac::Hardware::ExternalServer::port
uint16_t port() const
Definition: ExternalServer.cpp:50
log.hpp
Leosac::Hardware::ExternalServer
Abstraction of an External Server device.
Definition: ExternalServer.hpp:38
Leosac::Hardware::DeviceSerializer::serialize
static json serialize(const Hardware::Device &in, const SecurityContext &sc)
Definition: DeviceSerializer.cpp:28
Leosac::Hardware::DeviceSerializer::unserialize
static void unserialize(Hardware::Device &out, const json &in, const SecurityContext &sc)
Definition: DeviceSerializer.cpp:40
DeviceSerializer.hpp
Leosac::SecurityContext
A SecurityContext is used to query permission while doing an operation.
Definition: SecurityContext.hpp:40