Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame^] | 18 | #include <bmcweb_config.h> |
| 19 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 20 | #include <app.hpp> |
Nan Zhou | 9629907 | 2022-03-23 09:13:46 -0700 | [diff] [blame] | 21 | #include <async_resp.hpp> |
| 22 | #include <http_request.hpp> |
| 23 | #include <nlohmann/json.hpp> |
John Edward Broadbent | 8338891 | 2021-06-29 10:46:46 -0700 | [diff] [blame] | 24 | #include <persistent_data.hpp> |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 25 | #include <registries/privilege_registry.hpp> |
Bernard Wong | 7bffdb7 | 2019-03-20 16:17:21 +0800 | [diff] [blame] | 26 | #include <utils/systemd_utils.hpp> |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 27 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 28 | namespace redfish |
| 29 | { |
Ed Tanous | 3ebd75f | 2018-03-05 18:20:01 -0800 | [diff] [blame] | 30 | |
John Edward Broadbent | 8338891 | 2021-06-29 10:46:46 -0700 | [diff] [blame] | 31 | inline void |
Ed Tanous | 104f09c | 2022-01-25 09:56:04 -0800 | [diff] [blame] | 32 | handleServiceRootGet(const crow::Request& /*req*/, |
John Edward Broadbent | 8338891 | 2021-06-29 10:46:46 -0700 | [diff] [blame] | 33 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
| 34 | { |
| 35 | |
| 36 | std::string uuid = persistent_data::getConfig().systemUuid; |
Shantappa Teekappanavar | 9c929be | 2021-12-16 19:02:52 -0600 | [diff] [blame] | 37 | asyncResp->res.jsonValue["@odata.type"] = |
| 38 | "#ServiceRoot.v1_11_0.ServiceRoot"; |
John Edward Broadbent | 8338891 | 2021-06-29 10:46:46 -0700 | [diff] [blame] | 39 | asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1"; |
| 40 | asyncResp->res.jsonValue["Id"] = "RootService"; |
| 41 | asyncResp->res.jsonValue["Name"] = "Root Service"; |
| 42 | asyncResp->res.jsonValue["RedfishVersion"] = "1.9.0"; |
| 43 | asyncResp->res.jsonValue["Links"]["Sessions"] = { |
| 44 | {"@odata.id", "/redfish/v1/SessionService/Sessions"}}; |
| 45 | asyncResp->res.jsonValue["AccountService"] = { |
| 46 | {"@odata.id", "/redfish/v1/AccountService"}}; |
| 47 | asyncResp->res.jsonValue["Chassis"] = { |
| 48 | {"@odata.id", "/redfish/v1/Chassis"}}; |
| 49 | asyncResp->res.jsonValue["JsonSchemas"] = { |
| 50 | {"@odata.id", "/redfish/v1/JsonSchemas"}}; |
| 51 | asyncResp->res.jsonValue["Managers"] = { |
| 52 | {"@odata.id", "/redfish/v1/Managers"}}; |
| 53 | asyncResp->res.jsonValue["SessionService"] = { |
| 54 | {"@odata.id", "/redfish/v1/SessionService"}}; |
| 55 | asyncResp->res.jsonValue["Systems"] = { |
| 56 | {"@odata.id", "/redfish/v1/Systems"}}; |
| 57 | asyncResp->res.jsonValue["Registries"] = { |
| 58 | {"@odata.id", "/redfish/v1/Registries"}}; |
| 59 | |
| 60 | asyncResp->res.jsonValue["UpdateService"] = { |
| 61 | {"@odata.id", "/redfish/v1/UpdateService"}}; |
| 62 | asyncResp->res.jsonValue["UUID"] = uuid; |
| 63 | asyncResp->res.jsonValue["CertificateService"] = { |
| 64 | {"@odata.id", "/redfish/v1/CertificateService"}}; |
| 65 | asyncResp->res.jsonValue["Tasks"] = { |
| 66 | {"@odata.id", "/redfish/v1/TaskService"}}; |
| 67 | asyncResp->res.jsonValue["EventService"] = { |
| 68 | {"@odata.id", "/redfish/v1/EventService"}}; |
| 69 | asyncResp->res.jsonValue["TelemetryService"] = { |
| 70 | {"@odata.id", "/redfish/v1/TelemetryService"}}; |
Shantappa Teekappanavar | 9c929be | 2021-12-16 19:02:52 -0600 | [diff] [blame] | 71 | asyncResp->res.jsonValue["Cables"] = {{"@odata.id", "/redfish/v1/Cables"}}; |
Nan Zhou | 9629907 | 2022-03-23 09:13:46 -0700 | [diff] [blame] | 72 | |
| 73 | nlohmann::json& protocolFeatures = |
| 74 | asyncResp->res.jsonValue["ProtocolFeaturesSupported"]; |
| 75 | protocolFeatures["ExcerptQuery"] = false; |
| 76 | protocolFeatures["ExpandQuery"]["ExpandAll"] = false; |
| 77 | protocolFeatures["ExpandQuery"]["Levels"] = false; |
| 78 | protocolFeatures["ExpandQuery"]["Links"] = false; |
| 79 | protocolFeatures["ExpandQuery"]["NoLinks"] = false; |
| 80 | protocolFeatures["FilterQuery"] = false; |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame^] | 81 | protocolFeatures["OnlyMemberQuery"] = bmcwebInsecureEnableQueryParams; |
Nan Zhou | 9629907 | 2022-03-23 09:13:46 -0700 | [diff] [blame] | 82 | protocolFeatures["SelectQuery"] = false; |
| 83 | protocolFeatures["DeepOperations"]["DeepPOST"] = false; |
| 84 | protocolFeatures["DeepOperations"]["DeepPATCH"] = false; |
John Edward Broadbent | 8338891 | 2021-06-29 10:46:46 -0700 | [diff] [blame] | 85 | } |
| 86 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 87 | inline void requestRoutesServiceRoot(App& app) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 88 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 89 | BMCWEB_ROUTE(app, "/redfish/v1/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 90 | .privileges(redfish::privileges::getServiceRoot) |
John Edward Broadbent | 8338891 | 2021-06-29 10:46:46 -0700 | [diff] [blame] | 91 | .methods(boost::beast::http::verb::get)(handleServiceRootGet); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 92 | } |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 93 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 94 | } // namespace redfish |