aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-06 09:54:21 +0100
committerGravatar jesopo2018-10-06 09:54:21 +0100
commitdf94020ef5862b8102042d726f55c2bdb2b614b0 (patch)
treeda5111f8414b9f4b6318b33ba72e633b1204626a /modules
parentraw.* events should be call_unsafe (diff)
signature
Add database.find_by_setting, send github commits to interested channels
Diffstat (limited to 'modules')
-rw-r--r--modules/github.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/modules/github.py b/modules/github.py
index 45c73619..7adee110 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -1,6 +1,9 @@
import json
from src import ModuleManager, utils
+@utils.export("channelset", {"setting": "github-hook",
+ "help": ("Disable/Enable showing BitBot's github commits in the "
+ "current channel"), "validate": utils.bool_or_none})
class Module(ModuleManager.BaseModule):
@utils.hook("api.post.github")
def github(self, event):
@@ -22,6 +25,15 @@ class Module(ModuleManager.BaseModule):
added_count = len(commit["added"])
removed_count = len(commit["removed"])
- print("(%s) [%d/%d/%d mod/add/del] commit by %s: %s" % (
- full_name, modified_count, added_count, removed_count,
- author, message))
+ line = ("(%s) [files: %d/%d/%d mod/add/del] commit by %s: "
+ "'%s'") % (full_name, modified_count, added_count,
+ removed_count, author, message)
+ hooks = self.bot.database.channel_settings.find_by_setting(
+ "github-hook")
+ hooks = [hook for hook in hooks if hook[2]]
+ for server_id, channel_name, _ in hooks:
+ server = self.bot.get_server(server_id)
+ channel = server.get_channel(channel_name)
+
+ self.events.on("send.stdout").call(target=channel,
+ module_name="Github", server=server, message=line)