2015-12-31 19:43:10 +00:00
|
|
|
__author__ = "Steffen Vogel"
|
|
|
|
__copyright__ = "Copyright 2015, Steffen Vogel"
|
|
|
|
__license__ = "GPLv3"
|
|
|
|
__maintainer__ = "Steffen Vogel"
|
|
|
|
__email__ = "post@steffenvogel.de"
|
2013-08-01 23:45:51 +00:00
|
|
|
|
2015-12-31 19:43:10 +00:00
|
|
|
"""
|
2013-08-01 23:45:51 +00:00
|
|
|
This file is part of transWhat
|
|
|
|
|
|
|
|
transWhat is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
transwhat is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with transWhat. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
2013-05-31 18:53:21 +00:00
|
|
|
|
2016-01-01 09:42:11 +00:00
|
|
|
from Spectrum2 import protocol_pb2
|
|
|
|
|
2013-05-31 18:53:21 +00:00
|
|
|
class Group():
|
|
|
|
|
2016-01-01 09:42:11 +00:00
|
|
|
def __init__(self, id, owner, subject, subjectOwner, backend, user):
|
2013-05-31 18:53:21 +00:00
|
|
|
self.id = id
|
|
|
|
self.subject = subject
|
2013-06-28 17:45:34 +00:00
|
|
|
self.subjectOwner = subjectOwner
|
2013-05-31 18:53:21 +00:00
|
|
|
self.owner = owner
|
2015-11-23 15:06:14 +00:00
|
|
|
self.joined = False
|
2016-01-01 09:42:11 +00:00
|
|
|
self.backend = backend
|
|
|
|
self.user = user
|
2015-12-28 12:12:47 +00:00
|
|
|
|
2015-12-31 19:43:10 +00:00
|
|
|
self.nick = "me"
|
2016-01-01 09:42:11 +00:00
|
|
|
# Participants is a number -> nickname dict
|
|
|
|
self.participants = {}
|
|
|
|
|
|
|
|
def addParticipants(self, participants, buddies, yourNumber):
|
|
|
|
"""
|
|
|
|
Adds participants to the group.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
- participants: (Iterable) phone numbers of participants
|
|
|
|
- buddies: (dict) Used to get the nicknames of the participants
|
|
|
|
- yourNumber: The number you are using
|
|
|
|
"""
|
|
|
|
for jid in participants:
|
|
|
|
number = jid.split('@')[0]
|
|
|
|
try:
|
|
|
|
nick = buddies[number].nick
|
|
|
|
except KeyError:
|
|
|
|
nick = number
|
|
|
|
if number == yourNumber:
|
|
|
|
nick = self.nick
|
|
|
|
if nick == "":
|
|
|
|
nick = number
|
|
|
|
self.participants[number] = nick
|
|
|
|
|
|
|
|
def sendParticipantsToSpectrum(self, yourNumber):
|
|
|
|
for number, nick in self.participants.iteritems():
|
|
|
|
if number == self.owner:
|
|
|
|
flags = protocol_pb2.PARTICIPANT_FLAG_MODERATOR
|
|
|
|
else:
|
|
|
|
flags = protocol_pb2.PARTICIPANT_FLAG_NONE
|
|
|
|
if number == yourNumber:
|
|
|
|
flags = flags | protocol_pb2.PARTICIPANT_FLAG_ME
|
2016-02-10 23:46:53 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
self._updateParticipant(number, flags, protocol_pb2.STATUS_ONLINE,
|
|
|
|
self.backend.sessions[self.user].buddies[number].image_hash)
|
|
|
|
except KeyError:
|
|
|
|
self._updateParticipant(number, flags, protocol_pb2.STATUS_ONLINE)
|
2016-01-01 09:42:11 +00:00
|
|
|
|
|
|
|
def removeParticipants(self, participants):
|
|
|
|
for jid in participants:
|
|
|
|
number = jid.split('@')[0]
|
|
|
|
nick = self.participants[number]
|
|
|
|
flags = protocol_pb2.PARTICIPANT_FLAG_NONE
|
|
|
|
self._updateParticipant(number, flags, protocol_pb2.STATUS_NONE)
|
|
|
|
del self.participants[number]
|
|
|
|
|
2016-01-06 14:33:28 +00:00
|
|
|
def leaveRoom(self):
|
|
|
|
for number in self.participants:
|
|
|
|
nick = self.participants[number]
|
|
|
|
flags = protocol_pb2.PARTICIPANT_FLAG_ROOM_NOT_FOUND
|
|
|
|
self._updateParticipant(number, flags, protocol_pb2.STATUS_NONE)
|
|
|
|
|
2016-01-01 09:42:11 +00:00
|
|
|
def changeNick(self, number, new_nick):
|
|
|
|
if self.participants[number] == new_nick:
|
|
|
|
return
|
|
|
|
if number == self.owner:
|
|
|
|
flags = protocol_pb2.PARTICIPANT_FLAG_MODERATOR
|
|
|
|
else:
|
|
|
|
flags = protocol_pb2.PARTICIPANT_FLAG_NONE
|
|
|
|
self._updateParticipant(number, flags, protocol_pb2.STATUS_ONLINE, new_nick)
|
|
|
|
self.participants[number] = new_nick
|
|
|
|
|
2016-02-10 23:46:53 +00:00
|
|
|
def _updateParticipant(self, number, flags, status, imageHash = "", newNick = ""):
|
2016-01-01 09:42:11 +00:00
|
|
|
nick = self.participants[number]
|
|
|
|
# Notice the status message is the buddy's number
|
|
|
|
if self.joined:
|
|
|
|
self.backend.handleParticipantChanged(
|
|
|
|
self.user, nick, self.id, flags,
|
2016-02-10 23:46:53 +00:00
|
|
|
status, number, newname = newNick, iconHash = imageHash)
|