2020-01-14 22:06:24 +01:00
|
|
|
import operator
|
2019-02-02 23:53:55 +01:00
|
|
|
from typing import Any, Dict, List
|
2018-09-13 00:45:22 +02:00
|
|
|
|
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
2020-08-20 00:32:15 +02:00
|
|
|
from zerver.decorator import REQ, has_request_variables, webhook_view
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.lib.response import json_success
|
2020-01-14 22:06:24 +01:00
|
|
|
from zerver.lib.webhooks.common import check_send_webhook_message
|
2018-09-13 00:45:22 +02:00
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
2019-04-10 05:40:00 +02:00
|
|
|
ANSIBLETOWER_DEFAULT_MESSAGE_TEMPLATE = "{friendly_name}: [#{id} {name}]({url}) {status}."
|
2018-09-13 00:45:22 +02:00
|
|
|
|
|
|
|
|
2019-04-10 05:40:00 +02:00
|
|
|
ANSIBLETOWER_JOB_MESSAGE_TEMPLATE = """
|
|
|
|
{friendly_name}: [#{id} {name}]({url}) {status}:
|
|
|
|
{hosts_final_data}
|
|
|
|
""".strip()
|
2018-09-13 00:45:22 +02:00
|
|
|
|
|
|
|
ANSIBLETOWER_JOB_HOST_ROW_TEMPLATE = '* {hostname}: {status}\n'
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-10-23 02:43:28 +02:00
|
|
|
@webhook_view('AnsibleTower')
|
2018-09-13 00:45:22 +02:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def api_ansibletower_webhook(
|
|
|
|
request: HttpRequest,
|
|
|
|
user_profile: UserProfile,
|
|
|
|
payload: Dict[str, Any] = REQ(argument_type='body'),
|
|
|
|
) -> HttpResponse:
|
2018-09-13 00:45:22 +02:00
|
|
|
|
|
|
|
body = get_body(payload)
|
|
|
|
subject = payload['name']
|
|
|
|
|
|
|
|
check_send_webhook_message(request, user_profile, subject, body)
|
|
|
|
return json_success()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-02-01 10:00:06 +01:00
|
|
|
def extract_friendly_name(payload: Dict[str, Any]) -> str:
|
|
|
|
tentative_job_name = payload.get("friendly_name", "")
|
|
|
|
if not tentative_job_name:
|
|
|
|
url = payload["url"]
|
|
|
|
segments = url.split("/")
|
|
|
|
tentative_job_name = segments[-3]
|
|
|
|
if tentative_job_name == "jobs":
|
|
|
|
tentative_job_name = "Job"
|
|
|
|
return tentative_job_name
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-09-13 00:45:22 +02:00
|
|
|
def get_body(payload: Dict[str, Any]) -> str:
|
2020-02-01 10:00:06 +01:00
|
|
|
friendly_name = extract_friendly_name(payload)
|
2021-02-12 08:19:30 +01:00
|
|
|
if friendly_name == 'Job':
|
2018-09-13 00:45:22 +02:00
|
|
|
hosts_list_data = payload['hosts']
|
|
|
|
hosts_data = []
|
|
|
|
for host in payload['hosts']:
|
2021-02-12 08:19:30 +01:00
|
|
|
if hosts_list_data[host].get('failed') is True:
|
2018-09-13 00:45:22 +02:00
|
|
|
hoststatus = 'Failed'
|
2021-02-12 08:19:30 +01:00
|
|
|
elif hosts_list_data[host].get('failed') is False:
|
2018-09-13 00:45:22 +02:00
|
|
|
hoststatus = 'Success'
|
2021-02-12 08:19:30 +01:00
|
|
|
hosts_data.append(
|
|
|
|
{
|
|
|
|
'hostname': host,
|
|
|
|
'status': hoststatus,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
if payload['status'] == "successful":
|
2018-09-13 00:45:22 +02:00
|
|
|
status = 'was successful'
|
|
|
|
else:
|
|
|
|
status = 'failed'
|
|
|
|
|
|
|
|
return ANSIBLETOWER_JOB_MESSAGE_TEMPLATE.format(
|
|
|
|
name=payload['name'],
|
2020-02-01 10:00:06 +01:00
|
|
|
friendly_name=friendly_name,
|
2018-09-13 00:45:22 +02:00
|
|
|
id=payload['id'],
|
|
|
|
url=payload['url'],
|
|
|
|
status=status,
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
hosts_final_data=get_hosts_content(hosts_data),
|
2018-09-13 00:45:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
if payload['status'] == "successful":
|
2018-09-13 00:45:22 +02:00
|
|
|
status = 'was successful'
|
|
|
|
else:
|
|
|
|
status = 'failed'
|
|
|
|
|
|
|
|
data = {
|
|
|
|
"name": payload['name'],
|
2020-02-01 10:00:06 +01:00
|
|
|
"friendly_name": friendly_name,
|
2018-09-13 00:45:22 +02:00
|
|
|
"id": payload['id'],
|
|
|
|
"url": payload['url'],
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
"status": status,
|
2018-09-13 00:45:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ANSIBLETOWER_DEFAULT_MESSAGE_TEMPLATE.format(**data)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-09-13 00:45:22 +02:00
|
|
|
def get_hosts_content(hosts_data: List[Dict[str, Any]]) -> str:
|
|
|
|
hosts_data = sorted(hosts_data, key=operator.itemgetter('hostname'))
|
|
|
|
hosts_content = ''
|
|
|
|
for host in hosts_data:
|
|
|
|
hosts_content += ANSIBLETOWER_JOB_HOST_ROW_TEMPLATE.format(
|
|
|
|
hostname=host.get('hostname'),
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
status=host.get('status'),
|
2018-09-13 00:45:22 +02:00
|
|
|
)
|
|
|
|
return hosts_content
|