2013-02-15 17:01:55 -05:00
|
|
|
#
|
2021-05-28 07:13:13 -04:00
|
|
|
from typing import Dict, Optional
|
2013-02-15 17:01:55 -05:00
|
|
|
|
2018-04-23 17:08:16 -04:00
|
|
|
# Name of the stream to send notifications to, default is "commits"
|
2021-05-28 05:05:11 -04:00
|
|
|
STREAM_NAME = "commits"
|
2018-04-23 17:08:16 -04:00
|
|
|
|
2013-02-15 17:01:55 -05:00
|
|
|
# Change these values to configure authentication for the plugin
|
2013-08-07 12:26:11 -04:00
|
|
|
ZULIP_USER = "git-bot@example.com"
|
|
|
|
ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
|
2013-02-15 17:01:55 -05:00
|
|
|
|
|
|
|
# commit_notice_destination() lets you customize where commit notices
|
|
|
|
# are sent to with the full power of a Python function.
|
|
|
|
#
|
|
|
|
# It takes the following arguments:
|
|
|
|
# * repo = the name of the git repository
|
|
|
|
# * branch = the name of the branch that was pushed to
|
|
|
|
# * commit = the commit id
|
|
|
|
#
|
|
|
|
# Returns a dictionary encoding the stream and subject to send the
|
|
|
|
# notification to (or None to send no notification).
|
|
|
|
#
|
2021-08-24 15:50:52 -04:00
|
|
|
# The default code below will send every commit pushed to "main" to
|
2013-02-15 17:01:55 -05:00
|
|
|
# * stream "commits"
|
2021-08-24 15:50:52 -04:00
|
|
|
# * topic "main"
|
2013-02-15 17:01:55 -05:00
|
|
|
# And similarly for branch "test-post-receive" (for use when testing).
|
2021-05-28 07:13:13 -04:00
|
|
|
def commit_notice_destination(repo: str, branch: str, commit: str) -> Optional[Dict[str, str]]:
|
2021-08-24 15:50:52 -04:00
|
|
|
if branch in ["main", "test-post-receive"]:
|
2021-05-28 07:19:40 -04:00
|
|
|
return dict(stream=STREAM_NAME, subject=f"{branch}")
|
2013-02-15 17:01:55 -05:00
|
|
|
|
|
|
|
# Return None for cases where you don't want a notice sent
|
|
|
|
return None
|
|
|
|
|
2021-05-28 05:03:46 -04:00
|
|
|
|
2013-10-08 14:45:05 -04:00
|
|
|
# Modify this function to change how commits are displayed; the most
|
|
|
|
# common customization is to include a link to the commit in your
|
|
|
|
# graphical repository viewer, e.g.
|
|
|
|
#
|
2013-11-20 13:10:43 -05:00
|
|
|
# return '!avatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
|
2021-05-28 07:13:13 -04:00
|
|
|
def format_commit_message(author: str, subject: str, commit_id: str) -> str:
|
2021-05-28 07:19:40 -04:00
|
|
|
return f"!avatar({author}) {subject}\n"
|
2013-10-08 14:45:05 -04:00
|
|
|
|
2021-05-28 05:03:46 -04:00
|
|
|
|
2013-08-06 15:32:15 -04:00
|
|
|
## If properly installed, the Zulip API should be in your import
|
2013-02-15 17:01:55 -05:00
|
|
|
## path, but if not, set a custom path below
|
2021-03-04 18:17:09 -05:00
|
|
|
ZULIP_API_PATH: Optional[str] = None
|
2013-02-15 17:01:55 -05:00
|
|
|
|
2015-08-21 12:34:54 -04:00
|
|
|
# Set this to your Zulip server's API URI
|
2016-11-04 15:16:57 -04:00
|
|
|
ZULIP_SITE = "https://zulip.example.com"
|