145 lines
4 KiB
Python
145 lines
4 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: hipchat
|
|
version_added: "1.2"
|
|
short_description: Send a message to hipchat
|
|
description:
|
|
- Send a message to hipchat
|
|
options:
|
|
token:
|
|
description:
|
|
- API token.
|
|
required: true
|
|
room:
|
|
description:
|
|
- ID or name of the room.
|
|
required: true
|
|
from:
|
|
description:
|
|
- Name the message will appear be sent from. max 15 characters.
|
|
Over 15, will be shorten.
|
|
required: false
|
|
default: Ansible
|
|
msg:
|
|
description:
|
|
- The message body.
|
|
required: true
|
|
default: null
|
|
color:
|
|
description:
|
|
- Background color for the message. Default is yellow.
|
|
required: false
|
|
default: yellow
|
|
choices: [ "yellow", "red", "green", "purple", "gray", "random" ]
|
|
msg_format:
|
|
description:
|
|
- message format. html or text. Default is text.
|
|
required: false
|
|
default: text
|
|
choices: [ "text", "html" ]
|
|
notify:
|
|
description:
|
|
- notify or not (change the tab color, play a sound, etc)
|
|
required: false
|
|
default: 'yes'
|
|
choices: [ "yes", "no" ]
|
|
validate_certs:
|
|
description:
|
|
- If C(no), SSL certificates will not be validated. This should only be used
|
|
on personally controlled sites using self-signed certificates.
|
|
required: false
|
|
default: 'yes'
|
|
choices: ['yes', 'no']
|
|
version_added: 1.5.1
|
|
api:
|
|
description:
|
|
- API url if using a self-hosted hipchat server
|
|
required: false
|
|
default: 'https://api.hipchat.com/v2/room/{id_or_name}/message'
|
|
version_added: 1.6.0
|
|
|
|
|
|
# informational: requirements for nodes
|
|
requirements: [ urllib, urllib2, requests, json ]
|
|
author: WAKAYAMA Shirou, BOURDEL Paul
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- hipchat: token=AAAAAA room=notify msg="Ansible task finished"
|
|
'''
|
|
|
|
# ===========================================
|
|
# HipChat module specific support methods.
|
|
#
|
|
|
|
MSG_URI = "https://api.hipchat.com/v2/room/{id_or_name}/message"
|
|
NOTIFY_URI = "https://api.hipchat.com/v2/room/{id_or_name}/notification"
|
|
|
|
def send_msg(module, token, room, msg_from, msg, msg_format='text',
|
|
color='yellow', notify=False, api=MSG_URI):
|
|
'''sending message to hipchat'''
|
|
|
|
|
|
payload = {'message': msg, 'color': color}
|
|
url_params = {'auth_token': token}
|
|
if notify:
|
|
POST_URL = NOTIFY_URI
|
|
else:
|
|
POST_URL = MSG_URI
|
|
|
|
response = requests.post(POST_URL.replace('{id_or_name}',room), json=payload, params=url_params)
|
|
|
|
if response.status_code == 201 or response.status_code == 204:
|
|
return response.json
|
|
else:
|
|
module.fail_json(msg="failed to send message, return status=%s" % str(response.status_code))
|
|
|
|
|
|
# ===========================================
|
|
# Module execution.
|
|
#
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
argument_spec=dict(
|
|
token=dict(required=True),
|
|
room=dict(required=True),
|
|
msg=dict(required=True),
|
|
msg_from=dict(default="Ansible", aliases=['from']),
|
|
color=dict(default="yellow", choices=["yellow", "red", "green",
|
|
"purple", "gray", "random"]),
|
|
msg_format=dict(default="text", choices=["text", "html"]),
|
|
notify=dict(default=True, type='bool'),
|
|
validate_certs = dict(default='yes', type='bool'),
|
|
api = dict(default=MSG_URI),
|
|
),
|
|
supports_check_mode=True
|
|
)
|
|
|
|
token = module.params["token"]
|
|
room = module.params["room"]
|
|
msg = module.params["msg"]
|
|
msg_from = module.params["msg_from"]
|
|
color = module.params["color"]
|
|
msg_format = module.params["msg_format"]
|
|
notify = module.params["notify"]
|
|
api = module.params["api"]
|
|
|
|
try:
|
|
send_msg(module, token, room, msg_from, msg, msg_format, color, notify, api)
|
|
except Exception, e:
|
|
module.fail_json(msg="unable to sent msg: %s" % e)
|
|
|
|
changed = True
|
|
module.exit_json(changed=changed, room=room, msg_from=msg_from, msg=msg)
|
|
|
|
# import module snippets
|
|
from ansible.module_utils.basic import *
|
|
from ansible.module_utils.urls import *
|
|
import requests, json
|
|
|
|
main()
|