blob: ae5878b90a7ff76c8121de31f2b8e79bf14848c8 [file] [log] [blame]
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +01001/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16#pragma once
17
18#include "node.hpp"
Ed Tanous1abe55e2018-09-05 08:30:59 -070019
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010020#include <boost/container/flat_map.hpp>
21
Ed Tanous1abe55e2018-09-05 08:30:59 -070022namespace redfish
23{
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010024
25/**
26 * DBus types primitives for several generic DBus interfaces
27 * TODO(Pawel) consider move this to separate file into boost::dbus
28 */
Ed Tanous55c7b7a2018-05-22 15:27:24 -070029// Note, this is not a very useful Variant, but because it isn't used to get
Ed Tanousaa2e59c2018-04-12 12:17:20 -070030// values, it should be as simple as possible
31// TODO(ed) invent a nullvariant type
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020032using VariantType = sdbusplus::message::variant<bool, std::string>;
Ed Tanousaa2e59c2018-04-12 12:17:20 -070033using ManagedObjectsType = std::vector<std::pair<
34 sdbusplus::message::object_path,
35 std::vector<std::pair<std::string,
36 std::vector<std::pair<std::string, VariantType>>>>>>;
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010037
Ed Tanousaa2e59c2018-04-12 12:17:20 -070038using PropertiesType = boost::container::flat_map<std::string, VariantType>;
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010039
40/**
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010041 * ChassisCollection derived class for delivering Chassis Collection Schema
42 */
Ed Tanous1abe55e2018-09-05 08:30:59 -070043class ChassisCollection : public Node
44{
45 public:
46 ChassisCollection(CrowApp &app) : Node(app, "/redfish/v1/Chassis/")
47 {
48 Node::json["@odata.type"] = "#ChassisCollection.ChassisCollection";
49 Node::json["@odata.id"] = "/redfish/v1/Chassis";
50 Node::json["@odata.context"] =
51 "/redfish/v1/$metadata#ChassisCollection.ChassisCollection";
52 Node::json["Name"] = "Chassis Collection";
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010053
Ed Tanous1abe55e2018-09-05 08:30:59 -070054 entityPrivileges = {
55 {boost::beast::http::verb::get, {{"Login"}}},
56 {boost::beast::http::verb::head, {{"Login"}}},
57 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
58 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
59 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
60 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
61 }
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +010062
Ed Tanous1abe55e2018-09-05 08:30:59 -070063 private:
64 /**
65 * Functions triggers appropriate requests on DBus
66 */
67 void doGet(crow::Response &res, const crow::Request &req,
68 const std::vector<std::string> &params) override
69 {
Ed Tanous62d5e2e2018-09-05 16:17:25 -070070 const std::array<const char *, 4> interfaces = {
71 "xyz.openbmc_project.Inventory.Item.Board",
72 "xyz.openbmc_project.Inventory.Item.Chassis",
73 "xyz.openbmc_project.Inventory.Item.PowerSupply",
74 "xyz.openbmc_project.Inventory.Item.System",
75 };
76 res.jsonValue = Node::json;
77 auto asyncResp = std::make_shared<AsyncResp>(res);
78 crow::connections::systemBus->async_method_call(
79 [asyncResp](const boost::system::error_code ec,
80 const std::vector<std::string> &chassisList) {
81 if (ec)
Ed Tanous1abe55e2018-09-05 08:30:59 -070082 {
Ed Tanous62d5e2e2018-09-05 16:17:25 -070083 messages::addMessageToErrorJson(asyncResp->res.jsonValue,
84 messages::internalError());
85 asyncResp->res.result(
Ed Tanous1abe55e2018-09-05 08:30:59 -070086 boost::beast::http::status::internal_server_error);
Ed Tanous62d5e2e2018-09-05 16:17:25 -070087 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -070088 }
Ed Tanous62d5e2e2018-09-05 16:17:25 -070089 nlohmann::json &chassisArray =
90 asyncResp->res.jsonValue["Members"];
91 chassisArray = nlohmann::json::array();
92 for (const std::string &objpath : chassisList)
93 {
94 std::size_t lastPos = objpath.rfind("/");
95 if (lastPos == std::string::npos)
96 {
97 BMCWEB_LOG_ERROR << "Failed to find '/' in " << objpath;
98 continue;
99 }
100 chassisArray.push_back(
101 {{"@odata.id", "/redfish/v1/Chassis/" +
102 objpath.substr(lastPos + 1)}});
103 }
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +0100104
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700105 asyncResp->res.jsonValue["Members@odata.count"] =
106 chassisArray.size();
107 },
108 "xyz.openbmc_project.ObjectMapper",
109 "/xyz/openbmc_project/object_mapper",
110 "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths",
111 "/xyz/openbmc_project/inventory", int32_t(3), interfaces);
112 }
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +0100113};
114
115/**
116 * Chassis override class for delivering Chassis Schema
117 */
Ed Tanous1abe55e2018-09-05 08:30:59 -0700118class Chassis : public Node
119{
120 public:
121 Chassis(CrowApp &app) :
122 Node(app, "/redfish/v1/Chassis/<str>/", std::string())
123 {
124 Node::json["@odata.type"] = "#Chassis.v1_4_0.Chassis";
125 Node::json["@odata.id"] = "/redfish/v1/Chassis";
126 Node::json["@odata.context"] = "/redfish/v1/$metadata#Chassis.Chassis";
127 Node::json["Name"] = "Chassis Collection";
128 Node::json["ChassisType"] = "RackMount";
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +0100129
Ed Tanous1abe55e2018-09-05 08:30:59 -0700130 entityPrivileges = {
131 {boost::beast::http::verb::get, {{"Login"}}},
132 {boost::beast::http::verb::head, {{"Login"}}},
133 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
134 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
135 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
136 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +0100137 }
Rapkiewicz, Pawele37f8452018-03-09 13:49:50 +0100138
Ed Tanous1abe55e2018-09-05 08:30:59 -0700139 private:
140 /**
141 * Functions triggers appropriate requests on DBus
142 */
143 void doGet(crow::Response &res, const crow::Request &req,
144 const std::vector<std::string> &params) override
145 {
146 // Check if there is required param, truly entering this shall be
147 // impossible.
148 if (params.size() != 1)
149 {
Ed Tanouse0d918b2018-03-27 17:41:04 -0700150 res.result(boost::beast::http::status::internal_server_error);
Ed Tanousdaf36e22018-04-20 16:01:36 -0700151 res.end();
152 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700153 }
Ed Tanouse0d918b2018-03-27 17:41:04 -0700154
Ed Tanous1abe55e2018-09-05 08:30:59 -0700155 res.jsonValue = Node::json;
156 const std::string &chassisId = params[0];
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700157 auto asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700158 crow::connections::systemBus->async_method_call(
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700159 [asyncResp, chassisId(std::string(chassisId))](
160 const boost::system::error_code ec,
Ed Tanous1abe55e2018-09-05 08:30:59 -0700161 const std::vector<std::pair<
162 std::string, std::vector<std::pair<
163 std::string, std::vector<std::string>>>>>
164 &subtree) {
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700165 if (ec)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700166 {
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700167 messages::addMessageToErrorJson(asyncResp->res.jsonValue,
168 messages::internalError());
169 asyncResp->res.result(
Ed Tanous1abe55e2018-09-05 08:30:59 -0700170 boost::beast::http::status::internal_server_error);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700171 return;
172 }
173 // Iterate over all retrieved ObjectPaths.
174 for (const std::pair<
175 std::string,
176 std::vector<
177 std::pair<std::string, std::vector<std::string>>>>
178 &object : subtree)
179 {
180 const std::string &path = object.first;
181 const std::vector<
182 std::pair<std::string, std::vector<std::string>>>
183 &connectionNames = object.second;
Ed Tanouse0d918b2018-03-27 17:41:04 -0700184
Ed Tanous1abe55e2018-09-05 08:30:59 -0700185 if (!boost::ends_with(path, chassisId))
186 {
187 continue;
Ed Tanousdaf36e22018-04-20 16:01:36 -0700188 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700189 if (connectionNames.size() < 1)
190 {
191 BMCWEB_LOG_ERROR << "Only got "
192 << connectionNames.size()
193 << " Connection names";
194 continue;
195 }
Ed Tanouse0d918b2018-03-27 17:41:04 -0700196
Ed Tanous1abe55e2018-09-05 08:30:59 -0700197 const std::string connectionName = connectionNames[0].first;
198 crow::connections::systemBus->async_method_call(
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700199 [asyncResp, chassisId(std::string(chassisId))](
200 const boost::system::error_code ec,
Ed Tanous1abe55e2018-09-05 08:30:59 -0700201 const std::vector<std::pair<
202 std::string, VariantType>> &propertiesList) {
203 for (const std::pair<std::string, VariantType>
204 &property : propertiesList)
205 {
206 const std::string *value =
207 mapbox::getPtr<const std::string>(
208 property.second);
209 if (value != nullptr)
210 {
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700211 asyncResp->res.jsonValue[property.first] =
212 *value;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700213 }
214 }
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700215 asyncResp->res.jsonValue["Name"] = chassisId;
216 asyncResp->res.jsonValue["Id"] = chassisId;
217 asyncResp->res.jsonValue["Thermal"] = {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700218 {"@odata.id", "/redfish/v1/Chassis/" +
219 chassisId + "/Thermal"}};
Ed Tanous1abe55e2018-09-05 08:30:59 -0700220 },
221 connectionName, path, "org.freedesktop.DBus.Properties",
222 "GetAll",
223 "xyz.openbmc_project.Inventory.Decorator.Asset");
Ed Tanous1abe55e2018-09-05 08:30:59 -0700224 return;
225 }
Ed Tanouse0d918b2018-03-27 17:41:04 -0700226
Ed Tanous1abe55e2018-09-05 08:30:59 -0700227 // Couldn't find an object with that name. return an error
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700228 asyncResp->res.jsonValue = redfish::messages::resourceNotFound(
229 "#Chassis.v1_4_0.Chassis", chassisId);
230 asyncResp->res.result(boost::beast::http::status::not_found);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700231 },
232 "xyz.openbmc_project.ObjectMapper",
233 "/xyz/openbmc_project/object_mapper",
234 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
235 "/xyz/openbmc_project/inventory", int32_t(0),
236 std::array<const char *, 1>{
237 "xyz.openbmc_project.Inventory.Decorator.Asset"});
238 }
Ed Tanous62d5e2e2018-09-05 16:17:25 -0700239};
Ed Tanous1abe55e2018-09-05 08:30:59 -0700240} // namespace redfish