2017-10-10 00:46:31 -04:00
|
|
|
from typing import Dict, Optional, Text
|
2013-12-05 14:54:17 -05:00
|
|
|
|
|
|
|
# Change these values to configure authentication for the plugin
|
|
|
|
ZULIP_USER = "p4-bot@example.com"
|
|
|
|
ZULIP_API_KEY = "0123456789abcdef0123456789abcdef"
|
2016-11-03 17:51:21 -04:00
|
|
|
ZULIP_SITE = "https://zulip.example.com"
|
2013-12-05 14:54:17 -05:00
|
|
|
|
2017-06-19 07:39:13 -04:00
|
|
|
# Set this to True to silently drop messages if the destination stream
|
|
|
|
# does not exist. This prevents the warnings from Zulip's Notification Bot
|
|
|
|
# when commits are made on a branch for which no stream has been created.
|
|
|
|
ZULIP_IGNORE_MISSING_STREAM = False
|
|
|
|
|
2017-06-19 07:39:07 -04:00
|
|
|
# Set this to point at a p4web installation to get changelist IDs as links
|
|
|
|
# P4_WEB = "https://p4web.example.com"
|
2021-03-04 18:17:09 -05:00
|
|
|
P4_WEB: Optional[str] = None
|
2017-06-19 07:39:07 -04:00
|
|
|
|
2013-12-05 14:54:17 -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:
|
|
|
|
# * path = the path to the Perforce depot on the server
|
|
|
|
# * changelist = the changelist id
|
|
|
|
#
|
|
|
|
# Returns a dictionary encoding the stream and topic to send the
|
|
|
|
# notification to (or None to send no notification).
|
|
|
|
#
|
|
|
|
# The default code below will send every commit except for ones in the
|
|
|
|
# "master-plan" and "secret" subdirectories of //depot/ to:
|
|
|
|
# * stream "depot_subdirectory-commits"
|
|
|
|
# * subject "change_root"
|
2020-04-18 18:59:12 -04:00
|
|
|
def commit_notice_destination(path: Text, changelist: int) -> Optional[Dict[Text, Text]]:
|
2013-12-05 14:54:17 -05:00
|
|
|
dirs = path.split('/')
|
|
|
|
if len(dirs) >= 4 and dirs[3] not in ("*", "..."):
|
|
|
|
directory = dirs[3]
|
|
|
|
else:
|
|
|
|
# No subdirectory, so just use "depot"
|
|
|
|
directory = dirs[2]
|
|
|
|
|
|
|
|
if directory not in ["evil-master-plan", "my-super-secret-repository"]:
|
|
|
|
return dict(stream = "%s-commits" % (directory,),
|
|
|
|
subject = path)
|
|
|
|
|
|
|
|
# Return None for cases where you don't want a notice sent
|
|
|
|
return None
|
|
|
|
|
|
|
|
## If properly installed, the Zulip API should be in your import
|
|
|
|
## path, but if not, set a custom path below
|
2021-03-04 18:17:09 -05:00
|
|
|
ZULIP_API_PATH: Optional[str] = None
|