173 lines
5.0 KiB
C++
173 lines
5.0 KiB
C++
// SPDX-FileCopyrightText: 2021-2023 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
#include "accountemoticonmodel.h"
|
|
|
|
#include <Quotient/csapi/content-repo.h>
|
|
#include <qcoro/qcorosignal.h>
|
|
|
|
using namespace Quotient;
|
|
|
|
AccountEmoticonModel::AccountEmoticonModel(QObject *parent)
|
|
: QAbstractListModel(parent)
|
|
{
|
|
}
|
|
|
|
int AccountEmoticonModel::rowCount(const QModelIndex &index) const
|
|
{
|
|
Q_UNUSED(index);
|
|
if (!m_images) {
|
|
return 0;
|
|
}
|
|
return m_images->images.size();
|
|
}
|
|
|
|
QVariant AccountEmoticonModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
const auto &row = index.row();
|
|
const auto &image = m_images->images[row];
|
|
if (role == UrlRole) {
|
|
return m_connection->makeMediaUrl(image.url);
|
|
}
|
|
if (role == BodyRole) {
|
|
if (image.body) {
|
|
return *image.body;
|
|
}
|
|
}
|
|
if (role == ShortCodeRole) {
|
|
return image.shortcode;
|
|
}
|
|
if (role == IsStickerRole) {
|
|
if (image.usage) {
|
|
return image.usage->isEmpty() || image.usage->contains("sticker"_ls);
|
|
}
|
|
if (m_images->pack && m_images->pack->usage) {
|
|
return m_images->pack->usage->isEmpty() || m_images->pack->usage->contains("sticker"_ls);
|
|
}
|
|
return true;
|
|
}
|
|
if (role == IsEmojiRole) {
|
|
if (image.usage) {
|
|
return image.usage->isEmpty() || image.usage->contains("emoticon"_ls);
|
|
}
|
|
if (m_images->pack && m_images->pack->usage) {
|
|
return m_images->pack->usage->isEmpty() || m_images->pack->usage->contains("emoticon"_ls);
|
|
}
|
|
return true;
|
|
}
|
|
return {};
|
|
}
|
|
|
|
QHash<int, QByteArray> AccountEmoticonModel::roleNames() const
|
|
{
|
|
return {
|
|
{AccountEmoticonModel::UrlRole, "url"},
|
|
{AccountEmoticonModel::BodyRole, "body"},
|
|
{AccountEmoticonModel::ShortCodeRole, "shortcode"},
|
|
{AccountEmoticonModel::IsStickerRole, "isSticker"},
|
|
{AccountEmoticonModel::IsEmojiRole, "isEmoji"},
|
|
};
|
|
}
|
|
|
|
Connection *AccountEmoticonModel::connection() const
|
|
{
|
|
return m_connection;
|
|
}
|
|
|
|
void AccountEmoticonModel::setConnection(Connection *connection)
|
|
{
|
|
if (m_connection) {
|
|
disconnect(m_connection, nullptr, this, nullptr);
|
|
}
|
|
|
|
m_connection = connection;
|
|
Q_EMIT connectionChanged();
|
|
connect(m_connection, &Connection::accountDataChanged, this, [this](QString type) {
|
|
if (type == QStringLiteral("im.ponies.user_emotes")) {
|
|
reloadEmoticons();
|
|
}
|
|
});
|
|
reloadEmoticons();
|
|
}
|
|
|
|
void AccountEmoticonModel::reloadEmoticons()
|
|
{
|
|
QJsonObject json;
|
|
if (m_connection->hasAccountData("im.ponies.user_emotes"_ls)) {
|
|
json = m_connection->accountData("im.ponies.user_emotes"_ls)->contentJson();
|
|
}
|
|
const auto &content = ImagePackEventContent(json);
|
|
beginResetModel();
|
|
m_images = content;
|
|
endResetModel();
|
|
}
|
|
|
|
void AccountEmoticonModel::deleteEmoticon(int index)
|
|
{
|
|
QJsonObject data;
|
|
m_images->images.removeAt(index);
|
|
m_images->fillJson(&data);
|
|
m_connection->setAccountData("im.ponies.user_emotes"_ls, data);
|
|
}
|
|
|
|
void AccountEmoticonModel::setEmoticonBody(int index, const QString &text)
|
|
{
|
|
m_images->images[index].body = text;
|
|
QJsonObject data;
|
|
m_images->fillJson(&data);
|
|
m_connection->setAccountData("im.ponies.user_emotes"_ls, data);
|
|
}
|
|
|
|
void AccountEmoticonModel::setEmoticonShortcode(int index, const QString &shortcode)
|
|
{
|
|
m_images->images[index].shortcode = shortcode;
|
|
QJsonObject data;
|
|
m_images->fillJson(&data);
|
|
m_connection->setAccountData("im.ponies.user_emotes"_ls, data);
|
|
}
|
|
|
|
void AccountEmoticonModel::setEmoticonImage(int index, const QUrl &source)
|
|
{
|
|
doSetEmoticonImage(index, source);
|
|
}
|
|
|
|
QCoro::Task<void> AccountEmoticonModel::doSetEmoticonImage(int index, QUrl source)
|
|
{
|
|
auto job = m_connection->uploadFile(source.isLocalFile() ? source.toLocalFile() : source.toString());
|
|
co_await qCoro(job, &BaseJob::finished);
|
|
if (job->error() != BaseJob::NoError) {
|
|
co_return;
|
|
}
|
|
m_images->images[index].url = job->contentUri();
|
|
m_images->images[index].info = none;
|
|
QJsonObject data;
|
|
m_images->fillJson(&data);
|
|
m_connection->setAccountData("im.ponies.user_emotes"_ls, data);
|
|
}
|
|
|
|
QCoro::Task<void> AccountEmoticonModel::doAddEmoticon(QUrl source, QString shortcode, QString description, QString type)
|
|
{
|
|
auto job = m_connection->uploadFile(source.isLocalFile() ? source.toLocalFile() : source.toString());
|
|
co_await qCoro(job, &BaseJob::finished);
|
|
if (job->error() != BaseJob::NoError) {
|
|
co_return;
|
|
}
|
|
m_images->images.append(ImagePackEventContent::ImagePackImage{
|
|
shortcode,
|
|
job->contentUri(),
|
|
description,
|
|
none,
|
|
QStringList{type},
|
|
});
|
|
QJsonObject data;
|
|
m_images->fillJson(&data);
|
|
m_connection->setAccountData("im.ponies.user_emotes"_ls, data);
|
|
}
|
|
|
|
void AccountEmoticonModel::addEmoticon(const QUrl &source, const QString &shortcode, const QString &description, const QString &type)
|
|
{
|
|
doAddEmoticon(source, shortcode, description, type);
|
|
}
|
|
|
|
#include "moc_accountemoticonmodel.cpp"
|