Chassis: Add UUID property

This commit adds the support for implementing the "UUID" property
as defined in the Redfish Chassis schema.

UUID will enable further platform/board specific monitoring and control.

Redfish validator passed.

Tested:
$ curl -k -H "X-Auth-Token: $token" -H "Content-Type: application/json"
-X GET https://${bmc}/redfish/v1/Chassis/GPU1
{
  "@odata.id": "/redfish/v1/Chassis/GPU1",
  "@odata.type": "#Chassis.v1_14_0.Chassis",
  "Id": "GPU1",
  "Name": "GPU1",
  "UUID": "7b6e8e55-f0d5-4a9f-84a3-61635a3bc232"
}

Signed-off-by: Sharad Yadav <sharady@nvidia.com>
Change-Id: If73b424e171629b8ebb9b68cc81aadf841813a58
diff --git a/redfish-core/lib/chassis.hpp b/redfish-core/lib/chassis.hpp
index 22fa0cc..80c5c50 100644
--- a/redfish-core/lib/chassis.hpp
+++ b/redfish-core/lib/chassis.hpp
@@ -389,6 +389,42 @@
                             connectionName, path,
                             "org.freedesktop.DBus.Properties", "GetAll",
                             "xyz.openbmc_project.Inventory.Decorator.Asset");
+
+                        // Chassis UUID
+                        const std::string uuidInterface =
+                            "xyz.openbmc_project.Common.UUID";
+                        if (std::find(interfaces2.begin(), interfaces2.end(),
+                                      uuidInterface) != interfaces2.end())
+                        {
+                            crow::connections::systemBus->async_method_call(
+                                [asyncResp](const boost::system::error_code ec,
+                                            const std::variant<std::string>&
+                                                chassisUUID) {
+                                    if (ec)
+                                    {
+                                        BMCWEB_LOG_DEBUG
+                                            << "DBUS response error for "
+                                               "UUID";
+                                        messages::internalError(asyncResp->res);
+                                        return;
+                                    }
+                                    const std::string* value =
+                                        std::get_if<std::string>(&chassisUUID);
+                                    if (value == nullptr)
+                                    {
+                                        BMCWEB_LOG_DEBUG
+                                            << "Null value returned "
+                                               "for UUID";
+                                        messages::internalError(asyncResp->res);
+                                        return;
+                                    }
+                                    asyncResp->res.jsonValue["UUID"] = *value;
+                                },
+                                connectionName, path,
+                                "org.freedesktop.DBus.Properties", "Get",
+                                uuidInterface, "UUID");
+                        }
+
                         return;
                     }