mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Simplify XML error-handling and typo (#26929)
This PR fixes: - A typo in the aci_login function - Improve (XML) error-handling - Rename status_code back to status
This commit is contained in:
parent
abb4361990
commit
2b4a8095e9
3 changed files with 9 additions and 12 deletions
2
.github/BOTMETA.yml
vendored
2
.github/BOTMETA.yml
vendored
|
@ -430,7 +430,7 @@ files:
|
||||||
$modules/net_tools/omapi_host.py: nerzhul
|
$modules/net_tools/omapi_host.py: nerzhul
|
||||||
$modules/net_tools/snmp_facts.py: ogenstad
|
$modules/net_tools/snmp_facts.py: ogenstad
|
||||||
$modules/network/a10/: ericchou1 mischapeters
|
$modules/network/a10/: ericchou1 mischapeters
|
||||||
$modules/network/aci/: dagwieers jedelman8
|
$modules/network/aci/: dagwieers jedelman8 schunduri
|
||||||
$modules/network/aos/: dgarros jeremyschulman
|
$modules/network/aos/: dgarros jeremyschulman
|
||||||
$modules/network/asa/asa_acl.py: gundalow ogenstad
|
$modules/network/asa/asa_acl.py: gundalow ogenstad
|
||||||
$modules/network/asa/asa_command.py: gundalow ogenstad privateip
|
$modules/network/asa/asa_command.py: gundalow ogenstad privateip
|
||||||
|
|
|
@ -163,7 +163,7 @@ response:
|
||||||
returned: always
|
returned: always
|
||||||
type: string
|
type: string
|
||||||
sample: 'HTTP Error 400: Bad Request'
|
sample: 'HTTP Error 400: Bad Request'
|
||||||
status_code:
|
status:
|
||||||
description: HTTP status code
|
description: HTTP status code
|
||||||
returned: always
|
returned: always
|
||||||
type: int
|
type: int
|
||||||
|
@ -217,7 +217,7 @@ def aci_login(module, result=dict()):
|
||||||
module.params['protocol'] = 'https' if module.params.get('use_ssl', True) else 'http'
|
module.params['protocol'] = 'https' if module.params.get('use_ssl', True) else 'http'
|
||||||
|
|
||||||
# Perform login request
|
# Perform login request
|
||||||
url = '%(protocol)s://%(host)s/api/aaaLogin.json' % module.params
|
url = '%(protocol)s://%(hostname)s/api/aaaLogin.json' % module.params
|
||||||
data = {'aaaUser': {'attributes': {'name': module.params['username'], 'pwd': module.params['password']}}}
|
data = {'aaaUser': {'attributes': {'name': module.params['username'], 'pwd': module.params['password']}}}
|
||||||
resp, auth = fetch_url(module, url, data=json.dumps(data), method="POST", timeout=module.params['timeout'])
|
resp, auth = fetch_url(module, url, data=json.dumps(data), method="POST", timeout=module.params['timeout'])
|
||||||
|
|
||||||
|
@ -229,7 +229,7 @@ def aci_login(module, result=dict()):
|
||||||
except KeyError:
|
except KeyError:
|
||||||
result['msg'] = '%(msg)s for %(url)s' % auth
|
result['msg'] = '%(msg)s for %(url)s' % auth
|
||||||
result['response'] = auth['msg']
|
result['response'] = auth['msg']
|
||||||
result['status_code'] = auth['status']
|
result['status'] = auth['status']
|
||||||
module.fail_json(**result)
|
module.fail_json(**result)
|
||||||
|
|
||||||
return resp
|
return resp
|
||||||
|
@ -237,7 +237,6 @@ def aci_login(module, result=dict()):
|
||||||
|
|
||||||
def aci_response(rawoutput, rest_type='xml'):
|
def aci_response(rawoutput, rest_type='xml'):
|
||||||
''' Handle APIC response output '''
|
''' Handle APIC response output '''
|
||||||
|
|
||||||
result = dict()
|
result = dict()
|
||||||
|
|
||||||
if rest_type == 'json':
|
if rest_type == 'json':
|
||||||
|
@ -269,6 +268,8 @@ def aci_response(rawoutput, rest_type='xml'):
|
||||||
if xmldata and 'imdata' in xmldata:
|
if xmldata and 'imdata' in xmldata:
|
||||||
if 'children' in xmldata['imdata']:
|
if 'children' in xmldata['imdata']:
|
||||||
result['imdata'] = xmldata['imdata']['children']
|
result['imdata'] = xmldata['imdata']['children']
|
||||||
|
else:
|
||||||
|
result['imdata'] = dict()
|
||||||
result['totalCount'] = xmldata['imdata']['attributes']['totalCount']
|
result['totalCount'] = xmldata['imdata']['attributes']['totalCount']
|
||||||
|
|
||||||
# Handle possible APIC error information
|
# Handle possible APIC error information
|
||||||
|
@ -276,12 +277,8 @@ def aci_response(rawoutput, rest_type='xml'):
|
||||||
result['error_code'] = result['imdata'][0]['error']['attributes']['code']
|
result['error_code'] = result['imdata'][0]['error']['attributes']['code']
|
||||||
result['error_text'] = result['imdata'][0]['error']['attributes']['text']
|
result['error_text'] = result['imdata'][0]['error']['attributes']['text']
|
||||||
except KeyError:
|
except KeyError:
|
||||||
if 'imdata' in result and 'totalCount' in result:
|
result['error_code'] = 0
|
||||||
result['error_code'] = 0
|
result['error_text'] = 'Success'
|
||||||
result['error_text'] = 'Success'
|
|
||||||
else:
|
|
||||||
result['error_code'] = -2
|
|
||||||
result['error_text'] = 'This should not happen'
|
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
@ -376,7 +373,7 @@ def main():
|
||||||
|
|
||||||
resp, info = fetch_url(module, url, data=result['payload'], method=method.upper(), timeout=timeout, headers=headers)
|
resp, info = fetch_url(module, url, data=result['payload'], method=method.upper(), timeout=timeout, headers=headers)
|
||||||
result['response'] = info['msg']
|
result['response'] = info['msg']
|
||||||
result['status_code'] = info['status']
|
result['status'] = info['status']
|
||||||
|
|
||||||
# Report failure
|
# Report failure
|
||||||
if info['status'] != 200:
|
if info['status'] != 200:
|
||||||
|
|
0
test/units/modules/network/aci/__init__.py
Normal file
0
test/units/modules/network/aci/__init__.py
Normal file
Loading…
Reference in a new issue