97 lines
3.6 KiB
C++
97 lines
3.6 KiB
C++
|
/*
|
||
|
Copyright (C) 2020 Sebastian J. Wolf
|
||
|
|
||
|
This file is part of Fernschreiber.
|
||
|
|
||
|
Fernschreiber 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.
|
||
|
|
||
|
Fernschreiber 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 Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include "stickermanager.h"
|
||
|
#include <QDebug>
|
||
|
#include <QListIterator>
|
||
|
|
||
|
#define LOG(x) qDebug() << "[StickerManager]" << x
|
||
|
|
||
|
StickerManager::StickerManager(TDLibWrapper *tdLibWrapper, QObject *parent) : QObject(parent)
|
||
|
{
|
||
|
LOG("Initializing...");
|
||
|
this->tdLibWrapper = tdLibWrapper;
|
||
|
|
||
|
connect(this->tdLibWrapper, SIGNAL(recentStickersUpdated(QVariantList)), this, SLOT(handleRecentStickersUpdated(QVariantList)));
|
||
|
connect(this->tdLibWrapper, SIGNAL(stickersReceived(QVariantList)), this, SLOT(handleStickersReceived(QVariantList)));
|
||
|
connect(this->tdLibWrapper, SIGNAL(installedStickerSetsUpdated(QVariantList)), this, SLOT(handleInstalledStickerSetsUpdated(QVariantList)));
|
||
|
connect(this->tdLibWrapper, SIGNAL(stickerSetsReceived(QVariantList)), this, SLOT(handleStickerSetsReceived(QVariantList)));
|
||
|
}
|
||
|
|
||
|
StickerManager::~StickerManager()
|
||
|
{
|
||
|
LOG("Destroying myself...");
|
||
|
}
|
||
|
|
||
|
QVariantList StickerManager::getRecentStickers()
|
||
|
{
|
||
|
return this->recentStickers;
|
||
|
}
|
||
|
|
||
|
QVariantList StickerManager::getInstalledStickerSets()
|
||
|
{
|
||
|
return this->installedStickerSets;
|
||
|
}
|
||
|
|
||
|
void StickerManager::handleRecentStickersUpdated(const QVariantList &stickerIds)
|
||
|
{
|
||
|
LOG("Receiving recent stickers...." << stickerIds);
|
||
|
this->recentStickerIds = stickerIds;
|
||
|
}
|
||
|
|
||
|
void StickerManager::handleStickersReceived(const QVariantList &stickers)
|
||
|
{
|
||
|
LOG("Receiving stickers...." << stickers);
|
||
|
QListIterator<QVariant> stickersIterator(stickers);
|
||
|
while (stickersIterator.hasNext()) {
|
||
|
QVariantMap newSticker = stickersIterator.next().toMap();
|
||
|
this->stickers.insert(newSticker.value("sticker").toMap().value("id").toString(), newSticker);
|
||
|
}
|
||
|
|
||
|
this->recentStickers.clear();
|
||
|
QListIterator<QVariant> stickerIdIterator(this->recentStickerIds);
|
||
|
while (stickerIdIterator.hasNext()) {
|
||
|
QString stickerId = stickerIdIterator.next().toString();
|
||
|
this->recentStickers.append(this->stickers.value(stickerId));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void StickerManager::handleInstalledStickerSetsUpdated(const QVariantList &stickerSetIds)
|
||
|
{
|
||
|
LOG("Receiving installed sticker IDs...." << stickerSetIds);
|
||
|
this->installedStickerSetIds = stickerSetIds;
|
||
|
}
|
||
|
|
||
|
void StickerManager::handleStickerSetsReceived(const QVariantList &stickerSets)
|
||
|
{
|
||
|
LOG("Receiving sticker sets...." << stickerSets);
|
||
|
QListIterator<QVariant> stickerSetsIterator(stickerSets);
|
||
|
while (stickerSetsIterator.hasNext()) {
|
||
|
QVariantMap newStickerSet = stickerSetsIterator.next().toMap();
|
||
|
this->stickerSets.insert(newStickerSet.value("id").toString(), newStickerSet);
|
||
|
}
|
||
|
|
||
|
this->installedStickerSets.clear();
|
||
|
QListIterator<QVariant> stickerSetIdIterator(this->installedStickerSetIds);
|
||
|
while (stickerSetIdIterator.hasNext()) {
|
||
|
QString stickerSetId = stickerSetIdIterator.next().toString();
|
||
|
this->installedStickerSets.append(this->stickerSets.value(stickerSetId));
|
||
|
}
|
||
|
}
|