blob: c7c5265f8dad3286a6270e2ba19e97df7325a689 [file] [log] [blame]
Ed Tanous911ac312017-08-15 09:37:42 -07001#pragma once
2
Ed Tanous81d523a2022-05-25 12:00:51 -07003#include "error_messages.hpp"
4#include "utility.hpp"
5
Ed Tanous04e438c2020-10-03 08:06:26 -07006#include <app.hpp>
Ed Tanousa8c4ce92021-03-24 08:44:51 -07007#include <http_request.hpp>
8#include <http_response.hpp>
Ed Tanous81d523a2022-05-25 12:00:51 -07009#include <schemas.hpp>
Ed Tanousa8c4ce92021-03-24 08:44:51 -070010
11#include <string>
Ed Tanous1abe55e2018-09-05 08:30:59 -070012
Ed Tanous1abe55e2018-09-05 08:30:59 -070013namespace redfish
14{
Ed Tanousa8c4ce92021-03-24 08:44:51 -070015
Ed Tanousd3355c52022-05-11 14:40:49 -070016inline void redfishGet(App& app, const crow::Request& req,
17 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
18{
Carson Labrado3ba00072022-06-06 19:40:56 +000019 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanousd3355c52022-05-11 14:40:49 -070020 {
21 return;
22 }
23 asyncResp->res.jsonValue["v1"] = "/redfish/v1/";
24}
25
Ed Tanous8c623a92022-05-24 11:54:51 -070026inline void redfish404(App& app, const crow::Request& req,
27 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
28 const std::string& path)
29{
30 asyncResp->res.addHeader(boost::beast::http::field::allow, "");
31
32 // If we fall to this route, we didn't have a more specific route, so return
33 // 404
Nan Zhou686b7092022-06-15 20:02:27 +000034 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous8c623a92022-05-24 11:54:51 -070035 {
36 return;
37 }
38
39 BMCWEB_LOG_ERROR << "404 on path " << path;
40
41 boost::urls::string_value name = req.urlView.segments().back();
42 std::string_view nameStr(name.data(), name.size());
43 // Note, if we hit the wildcard route, we don't know the "type" the user was
44 // actually requesting, but giving them a return with an empty string is
45 // still better than nothing.
46 messages::resourceNotFound(asyncResp->res, "", nameStr);
47}
48
Ed Tanous44c70412022-07-31 16:48:29 -070049inline void redfish405(App& app, const crow::Request& req,
50 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
51 const std::string& path)
52{
53 // If we fall to this route, we didn't have a more specific route, so return
54 // 405
55 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
56 {
57 return;
58 }
59
60 BMCWEB_LOG_ERROR << "405 on path " << path;
61 asyncResp->res.result(boost::beast::http::status::method_not_allowed);
62 if (req.method() == boost::beast::http::verb::delete_)
63 {
64 messages::resourceCannotBeDeleted(asyncResp->res);
65 }
66 else
67 {
68 messages::operationNotAllowed(asyncResp->res);
69 }
70}
71
Ed Tanous81d523a2022-05-25 12:00:51 -070072inline void
73 jsonSchemaIndexGet(App& app, const crow::Request& req,
74 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
75{
76 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
77 {
78 return;
79 }
80 nlohmann::json& json = asyncResp->res.jsonValue;
81 json["@odata.id"] = "/redfish/v1/JsonSchemas";
82 json["@odata.context"] =
83 "/redfish/v1/$metadata#JsonSchemaFileCollection.JsonSchemaFileCollection";
84 json["@odata.type"] = "#JsonSchemaFileCollection.JsonSchemaFileCollection";
85 json["Name"] = "JsonSchemaFile Collection";
86 json["Description"] = "Collection of JsonSchemaFiles";
87 nlohmann::json::array_t members;
88 for (const std::string_view schema : schemas)
89 {
90 nlohmann::json::object_t member;
91 member["@odata.id"] = crow::utility::urlFromPieces(
92 "redfish", "v1", "JsonSchemas", schema);
93 members.push_back(std::move(member));
94 }
95 json["Members"] = std::move(members);
96 json["Members@odata.count"] = schemas.size();
97}
98
99inline void jsonSchemaGet(App& app, const crow::Request& req,
100 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
101 const std::string& schema)
102{
103 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
104 {
105 return;
106 }
107
108 if (std::find(schemas.begin(), schemas.end(), schema) == schemas.end())
109 {
Jiaqing Zhaod8a5d5d2022-08-05 16:21:51 +0800110 messages::resourceNotFound(asyncResp->res, "JsonSchemaFile", schema);
Ed Tanous81d523a2022-05-25 12:00:51 -0700111 return;
112 }
113
114 nlohmann::json& json = asyncResp->res.jsonValue;
115 json["@odata.context"] =
116 "/redfish/v1/$metadata#JsonSchemaFile.JsonSchemaFile";
117 json["@odata.id"] =
118 crow::utility::urlFromPieces("redfish", "v1", "JsonSchemas", schema);
119 json["@odata.type"] = "#JsonSchemaFile.v1_0_2.JsonSchemaFile";
120 json["Name"] = schema + " Schema File";
121 json["Description"] = schema + " Schema File Location";
122 json["Id"] = schema;
123 std::string schemaName = "#";
124 schemaName += schema;
125 schemaName += ".";
126 schemaName += schema;
127 json["Schema"] = std::move(schemaName);
128 constexpr std::array<std::string_view, 1> languages{"en"};
129 json["Languages"] = languages;
130 json["Languages@odata.count"] = languages.size();
131
132 nlohmann::json::array_t locationArray;
133 nlohmann::json::object_t locationEntry;
134 locationEntry["Language"] = "en";
135 locationEntry["PublicationUri"] =
136 "http://redfish.dmtf.org/schemas/v1/" + schema + ".json";
137 locationEntry["Uri"] = crow::utility::urlFromPieces(
138 "redfish", "v1", "JsonSchemas", schema, std::string(schema) + ".json");
139
140 locationArray.emplace_back(locationEntry);
141
142 json["Location"] = std::move(locationArray);
143 json["Location@odata.count"] = 1;
144}
145
Ed Tanousf65fca62022-05-24 12:49:41 -0700146inline void requestRoutesRedfish(App& app)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700147{
148 BMCWEB_ROUTE(app, "/redfish/")
Ed Tanousb41187f2019-10-24 16:30:02 -0700149 .methods(boost::beast::http::verb::get)(
Ed Tanousd3355c52022-05-11 14:40:49 -0700150 std::bind_front(redfishGet, std::ref(app)));
Ed Tanous8c623a92022-05-24 11:54:51 -0700151
Ed Tanous81d523a2022-05-25 12:00:51 -0700152 BMCWEB_ROUTE(app, "/redfish/v1/JsonSchemas/<str>/")
153 .methods(boost::beast::http::verb::get)(
154 std::bind_front(jsonSchemaGet, std::ref(app)));
155
156 BMCWEB_ROUTE(app, "/redfish/v1/JsonSchemas/")
157 .methods(boost::beast::http::verb::get)(
158 std::bind_front(jsonSchemaIndexGet, std::ref(app)));
Ed Tanouse9dd1d32022-06-17 11:56:00 -0700159
160 // Note, this route must always be registered last
161 BMCWEB_ROUTE(app, "/redfish/<path>")
Ed Tanous44e45182022-07-26 16:47:23 -0700162 .notFound()(std::bind_front(redfish404, std::ref(app)));
Ed Tanous44c70412022-07-31 16:48:29 -0700163
164 BMCWEB_ROUTE(app, "/redfish/<path>")
165 .methodNotAllowed()(std::bind_front(redfish405, std::ref(app)));
Ed Tanous3dac7492017-08-02 13:46:20 -0700166}
Ed Tanousf65fca62022-05-24 12:49:41 -0700167
Ed Tanous1abe55e2018-09-05 08:30:59 -0700168} // namespace redfish