mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
removing unnecessary white space
This commit is contained in:
parent
2177ff1546
commit
e00df23070
1 changed files with 31 additions and 0 deletions
|
@ -108,6 +108,37 @@ def send_msg(module, token, room, msg_from, msg, msg_format='text',
|
||||||
module.fail_json(msg="failed to send message, return status=%s" % str(info['status']))
|
module.fail_json(msg="failed to send message, return status=%s" % str(info['status']))
|
||||||
|
|
||||||
|
|
||||||
|
def send_msg_v2(module, token, room, msg_from, msg, msg_format='text',
|
||||||
|
color='yellow', notify=False, api=MSG_URI_V2):
|
||||||
|
'''sending message to hipchat v2 server'''
|
||||||
|
print "Sending message to v2 server"
|
||||||
|
|
||||||
|
headers = {'Authorization':'Bearer %s' % token, 'Content-Type':'application/json'}
|
||||||
|
|
||||||
|
body = dict()
|
||||||
|
body['message'] = msg
|
||||||
|
body['color'] = color
|
||||||
|
body['message_format'] = msg_format
|
||||||
|
|
||||||
|
if notify:
|
||||||
|
POST_URL = api + NOTIFY_URI_V2
|
||||||
|
else:
|
||||||
|
POST_URL = api + MSG_URI_V2
|
||||||
|
|
||||||
|
url = POST_URL.replace('{id_or_name}',room)
|
||||||
|
data = json.dumps(body)
|
||||||
|
|
||||||
|
if module.check_mode:
|
||||||
|
# In check mode, exit before actually sending the message
|
||||||
|
module.exit_json(changed=False)
|
||||||
|
|
||||||
|
response, info = fetch_url(module, url, data=data, headers=headers, method='POST')
|
||||||
|
if info['status'] == 200:
|
||||||
|
return response.read()
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="failed to send message, return status=%s" % str(info['status']))
|
||||||
|
|
||||||
|
|
||||||
# ===========================================
|
# ===========================================
|
||||||
# Module execution.
|
# Module execution.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue