2017-01-07 20:05:34 -05:00
|
|
|
# https://github.com/python/mypy/issues/1141
|
2021-05-28 07:13:13 -04:00
|
|
|
from typing import Dict, Optional
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
# Change these values to configure authentication for the plugin
|
2021-05-28 05:05:11 -04:00
|
|
|
ZULIP_USER = "openshift-bot@example.com"
|
|
|
|
ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
# deployment_notice_destination() lets you customize where deployment notices
|
|
|
|
# are sent to with the full power of a Python function.
|
|
|
|
#
|
|
|
|
# It takes the following arguments:
|
|
|
|
# * branch = the name of the branch where the deployed commit was
|
|
|
|
# pushed to
|
|
|
|
#
|
|
|
|
# Returns a dictionary encoding the stream and subject to send the
|
|
|
|
# notification to (or None to send no notification).
|
|
|
|
#
|
|
|
|
# The default code below will send every commit pushed to "master" to
|
|
|
|
# * stream "deployments"
|
|
|
|
# * topic "master"
|
|
|
|
# And similarly for branch "test-post-receive" (for use when testing).
|
2021-05-28 07:13:13 -04:00
|
|
|
def deployment_notice_destination(branch: str) -> Optional[Dict[str, str]]:
|
2021-05-28 05:05:11 -04:00
|
|
|
if branch in ["master", "test-post-receive"]:
|
2021-05-28 07:19:40 -04:00
|
|
|
return dict(stream="deployments", subject=f"{branch}")
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
# Return None for cases where you don't want a notice sent
|
|
|
|
return None
|
|
|
|
|
2021-05-28 05:03:46 -04:00
|
|
|
|
2017-01-07 20:05:34 -05:00
|
|
|
# Modify this function to change how deployments are displayed
|
|
|
|
#
|
|
|
|
# It takes the following arguments:
|
|
|
|
# * app_name = the name of the app being deployed
|
|
|
|
# * url = the FQDN (Fully Qualified Domain Name) where the app
|
|
|
|
# can be found
|
|
|
|
# * branch = the name of the branch where the deployed commit was
|
|
|
|
# pushed to
|
|
|
|
# * commit_id = hash of the commit that triggered the deployment
|
|
|
|
# * dep_id = deployment id
|
|
|
|
# * dep_time = deployment timestamp
|
|
|
|
def format_deployment_message(
|
2021-05-28 05:05:11 -04:00
|
|
|
app_name: str = "",
|
|
|
|
url: str = "",
|
|
|
|
branch: str = "",
|
|
|
|
commit_id: str = "",
|
|
|
|
dep_id: str = "",
|
|
|
|
dep_time: str = "",
|
2021-05-28 05:03:46 -04:00
|
|
|
) -> str:
|
2021-05-28 07:19:40 -04:00
|
|
|
return f"Deployed commit `{commit_id}` ({branch}) in [{app_name}]({url})"
|
2021-05-28 05:03:46 -04:00
|
|
|
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
## If properly installed, the Zulip API should be in your import
|
|
|
|
## path, but if not, set a custom path below
|
2017-12-22 12:51:14 -05:00
|
|
|
ZULIP_API_PATH = None # type: Optional[str]
|
2017-01-07 20:05:34 -05:00
|
|
|
|
|
|
|
# Set this to your Zulip server's API URI
|
2021-05-28 05:05:11 -04:00
|
|
|
ZULIP_SITE = "https://zulip.example.com"
|