aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2020-04-10 14:17:42 +0200
committerTrygve Aaberge <trygveaa@gmail.com>2020-04-10 14:25:15 +0200
commitc77cbc882747f82def128a5c534619a667ce8b9d (patch)
treec25af9e24a82a7ec65d840e0c99642ab66ac9917 /wee_slack.py
parentc7f9b3e802be96cbce60399b0d5b367f13cc1275 (diff)
downloadwee-slack-c77cbc882747f82def128a5c534619a667ce8b9d.tar.gz
Place record_events files in separate directories for each team
Diffstat (limited to 'wee_slack.py')
-rw-r--r--wee_slack.py21
1 files changed, 15 insertions, 6 deletions
diff --git a/wee_slack.py b/wee_slack.py
index 57cf55f..162b41b 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -410,7 +410,7 @@ class EventRouter(object):
if not os.path.exists(RECORD_DIR):
os.makedirs(RECORD_DIR)
- def record_event(self, message_json, file_name_field, subdir=None):
+ def record_event(self, message_json, team, file_name_field, subdir=None):
"""
complete
Called each time you want to record an event.
@@ -418,10 +418,19 @@ class EventRouter(object):
file_name_field is the json key whose value you want to be part of the file name
"""
now = time.time()
- if subdir:
- directory = "{}/{}".format(RECORD_DIR, subdir)
+
+ if team:
+ team_subdomain = team.subdomain
else:
- directory = RECORD_DIR
+ team_json = message_json.get('team')
+ if team_json:
+ team_subdomain = team_json.get('domain')
+ else:
+ team_subdomain = 'unknown_team'
+
+ directory = "{}/{}".format(RECORD_DIR, team_subdomain)
+ if subdir:
+ directory = "{}/{}".format(directory, subdir)
if not os.path.exists(directory):
os.makedirs(directory)
mtype = message_json.get(file_name_field, 'unknown')
@@ -517,7 +526,7 @@ class EventRouter(object):
message_json = json.loads(data.decode('utf-8'))
if self.recording:
- self.record_event(message_json, 'type', 'websocket')
+ self.record_event(message_json, team, 'type', 'websocket')
message_json["wee_slack_metadata_team"] = team
self.receive(message_json)
return w.WEECHAT_RC_OK
@@ -547,7 +556,7 @@ class EventRouter(object):
try:
j["wee_slack_process_method"] = request_metadata.request_normalized
if self.recording:
- self.record_event(j, 'wee_slack_process_method', 'http')
+ self.record_event(j, request_metadata.team, 'wee_slack_process_method', 'http')
j["wee_slack_request_metadata"] = request_metadata
self.reply_buffer.pop(request_metadata.response_id)
self.receive(j)