2019-08-28 11:40:55 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "room.h"
|
|
|
|
|
2019-12-20 15:41:20 +00:00
|
|
|
Room::Room(Models::Account* acc, Models::Room* p_room, QWidget* parent):
|
|
|
|
Conversation(true, acc, p_room->getJid(), "", parent),
|
2019-08-28 11:40:55 +00:00
|
|
|
room(p_room)
|
|
|
|
{
|
|
|
|
setName(p_room->getName());
|
|
|
|
line->setMyName(room->getNick());
|
2019-09-03 20:28:58 +00:00
|
|
|
setStatus(room->getSubject());
|
2019-12-23 06:28:23 +00:00
|
|
|
setAvatar(room->getAvatarPath());
|
2019-09-03 20:28:58 +00:00
|
|
|
|
2019-11-03 18:46:40 +00:00
|
|
|
connect(room, &Models::Room::childChanged, this, &Room::onRoomChanged);
|
2019-12-31 18:14:12 +00:00
|
|
|
connect(room, &Models::Room::participantJoined, this, &Room::onParticipantJoined);
|
|
|
|
connect(room, &Models::Room::participantLeft, this, &Room::onParticipantLeft);
|
|
|
|
|
|
|
|
std::map<QString, const Models::Participant&> members = room->getParticipants();
|
|
|
|
for (std::pair<QString, const Models::Participant&> pair : members) {
|
|
|
|
QString aPath = pair.second.getAvatarPath();
|
|
|
|
if (aPath.size() > 0) {
|
|
|
|
line->setPalAvatar(pair.first, aPath);
|
|
|
|
}
|
|
|
|
}
|
2020-04-13 19:57:23 +00:00
|
|
|
|
|
|
|
line->setExPalAvatars(room->getExParticipantAvatars());
|
2019-08-28 11:40:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Room::~Room()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-15 13:48:49 +00:00
|
|
|
Shared::Message Room::createMessage() const
|
2019-08-28 11:40:55 +00:00
|
|
|
{
|
2020-04-15 13:48:49 +00:00
|
|
|
Shared::Message msg = Conversation::createMessage();
|
|
|
|
msg.setType(Shared::Message::groupChat);
|
2020-03-25 15:28:36 +00:00
|
|
|
msg.setFromJid(room->getJid());
|
|
|
|
msg.setFromResource(room->getNick());
|
2019-08-28 11:40:55 +00:00
|
|
|
msg.setToJid(palJid);
|
2020-04-15 13:48:49 +00:00
|
|
|
return msg;
|
2019-08-28 11:40:55 +00:00
|
|
|
}
|
2019-08-29 14:19:35 +00:00
|
|
|
|
|
|
|
bool Room::autoJoined() const
|
|
|
|
{
|
|
|
|
return room->getAutoJoin();
|
|
|
|
}
|
2019-09-03 20:28:58 +00:00
|
|
|
|
|
|
|
void Room::onRoomChanged(Models::Item* item, int row, int col)
|
|
|
|
{
|
|
|
|
if (item == room) {
|
|
|
|
switch (col) {
|
|
|
|
case 0:
|
|
|
|
setName(room->getRoomName());
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
setStatus(room->getSubject());
|
|
|
|
break;
|
2019-12-31 18:14:12 +00:00
|
|
|
case 8:
|
|
|
|
setAvatar(room->getAvatarPath());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (col) {
|
|
|
|
case 7: {
|
|
|
|
Models::Participant* mem = static_cast<Models::Participant*>(item);
|
|
|
|
QString aPath = mem->getAvatarPath();
|
|
|
|
if (aPath.size() > 0) {
|
|
|
|
line->setPalAvatar(mem->getName(), aPath);
|
|
|
|
} else {
|
|
|
|
line->dropPalAvatar(mem->getName());
|
|
|
|
}
|
|
|
|
}
|
2019-09-03 20:28:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-31 18:14:12 +00:00
|
|
|
|
|
|
|
void Room::onParticipantJoined(const Models::Participant& participant)
|
|
|
|
{
|
|
|
|
QString aPath = participant.getAvatarPath();
|
|
|
|
if (aPath.size() > 0) {
|
|
|
|
line->setPalAvatar(participant.getName(), aPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Room::onParticipantLeft(const QString& name)
|
|
|
|
{
|
2020-04-13 19:57:23 +00:00
|
|
|
line->movePalAvatarToEx(name);
|
2019-12-31 18:14:12 +00:00
|
|
|
}
|