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 #include "utils/json_utils.hpp"
17 
18 #include "error_messages.hpp"
19 #include "http/http_request.hpp"
20 #include "http/http_response.hpp"
21 #include "http/parsing.hpp"
22 
23 #include <nlohmann/json.hpp>
24 
25 namespace redfish
26 {
27 
28 namespace json_util
29 {
30 
31 bool processJsonFromRequest(crow::Response& res, const crow::Request& req,
32                             nlohmann::json& reqJson)
33 {
34     JsonParseResult ret = parseRequestAsJson(req, reqJson);
35     if (ret == JsonParseResult::BadContentType)
36     {
37         messages::unrecognizedRequestBody(res);
38         return false;
39     }
40     reqJson = nlohmann::json::parse(req.body(), nullptr, false);
41 
42     if (reqJson.is_discarded())
43     {
44         messages::malformedJSON(res);
45         return false;
46     }
47 
48     return true;
49 }
50 
51 } // namespace json_util
52 } // namespace redfish
53