blob: 06f9c84542b783ec72188809612a66d2deb2fc4a [file] [log] [blame]
Borawski.Lukaszb6df6dc2018-01-24 10:20:45 +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"
19
Bernard Wong7bffdb72019-03-20 16:17:21 +080020#include <utils/systemd_utils.hpp>
Borawski.Lukaszb6df6dc2018-01-24 10:20:45 +010021
Ed Tanous1abe55e2018-09-05 08:30:59 -070022namespace redfish
23{
Ed Tanous3ebd75f2018-03-05 18:20:01 -080024
Ed Tanous1abe55e2018-09-05 08:30:59 -070025class ServiceRoot : public Node
26{
27 public:
Ed Tanous52cc1122020-07-18 13:51:21 -070028 ServiceRoot(App& app) : Node(app, "/redfish/v1/")
Ed Tanous1abe55e2018-09-05 08:30:59 -070029 {
Ed Tanous52cc1122020-07-18 13:51:21 -070030 uuid = persistent_data::getConfig().systemUuid;
Ed Tanous1abe55e2018-09-05 08:30:59 -070031 entityPrivileges = {
32 {boost::beast::http::verb::get, {}},
33 {boost::beast::http::verb::head, {}},
34 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
35 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
36 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
37 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Ed Tanouse0625902018-05-16 13:35:08 -070038 }
Ed Tanous1abe55e2018-09-05 08:30:59 -070039
40 private:
zhanghch058d1b46d2021-04-01 11:18:24 +080041 void doGet(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
42 const crow::Request&, const std::vector<std::string>&) override
Ed Tanous1abe55e2018-09-05 08:30:59 -070043 {
zhanghch058d1b46d2021-04-01 11:18:24 +080044 asyncResp->res.jsonValue["@odata.type"] =
45 "#ServiceRoot.v1_5_0.ServiceRoot";
46 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1";
47 asyncResp->res.jsonValue["Id"] = "RootService";
48 asyncResp->res.jsonValue["Name"] = "Root Service";
49 asyncResp->res.jsonValue["RedfishVersion"] = "1.9.0";
50 asyncResp->res.jsonValue["Links"]["Sessions"] = {
Ed Tanous0f74e642018-11-12 15:17:05 -080051 {"@odata.id", "/redfish/v1/SessionService/Sessions"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080052 asyncResp->res.jsonValue["AccountService"] = {
Ed Tanous0f74e642018-11-12 15:17:05 -080053 {"@odata.id", "/redfish/v1/AccountService"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080054 asyncResp->res.jsonValue["Chassis"] = {
55 {"@odata.id", "/redfish/v1/Chassis"}};
56 asyncResp->res.jsonValue["JsonSchemas"] = {
Ed Tanous0f74e642018-11-12 15:17:05 -080057 {"@odata.id", "/redfish/v1/JsonSchemas"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080058 asyncResp->res.jsonValue["Managers"] = {
59 {"@odata.id", "/redfish/v1/Managers"}};
60 asyncResp->res.jsonValue["SessionService"] = {
Gunnar Mills8d3cae62018-12-13 16:22:42 -060061 {"@odata.id", "/redfish/v1/SessionService"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080062 asyncResp->res.jsonValue["Managers"] = {
63 {"@odata.id", "/redfish/v1/Managers"}};
64 asyncResp->res.jsonValue["Systems"] = {
65 {"@odata.id", "/redfish/v1/Systems"}};
66 asyncResp->res.jsonValue["Registries"] = {
67 {"@odata.id", "/redfish/v1/Registries"}};
Ed Tanous0f74e642018-11-12 15:17:05 -080068
zhanghch058d1b46d2021-04-01 11:18:24 +080069 asyncResp->res.jsonValue["UpdateService"] = {
Ed Tanous0f74e642018-11-12 15:17:05 -080070 {"@odata.id", "/redfish/v1/UpdateService"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080071 asyncResp->res.jsonValue["UUID"] = uuid;
72 asyncResp->res.jsonValue["CertificateService"] = {
Marri Devender Rao5968cae2019-01-21 10:27:12 -060073 {"@odata.id", "/redfish/v1/CertificateService"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080074 asyncResp->res.jsonValue["Tasks"] = {
75 {"@odata.id", "/redfish/v1/TaskService"}};
76 asyncResp->res.jsonValue["EventService"] = {
AppaRao Pulie5aaf042020-03-20 01:05:52 +053077 {"@odata.id", "/redfish/v1/EventService"}};
zhanghch058d1b46d2021-04-01 11:18:24 +080078 asyncResp->res.jsonValue["TelemetryService"] = {
Wludzik, Jozef081ebf02020-04-27 17:24:15 +020079 {"@odata.id", "/redfish/v1/TelemetryService"}};
Ed Tanous1abe55e2018-09-05 08:30:59 -070080 }
Ed Tanous3602e232019-05-13 11:11:44 -070081
82 std::string uuid;
Borawski.Lukaszb6df6dc2018-01-24 10:20:45 +010083};
84
Ed Tanous1abe55e2018-09-05 08:30:59 -070085} // namespace redfish