Mercurial > libervia-backend
diff src/plugins/plugin_xep_0045.py @ 515:29b5ef129488
plugin XEP-0045, plugin text commands: added '/title' command
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 20 Oct 2012 18:02:14 +0200 |
parents | 64ff046dc201 |
children | 75216d94a89d |
line wrap: on
line diff
--- a/src/plugins/plugin_xep_0045.py Sat Oct 20 17:24:30 2012 +0200 +++ b/src/plugins/plugin_xep_0045.py Sat Oct 20 18:02:14 2012 +0200 @@ -190,6 +190,14 @@ raise UnknownRoom("This room has not been joined") return self.clients[profile].leave(room_jid) + def subject(self, room_jid, subject, profile_key): + profile = self.host.memory.getProfileName(profile_key) + if not self.__check_profile(profile): + raise exceptions.UnknownProfileError("Unknown or disconnected profile") + if not self.clients[profile].joined_rooms.has_key(room_jid.userhost()): + raise UnknownRoom("This room has not been joined") + return self.clients[profile].subject(room_jid, subject) + def mucNick(self, room_jid_s, nick, profile_key='@DEFAULT@'): """Change nickname in a room""" return self.nick(jid.JID(room_jid_s), nick, profile_key) @@ -216,6 +224,9 @@ self.__changing_nicks = set() # used to keep trace of who is changing nick, # and to discard userJoinedRoom signal in this case print "init SatMUCClient OK" + + def subject(self, room, subject): + return muc.MUCClientProtocol.subject(self, room, subject) def unavailableReceived(self, presence): #XXX: we override this method to manage nickname change @@ -279,7 +290,6 @@ self.rec_subjects[room.roomJID.userhost()] = (room.roomJID.userhost(), subject) self.host.bridge.roomNewSubject(room.roomJID.userhost(), subject, self.parent.profile) - #def connectionInitialized(self): #pass