xref: /openbmc/bmcweb/features/redfish/lib/task.hpp (revision decde9ef8d94b40551803b47a09d7d3ea2b8c95d)
146229577SJames Feist /*
246229577SJames Feist // Copyright (c) 2020 Intel Corporation
346229577SJames Feist //
446229577SJames Feist // Licensed under the Apache License, Version 2.0 (the "License");
546229577SJames Feist // you may not use this file except in compliance with the License.
646229577SJames Feist // You may obtain a copy of the License at
746229577SJames Feist //
846229577SJames Feist //      http://www.apache.org/licenses/LICENSE-2.0
946229577SJames Feist //
1046229577SJames Feist // Unless required by applicable law or agreed to in writing, software
1146229577SJames Feist // distributed under the License is distributed on an "AS IS" BASIS,
1246229577SJames Feist // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1346229577SJames Feist // See the License for the specific language governing permissions and
1446229577SJames Feist // limitations under the License.
1546229577SJames Feist */
1646229577SJames Feist #pragma once
1746229577SJames Feist 
1846229577SJames Feist #include "node.hpp"
1946229577SJames Feist 
20*decde9efSZhenfei Tai #include <boost/asio.hpp>
2146229577SJames Feist #include <boost/container/flat_map.hpp>
2246229577SJames Feist #include <chrono>
2346229577SJames Feist #include <variant>
2446229577SJames Feist 
2546229577SJames Feist namespace redfish
2646229577SJames Feist {
2746229577SJames Feist 
2846229577SJames Feist namespace task
2946229577SJames Feist {
3046229577SJames Feist constexpr size_t maxTaskCount = 100; // arbitrary limit
3146229577SJames Feist 
3246229577SJames Feist static std::deque<std::shared_ptr<struct TaskData>> tasks;
3346229577SJames Feist 
3432898ceaSJames Feist constexpr bool completed = true;
3532898ceaSJames Feist 
36fe306728SJames Feist struct Payload
37fe306728SJames Feist {
38fe306728SJames Feist     Payload(const crow::Request &req) :
39fe306728SJames Feist         targetUri(req.url), httpOperation(req.methodString()),
40fe306728SJames Feist         httpHeaders(nlohmann::json::array())
41fe306728SJames Feist 
42fe306728SJames Feist     {
43fe306728SJames Feist         using field_ns = boost::beast::http::field;
44fe306728SJames Feist         constexpr const std::array<boost::beast::http::field, 7>
45fe306728SJames Feist             headerWhitelist = {field_ns::accept,     field_ns::accept_encoding,
46fe306728SJames Feist                                field_ns::user_agent, field_ns::host,
47fe306728SJames Feist                                field_ns::connection, field_ns::content_length,
48fe306728SJames Feist                                field_ns::upgrade};
49fe306728SJames Feist 
50fe306728SJames Feist         jsonBody = nlohmann::json::parse(req.body, nullptr, false);
51fe306728SJames Feist         if (jsonBody.is_discarded())
52fe306728SJames Feist         {
53fe306728SJames Feist             jsonBody = nullptr;
54fe306728SJames Feist         }
55fe306728SJames Feist 
56fe306728SJames Feist         for (const auto &field : req.fields)
57fe306728SJames Feist         {
58fe306728SJames Feist             if (std::find(headerWhitelist.begin(), headerWhitelist.end(),
59fe306728SJames Feist                           field.name()) == headerWhitelist.end())
60fe306728SJames Feist             {
61fe306728SJames Feist                 continue;
62fe306728SJames Feist             }
63fe306728SJames Feist             std::string header;
64fe306728SJames Feist             header.reserve(field.name_string().size() + 2 +
65fe306728SJames Feist                            field.value().size());
66fe306728SJames Feist             header += field.name_string();
67fe306728SJames Feist             header += ": ";
68fe306728SJames Feist             header += field.value();
69fe306728SJames Feist             httpHeaders.emplace_back(std::move(header));
70fe306728SJames Feist         }
71fe306728SJames Feist     }
72fe306728SJames Feist     Payload() = delete;
73fe306728SJames Feist 
74fe306728SJames Feist     std::string targetUri;
75fe306728SJames Feist     std::string httpOperation;
76fe306728SJames Feist     nlohmann::json httpHeaders;
77fe306728SJames Feist     nlohmann::json jsonBody;
78fe306728SJames Feist };
79fe306728SJames Feist 
80fe306728SJames Feist inline void to_json(nlohmann::json &j, const Payload &p)
81fe306728SJames Feist {
82fe306728SJames Feist     j = {{"TargetUri", p.targetUri},
83fe306728SJames Feist          {"HttpOperation", p.httpOperation},
84fe306728SJames Feist          {"HttpHeaders", p.httpHeaders},
85fe306728SJames Feist          {"JsonBody", p.jsonBody.dump()}};
86fe306728SJames Feist }
87fe306728SJames Feist 
8846229577SJames Feist struct TaskData : std::enable_shared_from_this<TaskData>
8946229577SJames Feist {
9046229577SJames Feist   private:
9146229577SJames Feist     TaskData(std::function<bool(boost::system::error_code,
9246229577SJames Feist                                 sdbusplus::message::message &,
9346229577SJames Feist                                 const std::shared_ptr<TaskData> &)> &&handler,
9446229577SJames Feist              const std::string &match, size_t idx) :
9546229577SJames Feist         callback(std::move(handler)),
9646229577SJames Feist         matchStr(match), index(idx),
9746229577SJames Feist         startTime(std::chrono::system_clock::to_time_t(
9846229577SJames Feist             std::chrono::system_clock::now())),
9946229577SJames Feist         status("OK"), state("Running"), messages(nlohmann::json::array()),
10046229577SJames Feist         timer(crow::connections::systemBus->get_io_context())
10146229577SJames Feist 
10246229577SJames Feist     {
10346229577SJames Feist     }
10446229577SJames Feist     TaskData() = delete;
10546229577SJames Feist 
10646229577SJames Feist   public:
10746229577SJames Feist     static std::shared_ptr<TaskData> &createTask(
10846229577SJames Feist         std::function<bool(boost::system::error_code,
10946229577SJames Feist                            sdbusplus::message::message &,
11046229577SJames Feist                            const std::shared_ptr<TaskData> &)> &&handler,
11146229577SJames Feist         const std::string &match)
11246229577SJames Feist     {
11346229577SJames Feist         static size_t lastTask = 0;
11446229577SJames Feist         struct MakeSharedHelper : public TaskData
11546229577SJames Feist         {
11646229577SJames Feist             MakeSharedHelper(
11746229577SJames Feist                 std::function<bool(
11846229577SJames Feist                     boost::system::error_code, sdbusplus::message::message &,
11946229577SJames Feist                     const std::shared_ptr<TaskData> &)> &&handler,
12046229577SJames Feist                 const std::string &match, size_t idx) :
12146229577SJames Feist                 TaskData(std::move(handler), match, idx)
12246229577SJames Feist             {
12346229577SJames Feist             }
12446229577SJames Feist         };
12546229577SJames Feist 
12646229577SJames Feist         if (tasks.size() >= maxTaskCount)
12746229577SJames Feist         {
12846229577SJames Feist             auto &last = tasks.front();
12946229577SJames Feist 
13046229577SJames Feist             // destroy all references
13146229577SJames Feist             last->timer.cancel();
13246229577SJames Feist             last->match.reset();
13346229577SJames Feist             tasks.pop_front();
13446229577SJames Feist         }
13546229577SJames Feist 
13646229577SJames Feist         return tasks.emplace_back(std::make_shared<MakeSharedHelper>(
13746229577SJames Feist             std::move(handler), match, lastTask++));
13846229577SJames Feist     }
13946229577SJames Feist 
14046229577SJames Feist     void populateResp(crow::Response &res, size_t retryAfterSeconds = 30)
14146229577SJames Feist     {
14246229577SJames Feist         if (!endTime)
14346229577SJames Feist         {
14446229577SJames Feist             res.result(boost::beast::http::status::accepted);
14546229577SJames Feist             std::string strIdx = std::to_string(index);
14646229577SJames Feist             std::string uri = "/redfish/v1/TaskService/Tasks/" + strIdx;
14746229577SJames Feist             res.jsonValue = {{"@odata.id", uri},
14846229577SJames Feist                              {"@odata.type", "#Task.v1_4_3.Task"},
14946229577SJames Feist                              {"Id", strIdx},
15046229577SJames Feist                              {"TaskState", state},
15146229577SJames Feist                              {"TaskStatus", status}};
15246229577SJames Feist             res.addHeader(boost::beast::http::field::location,
15346229577SJames Feist                           uri + "/Monitor");
15446229577SJames Feist             res.addHeader(boost::beast::http::field::retry_after,
15546229577SJames Feist                           std::to_string(retryAfterSeconds));
15646229577SJames Feist         }
15746229577SJames Feist         else if (!gave204)
15846229577SJames Feist         {
15946229577SJames Feist             res.result(boost::beast::http::status::no_content);
16046229577SJames Feist             gave204 = true;
16146229577SJames Feist         }
16246229577SJames Feist     }
16346229577SJames Feist 
16446229577SJames Feist     void finishTask(void)
16546229577SJames Feist     {
16646229577SJames Feist         endTime = std::chrono::system_clock::to_time_t(
16746229577SJames Feist             std::chrono::system_clock::now());
16846229577SJames Feist     }
16946229577SJames Feist 
17046229577SJames Feist     void startTimer(const std::chrono::seconds &timeout)
17146229577SJames Feist     {
17246229577SJames Feist         match = std::make_unique<sdbusplus::bus::match::match>(
17346229577SJames Feist             static_cast<sdbusplus::bus::bus &>(*crow::connections::systemBus),
17446229577SJames Feist             matchStr,
17546229577SJames Feist             [self = shared_from_this()](sdbusplus::message::message &message) {
17646229577SJames Feist                 boost::system::error_code ec;
17746229577SJames Feist 
17846229577SJames Feist                 // callback to return True if callback is done, callback needs
17946229577SJames Feist                 // to update status itself if needed
18032898ceaSJames Feist                 if (self->callback(ec, message, self) == task::completed)
18146229577SJames Feist                 {
18246229577SJames Feist                     self->timer.cancel();
18346229577SJames Feist                     self->finishTask();
18446229577SJames Feist 
18546229577SJames Feist                     // reset the match after the callback was successful
186*decde9efSZhenfei Tai                     boost::asio::post(
187*decde9efSZhenfei Tai                         crow::connections::systemBus->get_io_context(),
18846229577SJames Feist                         [self] { self->match.reset(); });
18946229577SJames Feist                     return;
19046229577SJames Feist                 }
19146229577SJames Feist             });
19246229577SJames Feist         timer.expires_after(timeout);
19346229577SJames Feist         timer.async_wait(
19446229577SJames Feist             [self = shared_from_this()](boost::system::error_code ec) {
19546229577SJames Feist                 if (ec == boost::asio::error::operation_aborted)
19646229577SJames Feist                 {
19746229577SJames Feist                     return; // completed succesfully
19846229577SJames Feist                 }
19946229577SJames Feist                 if (!ec)
20046229577SJames Feist                 {
20146229577SJames Feist                     // change ec to error as timer expired
20246229577SJames Feist                     ec = boost::asio::error::operation_aborted;
20346229577SJames Feist                 }
20446229577SJames Feist                 self->match.reset();
20546229577SJames Feist                 sdbusplus::message::message msg;
20646229577SJames Feist                 self->finishTask();
20746229577SJames Feist                 self->state = "Cancelled";
20846229577SJames Feist                 self->status = "Warning";
209363c2302SJames Feist                 self->messages.emplace_back(messages::internalError());
21046229577SJames Feist                 self->callback(ec, msg, self);
21146229577SJames Feist             });
21246229577SJames Feist     }
21346229577SJames Feist 
21446229577SJames Feist     std::function<bool(boost::system::error_code, sdbusplus::message::message &,
21546229577SJames Feist                        const std::shared_ptr<TaskData> &)>
21646229577SJames Feist         callback;
21746229577SJames Feist     std::string matchStr;
21846229577SJames Feist     size_t index;
21946229577SJames Feist     time_t startTime;
22046229577SJames Feist     std::string status;
22146229577SJames Feist     std::string state;
22246229577SJames Feist     nlohmann::json messages;
22346229577SJames Feist     boost::asio::steady_timer timer;
22446229577SJames Feist     std::unique_ptr<sdbusplus::bus::match::match> match;
22546229577SJames Feist     std::optional<time_t> endTime;
226fe306728SJames Feist     std::optional<Payload> payload;
22746229577SJames Feist     bool gave204 = false;
22846229577SJames Feist };
22946229577SJames Feist 
23046229577SJames Feist } // namespace task
23146229577SJames Feist 
23246229577SJames Feist class TaskMonitor : public Node
23346229577SJames Feist {
23446229577SJames Feist   public:
23546229577SJames Feist     TaskMonitor(CrowApp &app) :
2367af91514SGunnar Mills         Node((app), "/redfish/v1/TaskService/Tasks/<str>/Monitor/",
23746229577SJames Feist              std::string())
23846229577SJames Feist     {
23946229577SJames Feist         entityPrivileges = {
24046229577SJames Feist             {boost::beast::http::verb::get, {{"Login"}}},
24146229577SJames Feist             {boost::beast::http::verb::head, {{"Login"}}},
24246229577SJames Feist             {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
24346229577SJames Feist             {boost::beast::http::verb::put, {{"ConfigureManager"}}},
24446229577SJames Feist             {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
24546229577SJames Feist             {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
24646229577SJames Feist     }
24746229577SJames Feist 
24846229577SJames Feist   private:
24946229577SJames Feist     void doGet(crow::Response &res, const crow::Request &req,
25046229577SJames Feist                const std::vector<std::string> &params) override
25146229577SJames Feist     {
25246229577SJames Feist         auto asyncResp = std::make_shared<AsyncResp>(res);
25346229577SJames Feist         if (params.size() != 1)
25446229577SJames Feist         {
25546229577SJames Feist             messages::internalError(asyncResp->res);
25646229577SJames Feist             return;
25746229577SJames Feist         }
25846229577SJames Feist 
25946229577SJames Feist         const std::string &strParam = params[0];
26046229577SJames Feist         auto find = std::find_if(
26146229577SJames Feist             task::tasks.begin(), task::tasks.end(),
26246229577SJames Feist             [&strParam](const std::shared_ptr<task::TaskData> &task) {
26346229577SJames Feist                 if (!task)
26446229577SJames Feist                 {
26546229577SJames Feist                     return false;
26646229577SJames Feist                 }
26746229577SJames Feist 
26846229577SJames Feist                 // we compare against the string version as on failure strtoul
26946229577SJames Feist                 // returns 0
27046229577SJames Feist                 return std::to_string(task->index) == strParam;
27146229577SJames Feist             });
27246229577SJames Feist 
27346229577SJames Feist         if (find == task::tasks.end())
27446229577SJames Feist         {
27546229577SJames Feist             messages::resourceNotFound(asyncResp->res, "Monitor", strParam);
27646229577SJames Feist             return;
27746229577SJames Feist         }
27846229577SJames Feist         std::shared_ptr<task::TaskData> &ptr = *find;
27946229577SJames Feist         // monitor expires after 204
28046229577SJames Feist         if (ptr->gave204)
28146229577SJames Feist         {
28246229577SJames Feist             messages::resourceNotFound(asyncResp->res, "Monitor", strParam);
28346229577SJames Feist             return;
28446229577SJames Feist         }
28546229577SJames Feist         ptr->populateResp(asyncResp->res);
28646229577SJames Feist     }
28746229577SJames Feist };
28846229577SJames Feist 
28946229577SJames Feist class Task : public Node
29046229577SJames Feist {
29146229577SJames Feist   public:
29246229577SJames Feist     Task(CrowApp &app) :
2937af91514SGunnar Mills         Node((app), "/redfish/v1/TaskService/Tasks/<str>/", std::string())
29446229577SJames Feist     {
29546229577SJames Feist         entityPrivileges = {
29646229577SJames Feist             {boost::beast::http::verb::get, {{"Login"}}},
29746229577SJames Feist             {boost::beast::http::verb::head, {{"Login"}}},
29846229577SJames Feist             {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
29946229577SJames Feist             {boost::beast::http::verb::put, {{"ConfigureManager"}}},
30046229577SJames Feist             {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
30146229577SJames Feist             {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
30246229577SJames Feist     }
30346229577SJames Feist 
30446229577SJames Feist   private:
30546229577SJames Feist     void doGet(crow::Response &res, const crow::Request &req,
30646229577SJames Feist                const std::vector<std::string> &params) override
30746229577SJames Feist     {
30846229577SJames Feist         auto asyncResp = std::make_shared<AsyncResp>(res);
30946229577SJames Feist         if (params.size() != 1)
31046229577SJames Feist         {
31146229577SJames Feist             messages::internalError(asyncResp->res);
31246229577SJames Feist             return;
31346229577SJames Feist         }
31446229577SJames Feist 
31546229577SJames Feist         const std::string &strParam = params[0];
31646229577SJames Feist         auto find = std::find_if(
31746229577SJames Feist             task::tasks.begin(), task::tasks.end(),
31846229577SJames Feist             [&strParam](const std::shared_ptr<task::TaskData> &task) {
31946229577SJames Feist                 if (!task)
32046229577SJames Feist                 {
32146229577SJames Feist                     return false;
32246229577SJames Feist                 }
32346229577SJames Feist 
32446229577SJames Feist                 // we compare against the string version as on failure strtoul
32546229577SJames Feist                 // returns 0
32646229577SJames Feist                 return std::to_string(task->index) == strParam;
32746229577SJames Feist             });
32846229577SJames Feist 
32946229577SJames Feist         if (find == task::tasks.end())
33046229577SJames Feist         {
33146229577SJames Feist             messages::resourceNotFound(asyncResp->res, "Tasks", strParam);
33246229577SJames Feist             return;
33346229577SJames Feist         }
33446229577SJames Feist 
33546229577SJames Feist         std::shared_ptr<task::TaskData> &ptr = *find;
33646229577SJames Feist 
33746229577SJames Feist         asyncResp->res.jsonValue["@odata.type"] = "#Task.v1_4_3.Task";
33846229577SJames Feist         asyncResp->res.jsonValue["Id"] = strParam;
33946229577SJames Feist         asyncResp->res.jsonValue["Name"] = "Task " + strParam;
34046229577SJames Feist         asyncResp->res.jsonValue["TaskState"] = ptr->state;
34146229577SJames Feist         asyncResp->res.jsonValue["StartTime"] =
34246229577SJames Feist             crow::utility::getDateTime(ptr->startTime);
34346229577SJames Feist         if (ptr->endTime)
34446229577SJames Feist         {
34546229577SJames Feist             asyncResp->res.jsonValue["EndTime"] =
34646229577SJames Feist                 crow::utility::getDateTime(*(ptr->endTime));
34746229577SJames Feist         }
34846229577SJames Feist         asyncResp->res.jsonValue["TaskStatus"] = ptr->status;
34946229577SJames Feist         asyncResp->res.jsonValue["Messages"] = ptr->messages;
35046229577SJames Feist         asyncResp->res.jsonValue["@odata.id"] =
35146229577SJames Feist             "/redfish/v1/TaskService/Tasks/" + strParam;
35246229577SJames Feist         if (!ptr->gave204)
35346229577SJames Feist         {
35446229577SJames Feist             asyncResp->res.jsonValue["TaskMonitor"] =
35546229577SJames Feist                 "/redfish/v1/TaskService/Tasks/" + strParam + "/Monitor";
35646229577SJames Feist         }
357fe306728SJames Feist         if (ptr->payload)
358fe306728SJames Feist         {
359fe306728SJames Feist             asyncResp->res.jsonValue["Payload"] = *(ptr->payload);
360fe306728SJames Feist         }
36146229577SJames Feist     }
36246229577SJames Feist };
36346229577SJames Feist 
36446229577SJames Feist class TaskCollection : public Node
36546229577SJames Feist {
36646229577SJames Feist   public:
3677af91514SGunnar Mills     TaskCollection(CrowApp &app) : Node(app, "/redfish/v1/TaskService/Tasks/")
36846229577SJames Feist     {
36946229577SJames Feist         entityPrivileges = {
37046229577SJames Feist             {boost::beast::http::verb::get, {{"Login"}}},
37146229577SJames Feist             {boost::beast::http::verb::head, {{"Login"}}},
37246229577SJames Feist             {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
37346229577SJames Feist             {boost::beast::http::verb::put, {{"ConfigureManager"}}},
37446229577SJames Feist             {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
37546229577SJames Feist             {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
37646229577SJames Feist     }
37746229577SJames Feist 
37846229577SJames Feist   private:
37946229577SJames Feist     void doGet(crow::Response &res, const crow::Request &req,
38046229577SJames Feist                const std::vector<std::string> &params) override
38146229577SJames Feist     {
38246229577SJames Feist         auto asyncResp = std::make_shared<AsyncResp>(res);
38346229577SJames Feist         asyncResp->res.jsonValue["@odata.type"] =
38446229577SJames Feist             "#TaskCollection.TaskCollection";
38546229577SJames Feist         asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TaskService/Tasks";
38646229577SJames Feist         asyncResp->res.jsonValue["Name"] = "Task Collection";
38746229577SJames Feist         asyncResp->res.jsonValue["Members@odata.count"] = task::tasks.size();
38846229577SJames Feist         nlohmann::json &members = asyncResp->res.jsonValue["Members"];
38946229577SJames Feist         members = nlohmann::json::array();
39046229577SJames Feist 
39146229577SJames Feist         for (const std::shared_ptr<task::TaskData> &task : task::tasks)
39246229577SJames Feist         {
39346229577SJames Feist             if (task == nullptr)
39446229577SJames Feist             {
39546229577SJames Feist                 continue; // shouldn't be possible
39646229577SJames Feist             }
39746229577SJames Feist             members.emplace_back(
39846229577SJames Feist                 nlohmann::json{{"@odata.id", "/redfish/v1/TaskService/Tasks/" +
39946229577SJames Feist                                                  std::to_string(task->index)}});
40046229577SJames Feist         }
40146229577SJames Feist     }
40246229577SJames Feist };
40346229577SJames Feist 
40446229577SJames Feist class TaskService : public Node
40546229577SJames Feist {
40646229577SJames Feist   public:
4077af91514SGunnar Mills     TaskService(CrowApp &app) : Node(app, "/redfish/v1/TaskService/")
40846229577SJames Feist     {
40946229577SJames Feist         entityPrivileges = {
41046229577SJames Feist             {boost::beast::http::verb::get, {{"Login"}}},
41146229577SJames Feist             {boost::beast::http::verb::head, {{"Login"}}},
41246229577SJames Feist             {boost::beast::http::verb::patch, {{"ConfigureManager"}}},
41346229577SJames Feist             {boost::beast::http::verb::put, {{"ConfigureManager"}}},
41446229577SJames Feist             {boost::beast::http::verb::delete_, {{"ConfigureManager"}}},
41546229577SJames Feist             {boost::beast::http::verb::post, {{"ConfigureManager"}}}};
41646229577SJames Feist     }
41746229577SJames Feist 
41846229577SJames Feist   private:
41946229577SJames Feist     void doGet(crow::Response &res, const crow::Request &req,
42046229577SJames Feist                const std::vector<std::string> &params) override
42146229577SJames Feist     {
42246229577SJames Feist         auto asyncResp = std::make_shared<AsyncResp>(res);
42346229577SJames Feist         asyncResp->res.jsonValue["@odata.type"] =
42446229577SJames Feist             "#TaskService.v1_1_4.TaskService";
42546229577SJames Feist         asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/TaskService";
42646229577SJames Feist         asyncResp->res.jsonValue["Name"] = "Task Service";
42746229577SJames Feist         asyncResp->res.jsonValue["Id"] = "TaskService";
42846229577SJames Feist         asyncResp->res.jsonValue["DateTime"] = crow::utility::dateTimeNow();
42946229577SJames Feist         asyncResp->res.jsonValue["CompletedTaskOverWritePolicy"] = "Oldest";
43046229577SJames Feist 
43146229577SJames Feist         // todo: if we enable events, change this to true
43246229577SJames Feist         asyncResp->res.jsonValue["LifeCycleEventOnTaskStateChange"] = false;
43346229577SJames Feist 
43446229577SJames Feist         auto health = std::make_shared<HealthPopulate>(asyncResp);
43546229577SJames Feist         health->populate();
43646229577SJames Feist         asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
43746229577SJames Feist         asyncResp->res.jsonValue["ServiceEnabled"] = true;
43846229577SJames Feist         asyncResp->res.jsonValue["Tasks"] = {
43946229577SJames Feist             {"@odata.id", "/redfish/v1/TaskService/Tasks"}};
44046229577SJames Feist     }
44146229577SJames Feist };
44246229577SJames Feist 
44346229577SJames Feist } // namespace redfish
444