diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-01-06 00:12:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-06 00:12:05 +0900 |
commit | 9c08bbce341081a8ccbe0fccf48658b3e75e02cf (patch) | |
tree | 171ff3fcf35acb2c4a707488e6f43a2e35fff56f /lib/eventitem.cpp | |
parent | f545d181ade8736dfda93e8abb34ab93ac34e931 (diff) | |
parent | 27555e44dfbaae26a0e030cb3c22eb00ba8371f0 (diff) | |
download | libquotient-9c08bbce341081a8ccbe0fccf48658b3e75e02cf.tar.gz libquotient-9c08bbce341081a8ccbe0fccf48658b3e75e02cf.zip |
Merge pull request #272 from QMatrixClient/kitsune-upload-attachments
Support of attachments uploading
Diffstat (limited to 'lib/eventitem.cpp')
-rw-r--r-- | lib/eventitem.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/eventitem.cpp b/lib/eventitem.cpp index 79ef769c..8ec3fe48 100644 --- a/lib/eventitem.cpp +++ b/lib/eventitem.cpp @@ -17,3 +17,29 @@ */ #include "eventitem.h" + +#include "events/roommessageevent.h" +#include "events/roomavatarevent.h" + +using namespace QMatrixClient; + +void PendingEventItem::setFileUploaded(const QUrl& remoteUrl) +{ + // TODO: eventually we might introduce hasFileContent to RoomEvent, + // and unify the code below. + if (auto* rme = getAs<RoomMessageEvent>()) + { + Q_ASSERT(rme->hasFileContent()); + rme->editContent([remoteUrl] (EventContent::TypedBase& ec) { + ec.fileInfo()->url = remoteUrl; + }); + } + if (auto* rae = getAs<RoomAvatarEvent>()) + { + Q_ASSERT(rae->content().fileInfo()); + rae->editContent([remoteUrl] (EventContent::FileInfo& fi) { + fi.url = remoteUrl; + }); + } + setStatus(EventStatus::FileUploaded); +} |