2020-04-02 09:59:28 -04:00
|
|
|
#!/usr/bin/env python3
|
2017-01-07 20:05:34 -05:00
|
|
|
#
|
|
|
|
# Zulip notification post-receive hook.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2017-03-03 13:01:52 -05:00
|
|
|
from typing import Dict
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|
|
|
|
import zulip_openshift_config as config
|
2021-05-28 05:00:04 -04:00
|
|
|
|
2021-05-28 05:05:11 -04:00
|
|
|
VERSION = "0.1"
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
if config.ZULIP_API_PATH is not None:
|
|
|
|
sys.path.append(config.ZULIP_API_PATH)
|
|
|
|
|
|
|
|
import zulip
|
2021-05-28 05:00:04 -04:00
|
|
|
|
2017-01-07 20:05:34 -05:00
|
|
|
client = zulip.Client(
|
|
|
|
email=config.ZULIP_USER,
|
|
|
|
site=config.ZULIP_SITE,
|
|
|
|
api_key=config.ZULIP_API_KEY,
|
2021-05-28 05:05:11 -04:00
|
|
|
client="ZulipOpenShift/" + VERSION,
|
2021-05-28 05:03:46 -04:00
|
|
|
)
|
|
|
|
|
2017-01-07 20:05:34 -05:00
|
|
|
|
2020-04-18 18:59:12 -04:00
|
|
|
def get_deployment_details() -> Dict[str, str]:
|
2017-01-07 20:05:34 -05:00
|
|
|
# "gear deployments" output example:
|
|
|
|
# Activation time - Deployment ID - Git Ref - Git SHA1
|
2021-08-24 15:50:52 -04:00
|
|
|
# 2017-01-07 15:40:30 -0500 - 9e2b7143 - main - b9ce57c - ACTIVE
|
2021-05-28 05:05:11 -04:00
|
|
|
dep = subprocess.check_output(["gear", "deployments"], universal_newlines=True).splitlines()[1]
|
|
|
|
splits = dep.split(" - ")
|
2017-01-07 20:05:34 -05:00
|
|
|
|
2021-05-28 05:03:46 -04:00
|
|
|
return dict(
|
2021-05-28 05:05:11 -04:00
|
|
|
app_name=os.environ["OPENSHIFT_APP_NAME"],
|
|
|
|
url=os.environ["OPENSHIFT_APP_DNS"],
|
2021-05-28 05:03:46 -04:00
|
|
|
branch=splits[2],
|
|
|
|
commit_id=splits[3],
|
|
|
|
)
|
|
|
|
|
2017-01-07 20:05:34 -05:00
|
|
|
|
2020-04-18 18:59:12 -04:00
|
|
|
def send_bot_message(deployment: Dict[str, str]) -> None:
|
2021-05-28 05:05:11 -04:00
|
|
|
destination = config.deployment_notice_destination(deployment["branch"])
|
2017-01-07 20:05:34 -05:00
|
|
|
if destination is None:
|
|
|
|
# No message should be sent
|
|
|
|
return
|
|
|
|
message = config.format_deployment_message(**deployment)
|
|
|
|
|
2021-05-28 05:03:46 -04:00
|
|
|
client.send_message(
|
|
|
|
{
|
2021-05-28 05:05:11 -04:00
|
|
|
"type": "stream",
|
|
|
|
"to": destination["stream"],
|
|
|
|
"subject": destination["subject"],
|
|
|
|
"content": message,
|
2021-05-28 05:03:46 -04:00
|
|
|
}
|
|
|
|
)
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
|
2021-05-28 05:03:46 -04:00
|
|
|
|
2017-01-07 20:05:34 -05:00
|
|
|
deployment = get_deployment_details()
|
|
|
|
send_bot_message(deployment)
|