blob: 629280c5ec9ae0619b27541d26f822e2158d591d [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:
Ed Tanouscb13a392020-07-25 19:02:03 +000041 void doGet(crow::Response& res, const crow::Request&,
42 const std::vector<std::string>&) override
Ed Tanous1abe55e2018-09-05 08:30:59 -070043 {
Marri Devender Rao5968cae2019-01-21 10:27:12 -060044 res.jsonValue["@odata.type"] = "#ServiceRoot.v1_5_0.ServiceRoot";
Ed Tanousceac6f72018-12-02 11:58:47 -080045 res.jsonValue["@odata.id"] = "/redfish/v1";
Ed Tanous0f74e642018-11-12 15:17:05 -080046 res.jsonValue["Id"] = "RootService";
47 res.jsonValue["Name"] = "Root Service";
Gunnar Mills5b816f22020-02-14 11:48:20 -060048 res.jsonValue["RedfishVersion"] = "1.9.0";
Ed Tanous0f74e642018-11-12 15:17:05 -080049 res.jsonValue["Links"]["Sessions"] = {
50 {"@odata.id", "/redfish/v1/SessionService/Sessions"}};
51 res.jsonValue["AccountService"] = {
52 {"@odata.id", "/redfish/v1/AccountService"}};
53 res.jsonValue["Chassis"] = {{"@odata.id", "/redfish/v1/Chassis"}};
54 res.jsonValue["JsonSchemas"] = {
55 {"@odata.id", "/redfish/v1/JsonSchemas"}};
Ed Tanousaa7cb212018-11-29 13:47:36 -080056 res.jsonValue["Managers"] = {{"@odata.id", "/redfish/v1/Managers"}};
Ed Tanous0f74e642018-11-12 15:17:05 -080057 res.jsonValue["SessionService"] = {
Gunnar Mills8d3cae62018-12-13 16:22:42 -060058 {"@odata.id", "/redfish/v1/SessionService"}};
Ed Tanousceac6f72018-12-02 11:58:47 -080059 res.jsonValue["Managers"] = {{"@odata.id", "/redfish/v1/Managers"}};
Ed Tanous0f74e642018-11-12 15:17:05 -080060 res.jsonValue["Systems"] = {{"@odata.id", "/redfish/v1/Systems"}};
61 res.jsonValue["Registries"] = {{"@odata.id", "/redfish/v1/Registries"}};
62
63 res.jsonValue["UpdateService"] = {
64 {"@odata.id", "/redfish/v1/UpdateService"}};
Ed Tanous3602e232019-05-13 11:11:44 -070065 res.jsonValue["UUID"] = uuid;
Marri Devender Rao5968cae2019-01-21 10:27:12 -060066 res.jsonValue["CertificateService"] = {
67 {"@odata.id", "/redfish/v1/CertificateService"}};
James Feist46229572020-02-19 15:11:58 -080068 res.jsonValue["Tasks"] = {{"@odata.id", "/redfish/v1/TaskService"}};
AppaRao Pulie5aaf042020-03-20 01:05:52 +053069 res.jsonValue["EventService"] = {
70 {"@odata.id", "/redfish/v1/EventService"}};
Ed Tanous1abe55e2018-09-05 08:30:59 -070071 res.end();
72 }
Ed Tanous3602e232019-05-13 11:11:44 -070073
74 std::string uuid;
Borawski.Lukaszb6df6dc2018-01-24 10:20:45 +010075};
76
Ed Tanous1abe55e2018-09-05 08:30:59 -070077} // namespace redfish