Mercurial > libervia-backend
annotate plugins/plugin_xep_0045.py @ 76:8becde8a967c
MUC: added subject management
- plugin xep-0045: added roomNewSubject signal
- wix: added subject bar for group windows
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 30 Mar 2010 13:15:05 +1100 |
parents | 7322a41f8a8e |
children | 1ae680f9682e |
rev | line source |
---|---|
72 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 SAT plugin for managing xep-0045 | |
6 Copyright (C) 2009, 2010 Jérôme Poisson (goffi@goffi.org) | |
7 | |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 from logging import debug, info, warning, error | |
23 from twisted.words.xish import domish | |
24 from twisted.internet import protocol, defer, threads, reactor | |
25 from twisted.words.protocols.jabber import client, jid, xmlstream | |
26 from twisted.words.protocols.jabber import error as jab_error | |
27 from twisted.words.protocols.jabber.xmlstream import IQ | |
28 import os.path | |
29 import pdb | |
30 | |
31 from zope.interface import implements | |
32 | |
33 from wokkel import disco, iwokkel, muc | |
34 | |
35 from base64 import b64decode | |
36 from hashlib import sha1 | |
37 from time import sleep | |
38 | |
39 try: | |
40 from twisted.words.protocols.xmlstream import XMPPHandler | |
41 except ImportError: | |
42 from wokkel.subprotocols import XMPPHandler | |
43 | |
44 AVATAR_PATH = "/avatars" | |
45 | |
46 IQ_GET = '/iq[@type="get"]' | |
47 NS_VCARD = 'vcard-temp' | |
48 VCARD_REQUEST = IQ_GET + '/vCard[@xmlns="' + NS_VCARD + '"]' #TODO: manage requests | |
49 | |
50 PRESENCE = '/presence' | |
51 NS_VCARD_UPDATE = 'vcard-temp:x:update' | |
52 VCARD_UPDATE = PRESENCE + '/x[@xmlns="' + NS_VCARD_UPDATE + '"]' | |
53 | |
54 PLUGIN_INFO = { | |
55 "name": "XEP 0045 Plugin", | |
56 "import_name": "XEP_0045", | |
57 "type": "XEP", | |
58 "protocols": ["XEP-0045"], | |
59 "dependencies": [], | |
60 "main": "XEP_0045", | |
61 "handler": "yes", | |
62 "description": _("""Implementation of Multi-User Chat""") | |
63 } | |
64 | |
65 class XEP_0045(): | |
66 | |
67 def __init__(self, host): | |
68 info(_("Plugin XEP_0045 initialization")) | |
69 self.host = host | |
70 self.clients={} | |
71 host.bridge.addMethod("joinMUC", ".communication", in_sign='ssss', out_sign='', method=self.join) | |
73 | 72 host.bridge.addSignal("roomJoined", ".communication", signature='ssasss') #args: room_id, room_service, room_nicks, user_nick, profile |
74
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
73 host.bridge.addSignal("roomUserJoined", ".communication", signature='sssa{ss}s') #args: room_id, room_service, user_nick, user_data, profile |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
74 host.bridge.addSignal("roomUserLeft", ".communication", signature='sssa{ss}s') #args: room_id, room_service, user_nick, user_data, profile |
76 | 75 host.bridge.addSignal("roomNewSubject", ".communication", signature='ssss') #args: room_id, room_service, subject, profile |
72 | 76 |
77 def __check_profile(self, profile): | |
75 | 78 """check if profile is used and connected |
79 if profile known but disconnected, remove it from known profiles | |
80 @param profile: profile to check | |
81 @return: True if the profile is known and connected, else False""" | |
72 | 82 if not profile or not self.clients.has_key(profile) or not self.host.isConnected(profile): |
83 error (_('Unknown or disconnected profile')) | |
84 if self.clients.has_key(profile): | |
85 del self.clients[profile] | |
86 return False | |
87 return True | |
88 | |
89 def __room_joined(self, room, profile): | |
90 """Called when the user is in the requested room""" | |
91 print "room joined (profile = %s)" % profile | |
92 room_jid = room.roomIdentifier+'@'+room.service | |
93 self.clients[profile].joined_rooms[room_jid] = room | |
75 | 94 self.host.bridge.roomJoined(room.roomIdentifier, room.service, [user.nick for user in room.roster.values()], room.nick, profile) |
72 | 95 |
75 | 96 def __err_joining_room(self, failure, profile): |
72 | 97 """Called when something is going wrong when joining the room""" |
98 error ("Error when joining the room") | |
76 | 99 #TODO: gof: send an error message throught the bridge |
72 | 100 |
101 def join(self, service, roomId, nick, profile_key='@DEFAULT@'): | |
102 profile = self.host.memory.getProfileName(profile_key) | |
103 if not self.__check_profile(profile): | |
104 return | |
105 room_jid = roomId+'@'+service | |
106 if self.clients[profile].joined_rooms.has_key(room_jid): | |
107 warning(_('%(profile)s is already in room %(room_jid)s') % {'profile':profile, 'room_jid':room_jid}) | |
108 return | |
109 info (_("[%(profile)s] is joining room %(room)s with nick %(nick)s") % {'profile':profile,'room':roomId+'@'+service, 'nick':nick}) | |
110 self.clients[profile].join(service, roomId, nick).addCallbacks(self.__room_joined, self.__err_joining_room, callbackKeywords={'profile':profile}, errbackKeywords={'profile':profile}) | |
111 | |
112 def getHandler(self, profile): | |
113 #reactor.callLater(15,self.join,"conference.necton2.int", "test", "Goffi \o/", profile) | |
114 self.clients[profile] = SatMUCClient(self) | |
115 return self.clients[profile] | |
116 | |
117 | |
118 | |
119 class SatMUCClient (muc.MUCClient): | |
120 #implements(iwokkel.IDisco) | |
121 | |
122 def __init__(self, plugin_parent): | |
123 self.plugin_parent = plugin_parent | |
124 self.host = plugin_parent.host | |
125 muc.MUCClient.__init__(self) | |
126 self.joined_rooms = {} #FIXME gof: check if necessary | |
127 print "init SatMUCClient OK" | |
128 | |
129 def receivedGroupChat(self, room, user, body): | |
130 debug('receivedGroupChat: room=%s user=%s body=%s', room, user, body) | |
131 | |
74
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
132 def userJoinedRoom(self, room, user): |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
133 debug (_("user %(nick)s has joined room (%(room_id)s)") % {'nick':user.nick, 'room_id':room.occupantJID.userhost()}) |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
134 user_data={'entity':user.entity or '', 'affiliation':user.affiliation, 'role':user.role} |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
135 self.host.bridge.roomUserJoined(room.roomIdentifier, room.service, user.nick, user_data, self.parent.profile) |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
136 |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
137 def userLeftRoom(self, room, user): |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
138 debug (_("user %(nick)s left room (%(room_id)s)") % {'nick':user.nick, 'room_id':room.occupantJID.userhost()}) |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
139 user_data={'entity':user.entity or '', 'affiliation':user.affiliation, 'role':user.role} |
6e3a06b4dd36
plugin xep-0045: added roomUserJoined and roomUserLeft signals
Goffi <goffi@goffi.org>
parents:
73
diff
changeset
|
140 self.host.bridge.roomUserLeft(room.roomIdentifier, room.service, user.nick, user_data, self.parent.profile) |
72 | 141 |
76 | 142 def receivedSubject(self, room, subject): |
143 debug (_("New subject for room (%(room_id)s): %(subject)s") % {'room_id':room.occupantJID.userhost(),'subject':subject}) | |
144 self.host.bridge.roomNewSubject(room.roomIdentifier, room.service, subject, self.parent.profile) | |
145 | |
72 | 146 #def connectionInitialized(self): |
147 #pass | |
148 | |
149 #def getDiscoInfo(self, requestor, target, nodeIdentifier=''): | |
150 #return [disco.DiscoFeature(NS_VCARD)] | |
151 | |
152 #def getDiscoItems(self, requestor, target, nodeIdentifier=''): | |
153 #return [] | |
154 |