2018-11-17 08:19:45 +00:00
|
|
|
import itertools, json
|
2018-10-05 22:29:59 +00:00
|
|
|
from src import ModuleManager, utils
|
|
|
|
|
2018-10-26 10:25:28 +00:00
|
|
|
COMMIT_URL = "https://github.com/%s/commit/%s"
|
2018-11-16 20:39:37 +00:00
|
|
|
COMMIT_RANGE_URL = "https://github.com/%s/compare/%s…%s"
|
2018-10-26 10:25:28 +00:00
|
|
|
|
2018-11-06 17:23:27 +00:00
|
|
|
COMMENT_ACTIONS = {
|
2018-11-06 17:05:40 +00:00
|
|
|
"created": "commented",
|
|
|
|
"edited": "edited a comment",
|
|
|
|
"deleted": "deleted a comment"
|
|
|
|
}
|
|
|
|
|
2018-10-06 08:54:21 +00:00
|
|
|
@utils.export("channelset", {"setting": "github-hook",
|
|
|
|
"help": ("Disable/Enable showing BitBot's github commits in the "
|
2018-11-08 17:48:23 +00:00
|
|
|
"current channel")})
|
|
|
|
@utils.export("channelset", {"setting": "github-hide-prefix",
|
|
|
|
"help": "Hide/show command-like prefix on Github hook outputs",
|
|
|
|
"validate": utils.bool_or_none})
|
2018-10-05 22:29:59 +00:00
|
|
|
class Module(ModuleManager.BaseModule):
|
|
|
|
@utils.hook("api.post.github")
|
|
|
|
def github(self, event):
|
2018-11-06 14:08:35 +00:00
|
|
|
data = json.loads(event["data"])
|
2018-10-05 22:29:59 +00:00
|
|
|
|
2018-11-06 16:08:02 +00:00
|
|
|
github_event = event["headers"]["X-GitHub-Event"]
|
|
|
|
if github_event == "ping":
|
|
|
|
return True
|
|
|
|
|
2018-11-06 13:43:06 +00:00
|
|
|
full_name = data["repository"]["full_name"]
|
|
|
|
hooks = self.bot.database.channel_settings.find_by_setting(
|
|
|
|
"github-hook")
|
2018-11-06 14:01:30 +00:00
|
|
|
for i, (server_id, channel_name, values) in list(
|
|
|
|
enumerate(hooks))[::-1]:
|
|
|
|
if not full_name in values:
|
2018-11-06 13:43:06 +00:00
|
|
|
hooks.pop(i)
|
2018-11-06 14:01:49 +00:00
|
|
|
if not hooks:
|
2018-11-06 14:09:13 +00:00
|
|
|
return None
|
2018-11-06 13:43:06 +00:00
|
|
|
|
|
|
|
outputs = None
|
|
|
|
if github_event == "push":
|
|
|
|
outputs = self.push(event, full_name, data)
|
|
|
|
elif github_event == "commit_comment":
|
|
|
|
outputs = self.commit_comment(event, full_name, data)
|
|
|
|
elif github_event == "pull_request":
|
|
|
|
outputs = self.pull_request(event, full_name, data)
|
|
|
|
elif github_event == "pull_request_review":
|
|
|
|
outputs = self.pull_request_review(event, full_name, data)
|
|
|
|
elif github_event == "pull_request_review_comment":
|
|
|
|
outputs = self.pull_request_review_comment(event, full_name, data)
|
|
|
|
elif github_event == "issue_comment":
|
|
|
|
outputs = self.issue_comment(event, full_name, data)
|
|
|
|
elif github_event == "issues":
|
|
|
|
outputs = self.issues(event, full_name, data)
|
|
|
|
|
|
|
|
if outputs:
|
|
|
|
for server_id, channel_name, _ in hooks:
|
2018-11-06 14:02:03 +00:00
|
|
|
for output in outputs:
|
2018-10-06 08:54:21 +00:00
|
|
|
server = self.bot.get_server(server_id)
|
2018-11-11 12:34:22 +00:00
|
|
|
channel = server.channels.get(channel_name)
|
2018-11-06 13:43:06 +00:00
|
|
|
trigger = self._make_trigger(channel, server, output)
|
|
|
|
self.bot.trigger(trigger)
|
2018-10-06 08:54:21 +00:00
|
|
|
|
2018-11-06 14:09:13 +00:00
|
|
|
return True
|
|
|
|
|
2018-10-07 07:10:52 +00:00
|
|
|
def _make_trigger(self, channel, server, line):
|
2018-11-07 11:27:34 +00:00
|
|
|
return lambda: self.events.on("send.stdout").call(target=channel,
|
2018-11-08 17:48:23 +00:00
|
|
|
module_name="Github", server=server, message=line,
|
|
|
|
hide_prefix=channel.get_setting("github-hide-prefix", False))
|
2018-11-06 13:43:06 +00:00
|
|
|
|
2018-11-16 20:39:37 +00:00
|
|
|
def _change_count(self, n, symbol, color):
|
2018-11-17 08:21:40 +00:00
|
|
|
return utils.irc.color("%s%d" % (symbol, n), color)+utils.irc.bold("")
|
2018-11-16 20:39:37 +00:00
|
|
|
def _added(self, n):
|
2018-11-17 08:20:34 +00:00
|
|
|
return self._change_count(n, "+", utils.consts.GREEN)
|
2018-11-16 20:39:37 +00:00
|
|
|
def _removed(self, n):
|
2018-11-17 08:20:34 +00:00
|
|
|
return self._change_count(n, "-", utils.consts.RED)
|
2018-11-16 20:39:37 +00:00
|
|
|
def _modified(self, n):
|
2018-11-17 08:20:34 +00:00
|
|
|
return self._change_count(n, "±", utils.consts.PURPLE)
|
2018-11-16 20:39:37 +00:00
|
|
|
|
|
|
|
def _short_hash(self, hash):
|
|
|
|
return hash[:8]
|
|
|
|
|
2018-11-17 08:15:28 +00:00
|
|
|
def _flat_unique(self, commits, key):
|
|
|
|
return set(itertools.chain(*(commit[key] for commit in commits)))
|
|
|
|
|
2018-11-06 13:43:06 +00:00
|
|
|
def push(self, event, full_name, data):
|
|
|
|
outputs = []
|
2018-11-16 20:23:34 +00:00
|
|
|
if len(data["commits"]) <= 3:
|
|
|
|
for commit in data["commits"]:
|
2018-11-16 20:39:37 +00:00
|
|
|
id = self._short_hash(commit["id"])
|
2018-11-16 20:23:34 +00:00
|
|
|
message = commit["message"].split("\n")
|
|
|
|
message = "".join(line.strip() for line in message)
|
|
|
|
author = commit["author"]["name"] or commit["author"]["login"]
|
|
|
|
author = utils.irc.bold(author)
|
2018-11-16 20:39:37 +00:00
|
|
|
url = COMMIT_URL % (full_name, id)
|
2018-11-06 13:43:06 +00:00
|
|
|
|
2018-11-16 20:39:37 +00:00
|
|
|
added = self._added(len(commit["added"]))
|
|
|
|
removed = self._removed(len(commit["removed"]))
|
2018-11-17 08:22:39 +00:00
|
|
|
modified = self._modified(len(commit["modified"]))
|
2018-11-12 08:44:15 +00:00
|
|
|
|
2018-11-16 20:23:34 +00:00
|
|
|
outputs.append("(%s) [%s/%s/%s files] commit by '%s': %s - %s"
|
|
|
|
% (full_name, added, removed, modified, author, message,
|
|
|
|
url))
|
2018-11-16 20:39:37 +00:00
|
|
|
else:
|
|
|
|
first_id = self._short_hash(data["commits"][0]["id"])
|
|
|
|
last_id = self._short_hash(data["commits"][-1]["id"])
|
|
|
|
pusher = data["pusher"]["name"]
|
|
|
|
url = COMMIT_RANGE_URL % (full_name, first_id, last_id)
|
|
|
|
|
2018-11-17 08:15:28 +00:00
|
|
|
commits = data["commits"]
|
|
|
|
added = self._added(len(self._flat_unique(commits, "added")))
|
|
|
|
removed = self._removed(len(self._flat_unique(commits, "removed")))
|
2018-11-17 08:24:31 +00:00
|
|
|
modified = self._modified(len(self._flat_unique(commits,
|
2018-11-17 08:15:28 +00:00
|
|
|
"modified")))
|
|
|
|
|
2018-11-16 20:39:37 +00:00
|
|
|
outputs.append("(%s) [%s/%s/%s files] '%s' pushed %d commits - %s"
|
|
|
|
% (full_name, added, removed, modified, pusher,
|
2018-11-16 20:40:49 +00:00
|
|
|
len(data["commits"]), url))
|
2018-11-12 08:35:16 +00:00
|
|
|
|
2018-11-06 13:43:06 +00:00
|
|
|
return outputs
|
|
|
|
|
2018-11-06 17:05:40 +00:00
|
|
|
|
2018-11-06 13:43:06 +00:00
|
|
|
def commit_comment(self, event, full_name, data):
|
|
|
|
action = data["action"]
|
|
|
|
commit = data["commit_id"][:8]
|
2018-11-12 17:16:17 +00:00
|
|
|
commenter = utils.irc.bold(data["comment"]["user"]["login"])
|
2018-11-06 13:43:06 +00:00
|
|
|
url = data["comment"]["html_url"]
|
2018-11-06 17:05:40 +00:00
|
|
|
return ["(%s) [commit/%s] %s commented" %
|
2018-11-06 13:43:06 +00:00
|
|
|
(full_name, commit, commenter, action)]
|
|
|
|
|
|
|
|
def pull_request(self, event, full_name, data):
|
|
|
|
action = data["action"]
|
2018-11-07 08:23:07 +00:00
|
|
|
action_desc = action
|
|
|
|
if action == "closed":
|
2018-11-07 11:47:54 +00:00
|
|
|
if data["pull_request"]["merged"]:
|
2018-11-13 16:02:26 +00:00
|
|
|
action_desc = utils.irc.color("merged", utils.consts.GREEN)
|
2018-11-07 11:47:54 +00:00
|
|
|
else:
|
|
|
|
action_desc = utils.irc.color("closed without merging",
|
2018-11-13 16:02:26 +00:00
|
|
|
utils.consts.RED)
|
2018-11-12 10:24:10 +00:00
|
|
|
action_desc = utils.irc.bold(action_desc)
|
2018-11-15 07:06:20 +00:00
|
|
|
elif action == "synchronize":
|
|
|
|
action_desc = "committed to"
|
2018-11-07 08:23:07 +00:00
|
|
|
|
2018-11-06 13:43:06 +00:00
|
|
|
pr_title = data["pull_request"]["title"]
|
2018-11-12 17:16:17 +00:00
|
|
|
author = utils.irc.bold(data["sender"]["login"])
|
2018-11-06 13:43:06 +00:00
|
|
|
url = data["pull_request"]["html_url"]
|
2018-11-07 19:27:22 +00:00
|
|
|
return ["(%s) [pr] %s %s: %s - %s" %
|
|
|
|
(full_name, author, action_desc, pr_title, url)]
|
2018-11-06 13:43:06 +00:00
|
|
|
|
|
|
|
def pull_request_review(self, event, full_name, data):
|
2018-11-07 19:21:59 +00:00
|
|
|
if data["review"]["state"] == "commented":
|
|
|
|
return []
|
|
|
|
|
2018-11-06 13:43:06 +00:00
|
|
|
action = data["action"]
|
|
|
|
pr_title = data["pull_request"]["title"]
|
2018-11-12 17:16:17 +00:00
|
|
|
reviewer = utils.irc.bold(data["review"]["user"]["login"])
|
2018-11-06 13:43:06 +00:00
|
|
|
url = data["review"]["html_url"]
|
2018-11-07 19:27:22 +00:00
|
|
|
return ["(%s) [pr] %s %s a review on: %s - %s" %
|
|
|
|
(full_name, reviewer, action, pr_title, url)]
|
2018-11-06 13:43:06 +00:00
|
|
|
|
|
|
|
def pull_request_review_comment(self, event, full_name, data):
|
|
|
|
action = data["action"]
|
|
|
|
pr_title = data["pull_request"]["title"]
|
|
|
|
commenter = data["comment"]["user"]["login"]
|
|
|
|
url = data["comment"]["html_url"]
|
2018-11-07 19:27:22 +00:00
|
|
|
return ["(%s) [pr] %s %s on a review: %s - %s" %
|
|
|
|
(full_name, commenter, COMMENT_ACTIONS[action], pr_title, url)]
|
2018-11-06 13:43:06 +00:00
|
|
|
|
|
|
|
def issues(self, event, full_name, data):
|
|
|
|
action = data["action"]
|
|
|
|
issue_title = data["issue"]["title"]
|
2018-11-12 17:16:17 +00:00
|
|
|
author = utils.irc.bold(data["sender"]["login"])
|
2018-11-06 13:43:06 +00:00
|
|
|
url = data["issue"]["html_url"]
|
2018-11-07 19:27:22 +00:00
|
|
|
return ["(%s) [issue] %s %s: %s - %s" %
|
|
|
|
(full_name, author, action, issue_title, url)]
|
2018-11-06 13:43:06 +00:00
|
|
|
def issue_comment(self, event, full_name, data):
|
|
|
|
action = data["action"]
|
2018-11-06 15:01:02 +00:00
|
|
|
issue_title = data["issue"]["title"]
|
|
|
|
type = "pr" if "pull_request" in data["issue"] else "issue"
|
2018-11-12 17:16:17 +00:00
|
|
|
commenter = utils.irc.bold(data["comment"]["user"]["login"])
|
2018-11-06 13:43:06 +00:00
|
|
|
url = data["comment"]["html_url"]
|
2018-11-07 19:27:22 +00:00
|
|
|
return ["(%s) [%s] %s %s on: %s - %s" %
|
|
|
|
(full_name, type, commenter, COMMENT_ACTIONS[action], issue_title,
|
|
|
|
url)]
|