Redfish Manager and ManagerCollection

    Node version of the Manager and ManagerCollection implementation.

Change-Id: I693fa57add670fb0ecfc0cf0046e06142571c543
Signed-off-by: Borawski.Lukasz <lukasz.borawski@intel.com>
diff --git a/redfish-core/include/redfish.hpp b/redfish-core/include/redfish.hpp
index 7714ab7..0c2a912 100644
--- a/redfish-core/include/redfish.hpp
+++ b/redfish-core/include/redfish.hpp
@@ -16,6 +16,7 @@
 #pragma once
 
 #include "../lib/account_service.hpp"
+#include "../lib/managers.hpp"
 #include "../lib/network_protocol.hpp"
 #include "../lib/redfish_sessions.hpp"
 #include "../lib/roles.hpp"
@@ -43,6 +44,7 @@
     nodes.emplace_back(std::make_unique<ServiceRoot>(app));
     nodes.emplace_back(std::make_unique<NetworkProtocol>(app));
     nodes.emplace_back(std::make_unique<SessionService>(app));
+    nodes.emplace_back(std::make_unique<ManagerCollection>(app));
 
     for (auto& node : nodes) {
       node->getSubRoutes(nodes);
diff --git a/redfish-core/lib/managers.hpp b/redfish-core/lib/managers.hpp
new file mode 100644
index 0000000..0a56da7
--- /dev/null
+++ b/redfish-core/lib/managers.hpp
@@ -0,0 +1,109 @@
+/*
+// Copyright (c) 2018 Intel Corporation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+*/
+#pragma once
+
+#include "node.hpp"
+
+namespace redfish {
+
+static OperationMap managerOpMap = {
+    {crow::HTTPMethod::GET, {{"Login"}}},
+    {crow::HTTPMethod::HEAD, {{"Login"}}},
+    {crow::HTTPMethod::PATCH, {{"ConfigureManager"}}},
+    {crow::HTTPMethod::PUT, {{"ConfigureManager"}}},
+    {crow::HTTPMethod::DELETE, {{"ConfigureManager"}}},
+    {crow::HTTPMethod::POST, {{"ConfigureManager"}}}};
+
+static OperationMap managerCollectionOpMap = {
+    {crow::HTTPMethod::GET, {{"Login"}}},
+    {crow::HTTPMethod::HEAD, {{"Login"}}},
+    {crow::HTTPMethod::PATCH, {{"ConfigureManager"}}},
+    {crow::HTTPMethod::PUT, {{"ConfigureManager"}}},
+    {crow::HTTPMethod::DELETE, {{"ConfigureManager"}}},
+    {crow::HTTPMethod::POST, {{"ConfigureManager"}}}};
+
+class Manager : public Node {
+ public:
+  Manager(CrowApp& app)
+      : Node(app, EntityPrivileges(std::move(managerOpMap)),
+             "/redfish/v1/Managers/openbmc/") {
+    Node::json["@odata.id"] = "/redfish/v1/Managers/openbmc";
+    Node::json["@odata.type"] = "#Manager.v1_3_0.Manager";
+    Node::json["@odata.context"] = "/redfish/v1/$metadata#Manager.Manager";
+    Node::json["Id"] = "openbmc";
+    Node::json["Name"] = "OpenBmc Manager";
+    Node::json["Description"] = "Baseboard Management Controller";
+    Node::json["PowerState"] = "On";
+    Node::json["Status"]["Health"] = "OK";
+    Node::json["Status"]["HealthRollup"] = "OK";
+    Node::json["Status"]["State"] = "Enabled";
+    Node::json["UUID"] =
+        app.template get_middleware<crow::PersistentData::Middleware>()
+            .system_uuid;
+    Node::json["Model"] = "OpenBmc";               // TODO(ed), get model
+    Node::json["FirmwareVersion"] = "1234456789";  // TODO(ed), get fwversion
+  }
+
+ private:
+  void doGet(crow::response& res, const crow::request& req,
+             const std::vector<std::string>& params) override {
+    Node::json["DateTime"] = getDateTime();
+    res.json_value = Node::json;
+    res.end();
+  }
+
+  std::string getDateTime() const {
+    std::array<char, 128> dateTime;
+    std::string redfishDateTime("0000-00-00T00:00:00Z00:00");
+    std::time_t time = std::time(nullptr);
+
+    if (std::strftime(dateTime.begin(), dateTime.size(), "%FT%T%z",
+                      std::localtime(&time))) {
+      // insert the colon required by the ISO 8601 standard
+      redfishDateTime = std::string(dateTime.data());
+      redfishDateTime.insert(redfishDateTime.end() - 2, ':');
+    }
+
+    return redfishDateTime;
+  }
+};
+
+class ManagerCollection : public Node {
+ public:
+  ManagerCollection(CrowApp& app)
+      : Node(app, EntityPrivileges(std::move(managerCollectionOpMap)),
+             "/redfish/v1/Managers/"),
+        memberManager(app) {
+    Node::json["@odata.id"] = "/redfish/v1/Managers";
+    Node::json["@odata.type"] = "#ManagerCollection.ManagerCollection";
+    Node::json["@odata.context"] =
+        "/redfish/v1/$metadata#ManagerCollection.ManagerCollection";
+    Node::json["Name"] = "Manager Collection";
+    Node::json["Members@odata.count"] = 1;
+    Node::json["Members"] = {{"@odata.id", "/redfish/v1/Managers/openbmc"}};
+  }
+
+ private:
+  void doGet(crow::response& res, const crow::request& req,
+             const std::vector<std::string>& params) override {
+    res.json_value = Node::json;
+    res.end();
+  }
+
+  Manager memberManager;
+};
+
+}  // namespace redfish