poezio/src/multiuserchat.py

109 lines
3 KiB
Python
Raw Normal View History

2011-09-06 00:45:53 +00:00
# Copyright 2010-2011 Florent Le Coz <louiz@louiz.org>
#
# This file is part of Poezio.
#
# Poezio is free software: you can redistribute it and/or modify
2011-09-11 15:10:05 +00:00
# it under the terms of the zlib license. See the COPYING file.
2010-01-10 20:14:17 +00:00
2010-08-31 23:11:02 +00:00
"""
Implementation of the XEP-0045: Multi-User Chat.
Add some facilities that are not available on the XEP_0045
sleek plugin
"""
2010-01-10 20:14:17 +00:00
2010-08-31 23:11:02 +00:00
from xml.etree import cElementTree as ET
2010-02-14 03:51:03 +00:00
import logging
log = logging.getLogger(__name__)
NS_MUC_ADMIN = 'http://jabber.org/protocol/muc#admin'
2010-08-31 23:11:02 +00:00
def send_private_message(xmpp, jid, line):
2010-02-13 15:18:39 +00:00
"""
2010-08-31 23:11:02 +00:00
Send a private message
2010-02-13 15:18:39 +00:00
"""
2010-11-19 03:44:43 +00:00
xmpp.send_message(mto=jid, mbody=line, mtype='chat')
2010-02-13 15:18:39 +00:00
2010-08-31 23:11:02 +00:00
def send_groupchat_message(xmpp, jid, line):
"""
Send a message to the groupchat
"""
2010-11-19 03:44:43 +00:00
xmpp.send_message(mto=jid, mbody=line, mtype='groupchat')
2010-01-10 20:14:17 +00:00
2010-08-31 23:11:02 +00:00
def change_show(xmpp, jid, own_nick, show, status):
"""
Change our 'Show'
"""
2010-11-19 03:44:43 +00:00
pres = xmpp.make_presence(pto='%s/%s' % (jid, own_nick))
2010-11-15 11:59:09 +00:00
if show: # if show is None, don't put a <show /> tag. It means "available"
2010-08-31 23:11:02 +00:00
pres['type'] = show
if status:
pres['status'] = status
pres.send()
def change_subject(xmpp, jid, subject):
"""
Change the room subject
"""
2010-11-19 03:44:43 +00:00
msg = xmpp.make_message(jid)
2010-08-31 23:11:02 +00:00
msg['type'] = 'groupchat'
msg['subject'] = subject
msg.send()
2010-01-10 20:14:17 +00:00
2011-04-05 03:27:52 +00:00
def change_nick(xmpp, jid, nick, status=None, show=None):
2010-08-31 23:11:02 +00:00
"""
Change our own nick in a room
"""
2011-04-05 03:27:52 +00:00
xmpp.make_presence(pshow=show, pstatus=status, pto='%s/%s' % (jid, nick)).send()
2010-01-31 03:07:30 +00:00
2011-04-05 03:27:52 +00:00
def join_groupchat(xmpp, jid, nick, passwd='', maxhistory=None, status=None, show=None):
xmpp.plugin['xep_0045'].joinMUC(jid, nick, maxhistory=maxhistory, password=passwd, pstatus=status, pshow=show)
2010-02-14 03:51:03 +00:00
2010-08-31 23:11:02 +00:00
def leave_groupchat(xmpp, jid, own_nick, msg):
"""
Leave the groupchat
"""
try:
xmpp.plugin['xep_0045'].leaveMUC(jid, own_nick, msg)
except KeyError:
log.debug("muc.leave_groupchat: could not leave the room %s" % jid)
2010-02-14 03:51:03 +00:00
def set_user_role(xmpp, jid, nick, reason, role):
2010-08-31 23:11:02 +00:00
"""
(try to) Set the role of a MUC user
(role = 'none': eject user)
2010-08-31 23:11:02 +00:00
"""
iq = xmpp.makeIqSet()
query = ET.Element('{%s}query' % NS_MUC_ADMIN)
item = ET.Element('{%s}item' % NS_MUC_ADMIN, {'nick':nick, 'role':role})
2010-08-31 23:11:02 +00:00
if reason:
reason_el = ET.Element('{%s}reason' % NS_MUC_ADMIN)
2010-08-31 23:11:02 +00:00
reason_el.text = reason
item.append(reason_el)
query.append(item)
iq.append(query)
iq['to'] = jid
2011-10-04 16:56:02 +00:00
try:
return iq.send()
2011-10-04 16:56:02 +00:00
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