Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • beta/202505231812
  • stable/20250523.0
  • nightly/20250523.0
  • nightly/20250515.0
  • nightly/20250510.0
  • nightly/20250509.1
  • nightly/20250509.0
  • stable/20250430.1
  • stable/20250430.0
  • beta/202504301614
  • nightly/20250430.0
  • stable/20250424.1
  • beta/202504241506
  • stable/20250424.0
  • nightly/20250424.1
  • nightly/20250424.0
  • nightly/20250422.0
  • beta/202504120241
  • stable/20250411.0
  • nightly/20250411.0
21 results

messagesadapter.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    messagesadapter.h 5.50 KiB
    /*
     * Copyright (C) 2020-2022 Savoir-faire Linux Inc.
     * Author: Mingrui Zhang   <mingrui.zhang@savoirfairelinux.com>
     *
     * 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/>.
     */
    
    #pragma once
    
    #include "lrcinstance.h"
    #include "qmladapterbase.h"
    #include "previewengine.h"
    
    #include "api/chatview.h"
    
    #include <QObject>
    #include <QString>
    
    #include <QSortFilterProxyModel>
    
    class FilteredMsgListModel final : public QSortFilterProxyModel
    {
        Q_OBJECT
    
    public:
        explicit FilteredMsgListModel(QObject* parent = nullptr)
            : QSortFilterProxyModel(parent)
        {
            sort(0, Qt::AscendingOrder);
        }
    
        bool filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const override
        {
            auto index = sourceModel()->index(sourceRow, 0, sourceParent);
            auto type = sourceModel()->data(index, MessageList::Role::Type).toInt();
            auto hasBody = !sourceModel()->data(index, MessageList::Role::Body).toString().isEmpty();
            return static_cast<interaction::Type>(type) != interaction::Type::MERGE && hasBody;
        };
    
        bool lessThan(const QModelIndex& left, const QModelIndex& right) const override
        {
            return left.row() > right.row();
        };
    };
    
    class AppSettingsManager;
    
    class MessagesAdapter final : public QmlAdapterBase
    {
        Q_OBJECT
        QML_RO_PROPERTY(QVariant, messageListModel)
        QML_RO_PROPERTY(QList<QString>, currentConvComposingList)
    
    public:
        explicit MessagesAdapter(AppSettingsManager* settingsManager,
                                 PreviewEngine* previewEngine,
                                 LRCInstance* instance,
                                 QObject* parent = nullptr);
        ~MessagesAdapter() = default;
    
    Q_SIGNALS:
        void newInteraction(int type);
        void newMessageBarPlaceholderText(QString placeholderText);
        void newFilePasted(QString filePath);
        void newTextPasted();
        void previewInformationToQML(QString messageId, QStringList previewInformation);
        void moreMessagesLoaded();
    
    protected:
        void safeInit() override;
    
        Q_INVOKABLE void setupChatView(const QVariantMap& convInfo);
        Q_INVOKABLE void loadMoreMessages();
        Q_INVOKABLE void connectConversationModel();
        Q_INVOKABLE void sendConversationRequest();
        Q_INVOKABLE void removeConversation(const QString& convUid);
        Q_INVOKABLE void removeContact(const QString& convUid, bool banContact = false);
        Q_INVOKABLE void clearConversationHistory(const QString& accountId, const QString& convUid);
        Q_INVOKABLE void acceptInvitation(const QString& convId = {});
        Q_INVOKABLE void refuseInvitation(const QString& convUid = "");
        Q_INVOKABLE void blockConversation(const QString& convUid = "");
        Q_INVOKABLE void unbanContact(int index);
        Q_INVOKABLE void sendMessage(const QString& message);
        Q_INVOKABLE void sendFile(const QString& message);
        Q_INVOKABLE void acceptFile(const QString& arg);
        Q_INVOKABLE void cancelFile(const QString& arg);
        Q_INVOKABLE void openUrl(const QString& url);
        Q_INVOKABLE void openDirectory(const QString& arg);
        Q_INVOKABLE void retryInteraction(const QString& interactionId);
        Q_INVOKABLE void deleteInteraction(const QString& interactionId);
        Q_INVOKABLE void copyToDownloads(const QString& interactionId, const QString& displayName);
        Q_INVOKABLE void userIsComposing(bool isComposing);
        Q_INVOKABLE QVariantMap isLocalImage(const QString& msg);
        Q_INVOKABLE QVariantMap getMediaInfo(const QString& msg);
        Q_INVOKABLE bool isRemoteImage(const QString& msg);
        Q_INVOKABLE QString getFormattedTime(const quint64 timestamp);
        Q_INVOKABLE void parseMessageUrls(const QString& messageId,
                                          const QString& msg,
                                          bool showPreview);
        Q_INVOKABLE void onPaste();
        Q_INVOKABLE QString getStatusString(int status);
        Q_INVOKABLE QVariantMap getTransferStats(const QString& messageId, int);
    
        // Run corrsponding js functions, c++ to qml.
        void setMessagesImageContent(const QString& path, bool isBased64 = false);
        void setMessagesFileContent(const QString& path);
        void setSendMessageContent(const QString& content);
    
    private Q_SLOTS:
        void onNewInteraction(const QString& convUid,
                              const QString& interactionId,
                              const interaction::Info& interaction);
        void onPreviewInfoReady(QString messageIndex, QVariantMap urlInMessage);
        void onConversationMessagesLoaded(uint32_t requestId, const QString& convId);
        void onMessageLinkified(const QString& messageId, const QString& linkified);
        void onComposingStatusChanged(const QString& convId,
                                      const QString& contactUri,
                                      bool isComposing);
    
    private:
        QList<QString> conversationTypersUrlToName(const QSet<QString>& typersSet);
    
        AppSettingsManager* settingsManager_;
        PreviewEngine* previewEngine_;
        FilteredMsgListModel* filteredMsgListModel_;
    
        static constexpr const int loadChunkSize_ {20};
    };