Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Option to parse XML from Classic API endpoints #33

Open
homebysix opened this issue Nov 28, 2023 · 3 comments
Open

[Feature Request] Option to parse XML from Classic API endpoints #33

homebysix opened this issue Nov 28, 2023 · 3 comments
Assignees
Labels
enhancement New feature or request feedback Potential improvements or changes

Comments

@homebysix
Copy link

Currently, JSON responses are requested from the Classic API and can be parsed with the .json() method:

response = api.classic_api_request("GET", "accounts/userid/257")
user_info = response.json()

However, there's no equivalent option for parsing XML responses if the headers are overridden to request XML:

response = api.classic_api_request("GET", "accounts/userid/257", override_headers={"Accept": "application/xml"})
user_info = response.xml()  # this doesn't exist

Some orgs may benefit from the ability to choose between XML and JSON responses. One use case would be working around Jamf product issues that affect the accuracy of information returned via one format — like PI104345: /accounts endpoint giving different results when searching by userid vs. username.

Proposal

The SDK could provide an .xml() method similar to the existing .json() method that converts XML responses to dictionary form, possibly leveraging a module like xmltodict to do the work behind the scenes.

Alternatively, the response could contain a .data attribute that provides the relevant information in structured data (lists or dicts) regardless of what serialization format was requested — a parsed equivalent to .text. This attribute could replace both .json() and .xml() functionalities.

Thanks for considering.

@homebysix homebysix added the enhancement New feature or request label Nov 28, 2023
@homebysix homebysix changed the title [Feature Request] Option to accept XML from Classic API endpoints [Feature Request] Option to parse XML from Classic API endpoints Nov 28, 2023
@brysontyrrell brysontyrrell self-assigned this Nov 28, 2023
@brysontyrrell brysontyrrell added the feedback Potential improvements or changes label Nov 28, 2023
@brysontyrrell
Copy link
Collaborator

I'm in favor of this as an option for the Classic API.

No implementation is likely to match the existing Classic API models as those are based on the JSON responses.

The question becomes do we want a conversion function that parses xml -> dict or do we want to return an object like ElementTree?

@homebysix
Copy link
Author

Personally, I'd rather have the dictionary than the ElementTree — lower learning curve and easier to switch between JSON and XML represented objects as needed.

@brysontyrrell
Copy link
Collaborator

@homebysix Have been looking into XML option with auto conversion to a Python dictionary and there are some issues trying to leverage options like xmltodict. In a nutshell, the parsers don't know when a node that has only one child is supposed to be an array. You can end up with returns where some resource attributes are dicts and others are arrays.

Here's an issue that describes it well: martinblech/xmltodict#14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request feedback Potential improvements or changes
Projects
None yet
Development

No branches or pull requests

2 participants