/* // 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 { class Manager : public Node { public: Manager(CrowApp& app) : Node(app, "/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["UUID"] = app.template get_middleware() .system_uuid; Node::json["Model"] = "OpenBmc"; // TODO(ed), get model Node::json["FirmwareVersion"] = "1234456789"; // TODO(ed), get fwversion Node::json["EthernetInterfaces"] = nlohmann::json( {{"@odata.id", "/redfish/v1/Managers/openbmc/EthernetInterfaces"}}); // TODO(Pawel), // remove this // when // subroutes // will work // correctly entityPrivileges = {{crow::HTTPMethod::GET, {{"Login"}}}, {crow::HTTPMethod::HEAD, {{"Login"}}}, {crow::HTTPMethod::PATCH, {{"ConfigureManager"}}}, {crow::HTTPMethod::PUT, {{"ConfigureManager"}}}, {crow::HTTPMethod::DELETE, {{"ConfigureManager"}}}, {crow::HTTPMethod::POST, {{"ConfigureManager"}}}}; } private: void doGet(crow::response& res, const crow::request& req, const std::vector& params) override { Node::json["DateTime"] = getDateTime(); res.json_value = Node::json; res.end(); } std::string getDateTime() const { std::array 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, "/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"}}}; entityPrivileges = {{crow::HTTPMethod::GET, {{"Login"}}}, {crow::HTTPMethod::HEAD, {{"Login"}}}, {crow::HTTPMethod::PATCH, {{"ConfigureManager"}}}, {crow::HTTPMethod::PUT, {{"ConfigureManager"}}}, {crow::HTTPMethod::DELETE, {{"ConfigureManager"}}}, {crow::HTTPMethod::POST, {{"ConfigureManager"}}}}; } private: void doGet(crow::response& res, const crow::request& req, const std::vector& params) override { res.json_value = Node::json; res.end(); } Manager memberManager; }; } // namespace redfish