diff options
author | Ryan Huber <rhuber@gmail.com> | 2017-04-13 19:39:51 +0000 |
---|---|---|
committer | Ryan Huber <rhuber@gmail.com> | 2017-04-13 19:39:51 +0000 |
commit | 2d5cffc322ea483a835c2352105155de9eb0c546 (patch) | |
tree | e5dfd39d0ead5f01e94631cfa4e12770040650dd /wee_slack.py | |
parent | 843de1a69d12f8811dd988ac6f6990e71917a4af (diff) | |
download | wee-slack-2d5cffc322ea483a835c2352105155de9eb0c546.tar.gz |
topic is user's status
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/wee_slack.py b/wee_slack.py index d5acd59..6460da6 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -1368,6 +1368,7 @@ class SlackDMChannel(SlackChannel): self.type = 'im' self.update_color() self.set_name(self.slack_name) + self.slack_topic = {"value": users[dmuser].profile.get("status_text")} def set_name(self, slack_name): self.name = slack_name def create_buffer(self): @@ -1635,6 +1636,8 @@ class SlackUser(object): # colourization. self.color_name = w.info_get('nick_color_name', self.name.encode('utf-8')) self.color = w.color(self.color_name) + def update_status(self, status_text): + self.profile["status_text"] = status_text def formatted_name(self, prepend="", enable_color=True): if enable_color: return self.color + prepend + self.name @@ -1922,6 +1925,17 @@ def process_pref_change(message_json, eventrouter, **kwargs): else: dbg("Preference change not implemented: {}\n".format(message_json['name'])) +def process_user_change(message_json, eventrouter, **kwargs): + """ + Currently only used to update status, but lots here we could do. + """ + user = message_json['user'] + profile = user.get("profile") + team = kwargs["team"] + team.users[user["id"]].update_status(profile.get("status_text")) + dmchannel = team.get_channel_map()[user["name"]] + team.channels[dmchannel].render_topic(topic=team.users[user["id"]].profile["status_text"]) + def process_user_typing(message_json, eventrouter, **kwargs): channel = kwargs["channel"] team = kwargs["team"] |