2020-03-09 10:11:07 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright 2014, Max Riveiro, <kavu13@gmail.com>
|
2022-08-05 12:28:29 +02:00
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: rollbar_deployment
|
|
|
|
author: "Max Riveiro (@kavu)"
|
|
|
|
short_description: Notify Rollbar about app deployments
|
|
|
|
description:
|
|
|
|
- Notify Rollbar about app deployments
|
|
|
|
(see https://rollbar.com/docs/deploys_other/)
|
|
|
|
options:
|
|
|
|
token:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Your project access token.
|
|
|
|
required: true
|
|
|
|
environment:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Name of the environment being deployed, e.g. 'production'.
|
|
|
|
required: true
|
|
|
|
revision:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Revision number/sha being deployed.
|
|
|
|
required: true
|
|
|
|
user:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- User who deployed.
|
|
|
|
required: false
|
|
|
|
rollbar_user:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Rollbar username of the user who deployed.
|
|
|
|
required: false
|
|
|
|
comment:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Deploy comment (e.g. what is being deployed).
|
|
|
|
required: false
|
|
|
|
url:
|
2020-11-23 22:07:03 +01:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
description:
|
|
|
|
- Optional URL to submit the notification to.
|
|
|
|
required: false
|
|
|
|
default: 'https://api.rollbar.com/api/1/deploy/'
|
|
|
|
validate_certs:
|
|
|
|
description:
|
|
|
|
- If C(no), SSL certificates for the target url will not be validated.
|
|
|
|
This should only be used on personally controlled sites using
|
|
|
|
self-signed certificates.
|
|
|
|
required: false
|
|
|
|
default: 'yes'
|
|
|
|
type: bool
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
- name: Rollbar deployment notification
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.rollbar_deployment:
|
2020-03-09 10:11:07 +01:00
|
|
|
token: AAAAAA
|
|
|
|
environment: staging
|
|
|
|
user: ansible
|
|
|
|
revision: '4.2'
|
|
|
|
rollbar_user: admin
|
|
|
|
comment: Test Deploy
|
|
|
|
|
|
|
|
- name: Notify rollbar about current git revision deployment by current user
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.rollbar_deployment:
|
2020-03-09 10:11:07 +01:00
|
|
|
token: "{{ rollbar_access_token }}"
|
|
|
|
environment: production
|
|
|
|
revision: "{{ lookup('pipe', 'git rev-parse HEAD') }}"
|
|
|
|
user: "{{ lookup('env', 'USER') }}"
|
|
|
|
'''
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.six.moves.urllib.parse import urlencode
|
2021-06-26 23:59:11 +02:00
|
|
|
from ansible.module_utils.common.text.converters import to_native
|
2020-03-09 10:11:07 +01:00
|
|
|
from ansible.module_utils.urls import fetch_url
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
2021-02-08 16:33:18 +01:00
|
|
|
token=dict(required=True, no_log=True),
|
2020-03-09 10:11:07 +01:00
|
|
|
environment=dict(required=True),
|
|
|
|
revision=dict(required=True),
|
|
|
|
user=dict(required=False),
|
|
|
|
rollbar_user=dict(required=False),
|
|
|
|
comment=dict(required=False),
|
|
|
|
url=dict(
|
|
|
|
required=False,
|
|
|
|
default='https://api.rollbar.com/api/1/deploy/'
|
|
|
|
),
|
2020-06-22 15:56:35 +02:00
|
|
|
validate_certs=dict(default=True, type='bool'),
|
2020-03-09 10:11:07 +01:00
|
|
|
),
|
|
|
|
supports_check_mode=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
|
|
|
|
params = dict(
|
|
|
|
access_token=module.params['token'],
|
|
|
|
environment=module.params['environment'],
|
|
|
|
revision=module.params['revision']
|
|
|
|
)
|
|
|
|
|
|
|
|
if module.params['user']:
|
|
|
|
params['local_username'] = module.params['user']
|
|
|
|
|
|
|
|
if module.params['rollbar_user']:
|
|
|
|
params['rollbar_username'] = module.params['rollbar_user']
|
|
|
|
|
|
|
|
if module.params['comment']:
|
|
|
|
params['comment'] = module.params['comment']
|
|
|
|
|
|
|
|
url = module.params.get('url')
|
|
|
|
|
|
|
|
try:
|
|
|
|
data = urlencode(params)
|
|
|
|
response, info = fetch_url(module, url, data=data, method='POST')
|
|
|
|
except Exception as e:
|
|
|
|
module.fail_json(msg='Unable to notify Rollbar: %s' % to_native(e), exception=traceback.format_exc())
|
|
|
|
else:
|
|
|
|
if info['status'] == 200:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
else:
|
|
|
|
module.fail_json(msg='HTTP result code: %d connecting to %s' % (info['status'], url))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|