summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-10-17 21:59:20 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-10-17 21:59:20 +0200
commit842e4a3f4a8ed32c062bbbaed47496afba4b4bef (patch)
treec88d387bcaca8991deaa5d07cff506d3e780d838
parent20eeb00b9744eae068f894a98b3a355a0ef728ac (diff)
parentb29f11ce19188f277d8b94a640fe54c19f2b7972 (diff)
downloadpoezio-842e4a3f4a8ed32c062bbbaed47496afba4b4bef.tar.gz
poezio-842e4a3f4a8ed32c062bbbaed47496afba4b4bef.tar.bz2
poezio-842e4a3f4a8ed32c062bbbaed47496afba4b4bef.tar.xz
poezio-842e4a3f4a8ed32c062bbbaed47496afba4b4bef.zip
Merge branch 'master' of https://git.louiz.org/poezio
-rw-r--r--src/multiuserchat.py21
-rw-r--r--src/tabs.py67
2 files changed, 59 insertions, 29 deletions
diff --git a/src/multiuserchat.py b/src/multiuserchat.py
index 67fa32e6..264f0e4a 100644
--- a/src/multiuserchat.py
+++ b/src/multiuserchat.py
@@ -70,7 +70,7 @@ def leave_groupchat(xmpp, jid, own_nick, msg):
def set_user_role(xmpp, jid, nick, reason, role):
"""
(try to) Set the role of a MUC user
- (role =) 'none': eject user)
+ (role = 'none': eject user)
"""
iq = xmpp.makeIqSet()
query = ET.Element('{%s}query' % NS_MUC_ADMIN)
@@ -86,3 +86,22 @@ def set_user_role(xmpp, jid, nick, reason, role):
return iq.send()
except Exception as e:
return e.iq
+
+def set_user_affiliation(xmpp, jid, nick, reason, affiliation):
+ """
+ (try to) Set the affiliation of a MUC user
+ """
+ iq = xmpp.makeIqSet()
+ query = ET.Element('{%s}query' % NS_MUC_ADMIN)
+ item = ET.Element('{%s}item' % NS_MUC_ADMIN, {'nick':nick, 'affiliation':affiliation})
+ if reason:
+ reason_el = ET.Element('{%s}reason' % NS_MUC_ADMIN)
+ reason_el.text = reason
+ item.append(reason_el)
+ query.append(item)
+ iq.append(query)
+ iq['to'] = jid
+ try:
+ return iq.send()
+ except Exception as e:
+ return e.iq
diff --git a/src/tabs.py b/src/tabs.py
index 0ab6e1bb..2b1b586a 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -404,9 +404,8 @@ class MucTab(ChatTab):
self.commands['ignore'] = (self.command_ignore, _("Usage: /ignore <nickname> \nIgnore: Ignore a specified nickname."), None)
self.commands['unignore'] = (self.command_unignore, _("Usage: /unignore <nickname>\nUnignore: Remove the specified nickname from the ignore list."), self.completion_unignore)
self.commands['kick'] = (self.command_kick, _("Usage: /kick <nick> [reason]\nKick: Kick the user with the specified nickname. You also can give an optional reason."), None)
- self.commands['moderator'] = (self.command_moderator, _("Usage: /moderator <nick> [reason]\nModerator: Op the user with the specified nickname. You also can give an optional reason."), None)
- self.commands['visitor'] = (self.command_visitor, _("Usage: /visitor <nick> [reason]\nVisitor: Mute the user with the specified nickname. You also can give an optional reason."), None)
- self.commands['participant'] = (self.command_participant, _("Usage: /participant <nick> [reason]\nParticipant: Voice the user with the specified nickname. You also can give an optional reason."), None)
+ self.commands['role'] = (self.command_role, _("Usage: /role <nick> <role> [reason]\nRole: Set the role of an user. Roles can be: none, visitor, participant, moderator. You also can give an optional reason."), None)
+ self.commands['affiliation'] = (self.command_affiliation, _("Usage: /affiliation <nick> <affiliation> [reason]\nAffiliation: Set the affiliation of an user. Affiliations can be: outcast, none, member, admin, owner. You also can give an optional reason."), None)
self.commands['topic'] = (self.command_topic, _("Usage: /topic <subject>\nTopic: Change the subject of the room"), self.completion_topic)
self.commands['query'] = (self.command_query, _('Usage: /query <nick> [message]\nQuery: Open a private conversation with <nick>. This nick has to be present in the room you\'re currently in. If you specified a message after the nickname, it will immediately be sent to this user'), None)
self.commands['part'] = (self.command_part, _("Usage: /part [message]\nPart: disconnect from a room. You can specify an optional message."), None)
@@ -626,42 +625,54 @@ class MucTab(ChatTab):
"""
/kick <nick> [reason]
"""
- self._command_change_role('none', 'kick', arg)
-
- def command_visitor(self, arg):
- """
- /visitor <nick> [reason]
- """
- self._command_change_role('visitor', 'visitor', arg)
-
- def command_participant(self, arg):
- """
- /participant <nick> [reason]
- """
- self._command_change_role('participant', 'participant', arg)
+ args = common.shell_split(arg)
+ if not len(args):
+ self.core.command_help('kick')
+ self._command_change_role('kick '+arg)
- def command_moderator(self, arg):
+ def command_role(self, arg):
"""
- /moderator <nick> [reason]
+ /role <nick> <role> [reason]
+ Changes the role of an user
+ roles can be: none, visitor, participant, moderator
"""
- self._command_change_role('moderator', 'moderator', arg)
+ args = common.shell_split(arg)
+ if len(args) < 2:
+ self.core.command_help('role')
+ return
+ nick, role = args[0],args[1]
+ if len(args) > 2:
+ reason = ' '.join(args[2:])
+ else:
+ reason = ''
+ if not self.get_room().joined or \
+ not role in ('none', 'visitor', 'participant', 'moderator'):
+ return
+ res = muc.set_user_role(self.core.xmpp, self.get_name(), nick, reason, role)
+ if res['type'] == 'error':
+ self.core.room_error(res, self.get_name())
- def _command_change_role(self, role, command, arg):
+ def command_affiliation(self, arg):
"""
- Changes the role of the nick in args[0]
+ /affiliation <nick> <role> [reason]
+ Changes the affiliation of an user
+ roles can be: none, visitor, participant, moderator
"""
args = common.shell_split(arg)
- if len(args) < 1:
- self.core.command_help(command)
+ if len(args) < 2:
+ self.core.command_help('role')
return
- nick = args[0]
- if len(args) >= 2:
- reason = ' '.join(args[1:])
+ nick, affiliation = args[0],args[1]
+ if len(args) > 2:
+ reason = ' '.join(args[2:])
else:
reason = ''
- if not self.get_room().joined:
+ if not self.get_room().joined or \
+ not affiliation in ('none', 'member', 'admin', 'owner'):
+# replace this ↑ with this ↓ when the ban list support is done
+# not affiliation in ('outcast', 'none', 'member', 'admin', 'owner'):
return
- res = muc.set_user_role(self.core.xmpp, self.get_name(), nick, reason, role)
+ res = muc.set_user_affiliation(self.core.xmpp, self.get_name(), nick, reason, affiliation)
if res['type'] == 'error':
self.core.room_error(res, self.get_name())