2017-10-10 00:54:49 -04:00
|
|
|
from typing import Dict, Optional, Text
|
2013-05-01 14:36:55 -04:00
|
|
|
|
|
|
|
# Change these values to configure authentication for the plugin
|
2013-08-07 12:26:59 -04:00
|
|
|
ZULIP_USER = "svn-bot@example.com"
|
|
|
|
ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
|
2013-05-01 14:36:55 -04: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:
|
|
|
|
# * path = the path to the svn repository on the server
|
|
|
|
# * commit = the commit id
|
|
|
|
#
|
|
|
|
# Returns a dictionary encoding the stream and subject to send the
|
|
|
|
# notification to (or None to send no notification).
|
|
|
|
#
|
2013-12-11 11:41:54 -05:00
|
|
|
# The default code below will send every commit except for the "evil-master-plan"
|
|
|
|
# and "my-super-secret-repository" repos to
|
2013-05-01 14:36:55 -04:00
|
|
|
# * stream "commits"
|
2013-12-11 11:41:54 -05:00
|
|
|
# * topic "branch_name"
|
2020-04-18 18:59:12 -04:00
|
|
|
def commit_notice_destination(path: Text, commit: Text) -> Optional[Dict[Text, Text]]:
|
2013-05-01 14:36:55 -04:00
|
|
|
repo = path.split('/')[-1]
|
|
|
|
if repo not in ["evil-master-plan", "my-super-secret-repository"]:
|
|
|
|
return dict(stream = "commits",
|
2020-04-09 20:14:01 -04:00
|
|
|
subject = "%s" % (repo,))
|
2013-05-01 14:36:55 -04:00
|
|
|
|
|
|
|
# Return None for cases where you don't want a notice sent
|
|
|
|
return None
|
|
|
|
|
2013-08-06 15:32:15 -04:00
|
|
|
## If properly installed, the Zulip API should be in your import
|
2013-05-01 14:36:55 -04:00
|
|
|
## path, but if not, set a custom path below
|
2013-08-07 12:26:59 -04:00
|
|
|
ZULIP_API_PATH = None
|
2013-05-01 14:36:55 -04: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"
|