From: "Chang, Abner" <abner.chang@amd.com>
To: Nickle Wang <nicklew@nvidia.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: Igor Kulchytskyy <igork@ami.com>
Subject: Re: [edk2-redfish-client][PATCH 3/6] Tool/Redfish-Profile-Simulator: Update patch method of computer system
Date: Tue, 9 May 2023 06:06:37 +0000 [thread overview]
Message-ID: <MN2PR12MB39663594C0051C28B7EF9A75EA769@MN2PR12MB3966.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20230508145147.16771-1-nicklew@nvidia.com>
[AMD Official Use Only - General]
Reviewed-by: Abner Chang <abner.chang@amd.com>
> -----Original Message-----
> From: Nickle Wang <nicklew@nvidia.com>
> Sent: Monday, May 8, 2023 10:52 PM
> To: devel@edk2.groups.io
> Cc: Chang, Abner <Abner.Chang@amd.com>; Igor Kulchytskyy
> <igork@ami.com>
> Subject: [edk2-redfish-client][PATCH 3/6] Tool/Redfish-Profile-Simulator:
> Update patch method of computer system
>
> Caution: This message originated from an External Source. Use proper
> caution when opening attachments, clicking links, or responding.
>
>
> Remove attribute check during patch of computer system and return
> content-type with JSON format in HTTP header.
>
> Signed-off-by: Nickle Wang <nicklew@nvidia.com>
> Cc: Abner Chang <abner.chang@amd.com>
> Cc: Igor Kulchytskyy <igork@ami.com>
> ---
> .../v1sim/resource.py | 4 ++-
> .../v1sim/systems.py | 28 +++++++------------
> 2 files changed, 13 insertions(+), 19 deletions(-)
>
> diff --git a/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> b/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> index ca7541f1..e722d16a 100644
> --- a/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> +++ b/Tools/Redfish-Profile-Simulator/v1sim/resource.py
> @@ -2,6 +2,7 @@
> # Copyright Notice:
> #
> # Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
> +# (C) Copyright 2021-2022 Hewlett Packard Enterprise Development LP<BR>
> # SPDX-License-Identifier: BSD-2-Clause-Patent # # Copyright Notice:
> @@ -47,6 +48,7 @@ class RfResource:
> try:
> # SHA1 should generate well-behaved etags
> response = flask.make_response(self.response)
> + response.mimetype = 'application/json'
> etag = hashlib.sha1(self.response.encode('utf-8')).hexdigest()
> response.set_etag(etag)
> return response
> @@ -69,7 +71,7 @@ class RfResource:
> else:
> raise Exception("attribute %s not found" % key)
>
> - resp = flask.Response(json.dumps(self.res_data,indent=4))
> + resp = flask.Response(json.dumps(self.res_data,indent=4),
> + mimetype="application/json")
> return 0, 200, None, resp
>
> def post_resource(self, post_data):
> diff --git a/Tools/Redfish-Profile-Simulator/v1sim/systems.py
> b/Tools/Redfish-Profile-Simulator/v1sim/systems.py
> index de4b839a..6305a51e 100644
> --- a/Tools/Redfish-Profile-Simulator/v1sim/systems.py
> +++ b/Tools/Redfish-Profile-Simulator/v1sim/systems.py
> @@ -2,7 +2,7 @@
> # Copyright Notice:
> #
> # Copyright (c) 2019, Intel Corporation. All rights reserved.<BR> -# (C)
> Copyright 2021 Hewlett Packard Enterprise Development LP<BR>
> +# (C) Copyright 2021-2022 Hewlett Packard Enterprise Development LP<BR>
> # SPDX-License-Identifier: BSD-2-Clause-Patent # # Copyright Notice:
> @@ -63,15 +63,7 @@ class RfSystemObj(RfResource):
> self.components[item] = RfBootOptionCollection(base_path,
> os.path.join(rel_path, item), parent=self)
>
> def patch_resource(self, patch_data):
> - # first verify client didn't send us a property we cant patch
> - for key in patch_data.keys():
> - if key != "AssetTag" and key != "IndicatorLED" and key != "Boot" and
> key != "BiosVersion":
> - return 4, 400, "Invalid Patch Property Sent", ""
> - elif key == "Boot":
> - for prop2 in patch_data["Boot"].keys():
> - if prop2 != "BootSourceOverrideEnabled" and prop2 !=
> "BootSourceOverrideTarget" and prop2 != "BootNext" and prop2 !=
> "BootOrder":
> - return 4, 400, "Invalid Patch Property Sent", ""
> - # now patch the valid properties sent
> + # patch the valid properties sent
> if "AssetTag" in patch_data:
> print("assetTag:{}".format(patch_data["AssetTag"]))
> self.res_data['AssetTag'] = patch_data['AssetTag'] @@ -100,7 +92,7
> @@ class RfSystemObj(RfResource):
> if "BootOrder" in boot_data:
> self.res_data['Boot']['BootOrder'] = boot_data['BootOrder']
>
> - resp = flask.Response(json.dumps(self.res_data,indent=4))
> + resp = flask.Response(json.dumps(self.res_data,indent=4),
> + mimetype="application/json")
> return 0, 200, None, resp
>
> def reset_resource(self, reset_data):
> @@ -150,7 +142,7 @@ class RfMemoryCollection(RfCollection):
> post_data["@odata.etag"] = etag_str
> self.elements[str(newMemoryIdx)] = post_data
>
> - resp = flask.Response(json.dumps(post_data,indent=4))
> + resp = flask.Response(json.dumps(post_data,indent=4),
> + mimetype="application/json")
> resp.headers["Location"] = newMemoryUrl
> resp.headers["ETag"] = etag_str
>
> @@ -163,7 +155,7 @@ class RfMemoryCollection(RfCollection):
> patch_data["@odata.etag"] = etag_str
>
> self.elements[str(Idx)] = {**self.elements[str(Idx)], **patch_data}
> - resp = flask.Response(json.dumps(self.elements[str(Idx)],indent=4))
> + resp =
> + flask.Response(json.dumps(self.elements[str(Idx)],indent=4),
> + mimetype="application/json")
> return 0, 200, None, resp
>
> def get_memory(self, Idx):
> @@ -172,7 +164,7 @@ class RfMemoryCollection(RfCollection):
> def delete_memory(self, Idx):
> print("in delete_memory")
>
> - resp = flask.Response(json.dumps(self.elements[Idx],indent=4))
> + resp = flask.Response(json.dumps(self.elements[Idx],indent=4),
> + mimetype="application/json")
>
> self.elements.pop(Idx)
> self.res_data["Members@odata.count"] =
> self.res_data["Members@odata.count"] - 1 @@ -228,7 +220,7 @@ class
> RfBiosSettings(RfResource):
> return 4, 400, "Invalid Patch Property Sent", ""
> else:
> self.res_data["Attributes"][key] = patch_data["Attributes"][key]
> - resp = flask.Response(json.dumps(self.res_data,indent=4))
> + resp = flask.Response(json.dumps(self.res_data,indent=4),
> + mimetype="application/json")
> return 0, 200, None, resp
>
>
> @@ -297,13 +289,13 @@ class RfBootOptionCollection(RfCollection):
> post_data["@odata.id"] = newBootOptUrl
> self.bootOptions[str(newBootOptIdx)] = post_data
>
> - resp = flask.Response(json.dumps(post_data,indent=4))
> + resp = flask.Response(json.dumps(post_data,indent=4),
> + mimetype="application/json")
> resp.headers["Location"] = newBootOptUrl
> return 0, 200, None, resp
>
> def patch_bootOpt(self, Idx, patch_data):
> self.bootOptions[str(Idx)] = {**self.bootOptions[str(Idx)], **patch_data}
> - resp = flask.Response(json.dumps(self.bootOptions[str(Idx)],indent=4))
> + resp =
> + flask.Response(json.dumps(self.bootOptions[str(Idx)],indent=4),
> + mimetype="application/json")
> return 0, 200, None, resp
>
> def get_bootOpt(self, Idx):
> @@ -312,7 +304,7 @@ class RfBootOptionCollection(RfCollection):
> def delete_bootOpt(self, Idx):
> print("in delete_bootOpt")
>
> - resp = flask.Response(json.dumps(self.bootOptions[Idx],indent=4))
> + resp =
> + flask.Response(json.dumps(self.bootOptions[Idx],indent=4),
> + mimetype="application/json")
>
> self.bootOptions.pop(Idx)
> self.res_data["Members@odata.count"] =
> self.res_data["Members@odata.count"] - 1
> --
> 2.17.1
prev parent reply other threads:[~2023-05-09 6:06 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-08 14:51 [edk2-redfish-client][PATCH 3/6] Tool/Redfish-Profile-Simulator: Update patch method of computer system Nickle Wang
2023-05-09 6:06 ` Chang, Abner [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=MN2PR12MB39663594C0051C28B7EF9A75EA769@MN2PR12MB3966.namprd12.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox