1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
/******************************************************************************
* Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include "event.h"
#include <QtCore/QUrl>
#include <QtCore/QMimeType>
#include <QtCore/QSize>
#include <memory>
namespace QMatrixClient
{
namespace MessageEventContent
{
class Base
{
Q_GADGET
public:
enum class Type
{
Text, Emote, Notice, Image, File, Location, Video, Audio, Unknown
};
virtual ~Base() = default;
REGISTER_ENUM(Type)
};
using CType = Base::Type;
} // namespace MessageEventContent
using MessageEventType = MessageEventContent::CType;
class RoomMessageEvent: public RoomEvent
{
public:
explicit RoomMessageEvent(const QJsonObject& obj);
~RoomMessageEvent();
const QString& userId() const { return _userId; }
MessageEventType msgtype() const { return _msgtype; }
const QString& plainBody() const { return _plainBody; }
const MessageEventContent::Base* content() const { return _content; }
private:
QString _userId;
MessageEventType _msgtype;
QString _plainBody;
MessageEventContent::Base* _content;
};
namespace MessageEventContent
{
// The below structures fairly follow CS spec 11.2.1.6. The overall
// set of attributes for each content types is a superset of the spec
// but specific aggregation structure is altered.
class TextContent: public Base
{
public:
explicit TextContent(const QJsonObject& json);
QMimeType mimeType;
QString body;
};
class FileInfo: public Base
{
public:
FileInfo(QUrl u, const QJsonObject& infoJson,
QString originalFilename = QString());
QUrl url;
int fileSize;
QMimeType mimetype;
QString originalName;
};
class ImageInfo: public FileInfo
{
public:
ImageInfo(QUrl u, const QJsonObject& infoJson);
QSize imageSize;
};
template <class ContentInfoT>
class ThumbnailedContent: public ContentInfoT
{
public:
explicit ThumbnailedContent(const QJsonObject& json)
: ContentInfoT(json["url"].toString(), json["info"].toObject())
, thumbnail(json["thumbnail_url"].toString(),
json["thumbnail_info"].toObject())
{ }
ImageInfo thumbnail;
};
using ImageContent = ThumbnailedContent<ImageInfo>;
using FileContent = ThumbnailedContent<FileInfo>;
class LocationContent: public Base
{
public:
explicit LocationContent(const QJsonObject& json);
QString geoUri;
ImageInfo thumbnail;
};
class VideoInfo: public FileInfo
{
public:
VideoInfo(QUrl u, const QJsonObject& infoJson);
int duration;
QSize imageSize;
};
using VideoContent = ThumbnailedContent<VideoInfo>;
class AudioInfo: public FileInfo
{
public:
AudioInfo(QUrl u, const QJsonObject& infoJson);
int duration;
};
using AudioContent = ThumbnailedContent<AudioInfo>;
} // namespace MessageEventContent
} // namespace QMatrixClient
|