Commit a46aa9c4 authored by Cédric Le Ninivin's avatar Cédric Le Ninivin

erp5_api_style: asJIOStyle can handle get and put without the id property

parent 336393e8
......@@ -73,16 +73,21 @@ if not isinstance(data, dict):
# If get or put, valid Id is expected
if mode in ("get", "put"):
if not document_id:
try:
document_id = data["id"]
except KeyError:
return logError("Cannot find id property", error_name="API-JSON-NO-ID-PROPERTY")
except TypeError:
return logError("Did not received a JSON Object", error_name="API-JSON-NOT-JSON-OBJECT")
try:
document = portal.restrictedTraverse(str(document_id))
except KeyError:
return logError("Document has not been found", error_name="API-DOCUMENT-NOT-FOUND", error_code=404)
if "id" in data:
try:
document_id = data["id"]
except KeyError:
return logError("Cannot find id property", error_name="API-JSON-NO-ID-PROPERTY")
except TypeError:
return logError("Did not received a JSON Object", error_name="API-JSON-NOT-JSON-OBJECT")
try:
document = portal.restrictedTraverse(str(document_id))
except KeyError:
return logError("Document has not been found", error_name="API-DOCUMENT-NOT-FOUND", error_code=404)
else:
document = context.jIOWebSection_getObjectFromData(data)
if document is None:
return logError("The data you provided did not allow to find the corresponding document", error_name="API-JSON-DOCUMENT-NOT-FOUND")
else:
document = context
......
<?xml version="1.0"?>
<ZopeData>
<record id="1" aka="AAAAAAAAAAE=">
<pickle>
<global name="PythonScript" module="Products.PythonScripts.PythonScript"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>Script_magic</string> </key>
<value> <int>3</int> </value>
</item>
<item>
<key> <string>_bind_names</string> </key>
<value>
<object>
<klass>
<global name="NameAssignments" module="Shared.DC.Scripts.Bindings"/>
</klass>
<tuple/>
<state>
<dictionary>
<item>
<key> <string>_asgns</string> </key>
<value>
<dictionary>
<item>
<key> <string>name_container</string> </key>
<value> <string>container</string> </value>
</item>
<item>
<key> <string>name_context</string> </key>
<value> <string>context</string> </value>
</item>
<item>
<key> <string>name_m_self</string> </key>
<value> <string>script</string> </value>
</item>
<item>
<key> <string>name_subpath</string> </key>
<value> <string>traverse_subpath</string> </value>
</item>
</dictionary>
</value>
</item>
</dictionary>
</state>
</object>
</value>
</item>
<item>
<key> <string>_params</string> </key>
<value> <string>data_dict</string> </value>
</item>
<item>
<key> <string>id</string> </key>
<value> <string>jIOWebSection_getObjectFromData</string> </value>
</item>
</dictionary>
</pickle>
</record>
</ZopeData>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment