2018-03-05 11:12:13 +00:00
|
|
|
#include "messageeventmodel.h"
|
|
|
|
|
|
|
|
#include <QtCore/QSettings>
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
#include <QtQml> // for qmlRegisterType()
|
|
|
|
|
|
|
|
#include "events/roommemberevent.h"
|
|
|
|
#include "events/simplestateevents.h"
|
|
|
|
#include "events/redactionevent.h"
|
2018-07-08 05:25:46 +00:00
|
|
|
#include "events/roomavatarevent.h"
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-03-15 09:10:27 +00:00
|
|
|
#include "connection.h"
|
|
|
|
#include "user.h"
|
|
|
|
#include "settings.h"
|
|
|
|
|
2018-03-05 11:12:13 +00:00
|
|
|
MessageEventModel::MessageEventModel(QObject* parent)
|
|
|
|
: QAbstractListModel(parent)
|
|
|
|
{
|
|
|
|
qmlRegisterType<QMatrixClient::FileTransferInfo>();
|
|
|
|
qRegisterMetaType<QMatrixClient::FileTransferInfo>();
|
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
MessageEventModel::~MessageEventModel()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageEventModel::setRoom(QMatrixClient::Room* room)
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
if (room == m_currentRoom)
|
|
|
|
return;
|
|
|
|
|
|
|
|
beginResetModel();
|
2018-03-06 11:11:39 +00:00
|
|
|
if(m_currentRoom)
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-03-06 11:11:39 +00:00
|
|
|
m_currentRoom->disconnect(this);
|
2018-03-05 11:12:13 +00:00
|
|
|
qDebug() << "Disconnected from" << m_currentRoom->id();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_currentRoom = room;
|
2018-03-06 11:11:39 +00:00
|
|
|
if(room)
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
using namespace QMatrixClient;
|
|
|
|
connect(m_currentRoom, &Room::aboutToAddNewMessages, this,
|
|
|
|
[=](RoomEventsRange events)
|
|
|
|
{
|
|
|
|
beginInsertRows(QModelIndex(), 0, int(events.size()) - 1);
|
|
|
|
});
|
|
|
|
connect(m_currentRoom, &Room::aboutToAddHistoricalMessages, this,
|
|
|
|
[=](RoomEventsRange events)
|
|
|
|
{
|
|
|
|
beginInsertRows(QModelIndex(), rowCount(),
|
|
|
|
rowCount() + int(events.size()) - 1);
|
|
|
|
});
|
|
|
|
connect(m_currentRoom, &Room::addedMessages,
|
|
|
|
this, &MessageEventModel::endInsertRows);
|
|
|
|
connect(m_currentRoom, &Room::readMarkerMoved, this, [this] {
|
|
|
|
refreshEventRoles(
|
|
|
|
std::exchange(lastReadEventId,
|
|
|
|
m_currentRoom->readMarkerEventId()),
|
|
|
|
{ReadMarkerRole});
|
|
|
|
refreshEventRoles(lastReadEventId, {ReadMarkerRole});
|
|
|
|
});
|
|
|
|
connect(m_currentRoom, &Room::replacedEvent, this,
|
|
|
|
[this] (const RoomEvent* newEvent) {
|
|
|
|
refreshEvent(newEvent->id());
|
|
|
|
});
|
|
|
|
connect(m_currentRoom, &Room::fileTransferProgress,
|
|
|
|
this, &MessageEventModel::refreshEvent);
|
|
|
|
connect(m_currentRoom, &Room::fileTransferCompleted,
|
|
|
|
this, &MessageEventModel::refreshEvent);
|
|
|
|
connect(m_currentRoom, &Room::fileTransferFailed,
|
|
|
|
this, &MessageEventModel::refreshEvent);
|
|
|
|
connect(m_currentRoom, &Room::fileTransferCancelled,
|
|
|
|
this, &MessageEventModel::refreshEvent);
|
|
|
|
qDebug() << "Connected to room" << room->id()
|
|
|
|
<< "as" << room->localUser()->id();
|
|
|
|
}
|
|
|
|
lastReadEventId = room ? room->readMarkerEventId() : "";
|
|
|
|
endResetModel();
|
2018-07-08 05:25:46 +00:00
|
|
|
emit roomChanged();
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MessageEventModel::refreshEvent(const QString& eventId)
|
|
|
|
{
|
|
|
|
refreshEventRoles(eventId, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageEventModel::refreshEventRoles(const QString& eventId,
|
|
|
|
const QVector<int> roles)
|
|
|
|
{
|
|
|
|
const auto it = m_currentRoom->findInTimeline(eventId);
|
|
|
|
if (it != m_currentRoom->timelineEdge())
|
|
|
|
{
|
|
|
|
const auto row = it - m_currentRoom->messageEvents().rbegin();
|
|
|
|
emit dataChanged(index(row), index(row), roles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool hasValidTimestamp(const QMatrixClient::TimelineItem& ti)
|
|
|
|
{
|
|
|
|
return ti->timestamp().isValid();
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
QDateTime MessageEventModel::makeMessageTimestamp(QMatrixClient::Room::rev_iter_t baseIt) const
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
const auto& timeline = m_currentRoom->messageEvents();
|
|
|
|
auto ts = baseIt->event()->timestamp();
|
|
|
|
if (ts.isValid())
|
|
|
|
return ts;
|
|
|
|
|
|
|
|
// The event is most likely redacted or just invalid.
|
|
|
|
// Look for the nearest date around and slap zero time to it.
|
|
|
|
using QMatrixClient::TimelineItem;
|
|
|
|
auto rit = std::find_if(baseIt, timeline.rend(),
|
|
|
|
hasValidTimestamp);
|
|
|
|
if (rit != timeline.rend())
|
|
|
|
return { rit->event()->timestamp().date(), {0,0}, Qt::LocalTime };
|
|
|
|
auto it = std::find_if(baseIt.base(), timeline.end(), hasValidTimestamp);
|
|
|
|
if (it != timeline.end())
|
|
|
|
return { it->event()->timestamp().date(), {0,0}, Qt::LocalTime };
|
|
|
|
|
|
|
|
// What kind of room is that?..
|
|
|
|
qCritical() << "No valid timestamps in the room timeline!";
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
QString MessageEventModel::makeDateString(QMatrixClient::Room::rev_iter_t baseIt) const
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
auto date = makeMessageTimestamp(baseIt).toLocalTime().date();
|
|
|
|
if (QMatrixClient::SettingsGroup("UI")
|
|
|
|
.value("banner_human_friendly_date", true).toBool())
|
|
|
|
{
|
|
|
|
if (date == QDate::currentDate())
|
|
|
|
return tr("Today");
|
|
|
|
if (date == QDate::currentDate().addDays(-1))
|
|
|
|
return tr("Yesterday");
|
|
|
|
if (date == QDate::currentDate().addDays(-2))
|
|
|
|
return tr("The day before yesterday");
|
|
|
|
if (date > QDate::currentDate().addDays(-7))
|
|
|
|
return date.toString("dddd");
|
|
|
|
}
|
|
|
|
return date.toString(Qt::DefaultLocaleShortDate);
|
|
|
|
}
|
|
|
|
|
|
|
|
int MessageEventModel::rowCount(const QModelIndex& parent) const
|
|
|
|
{
|
2018-03-06 11:11:39 +00:00
|
|
|
if(!m_currentRoom || parent.isValid())
|
2018-03-05 11:12:13 +00:00
|
|
|
return 0;
|
|
|
|
return m_currentRoom->timelineSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant MessageEventModel::data(const QModelIndex& index, int role) const
|
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if( !m_currentRoom ||
|
2018-03-05 11:12:13 +00:00
|
|
|
index.row() < 0 || index.row() >= m_currentRoom->timelineSize())
|
|
|
|
return QVariant();
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
const auto timelineIt = m_currentRoom->messageEvents().rbegin() + index.row();
|
|
|
|
const auto& ti = *timelineIt;
|
2018-03-05 11:12:13 +00:00
|
|
|
|
|
|
|
using namespace QMatrixClient;
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == Qt::DisplayRole )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (ti->isRedacted())
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
auto reason = ti->redactedBecause()->reason();
|
2018-03-05 11:12:13 +00:00
|
|
|
if (reason.isEmpty())
|
|
|
|
return tr("Redacted");
|
2018-07-08 05:25:46 +00:00
|
|
|
|
|
|
|
return tr("Redacted: %1")
|
|
|
|
.arg(ti->redactedBecause()->reason());
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
return visit(*ti
|
|
|
|
, [this] (const RoomMessageEvent& e) -> QVariant {
|
|
|
|
using namespace MessageEventContent;
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if (e.hasTextContent() && e.mimeType().name() != "text/plain")
|
|
|
|
return static_cast<const TextContent*>(e.content())->body;
|
|
|
|
if (e.hasFileContent())
|
|
|
|
{
|
|
|
|
auto fileCaption = e.content()->fileInfo()->originalName;
|
|
|
|
if (fileCaption.isEmpty())
|
|
|
|
fileCaption = m_currentRoom->prettyPrint(e.plainBody());
|
|
|
|
if (fileCaption.isEmpty())
|
|
|
|
return tr("a file");
|
|
|
|
}
|
|
|
|
return m_currentRoom->prettyPrint(e.plainBody());
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
2018-07-08 05:25:46 +00:00
|
|
|
, [this] (const RoomMemberEvent& e) -> QVariant {
|
|
|
|
// FIXME: Rewind to the name that was at the time of this event
|
|
|
|
QString subjectName = m_currentRoom->roomMembername(e.userId());
|
|
|
|
// The below code assumes senderName output in AuthorRole
|
|
|
|
switch( e.membership() )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
case MembershipType::Invite:
|
|
|
|
if (e.repeatsState())
|
|
|
|
return tr("reinvited %1 to the room").arg(subjectName);
|
|
|
|
FALLTHROUGH;
|
|
|
|
case MembershipType::Join:
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (e.repeatsState())
|
|
|
|
return tr("joined the room (repeated)");
|
|
|
|
if (!e.prevContent() ||
|
|
|
|
e.membership() != e.prevContent()->membership)
|
|
|
|
{
|
|
|
|
return e.membership() == MembershipType::Invite
|
|
|
|
? tr("invited %1 to the room").arg(subjectName)
|
|
|
|
: tr("joined the room");
|
|
|
|
}
|
|
|
|
QString text {};
|
|
|
|
if (e.displayName() != e.prevContent()->displayName)
|
|
|
|
{
|
|
|
|
if (e.displayName().isEmpty())
|
|
|
|
text = tr("cleared the display name");
|
|
|
|
else
|
|
|
|
text = tr("changed the display name to %1")
|
|
|
|
.arg(e.displayName());
|
|
|
|
}
|
|
|
|
if (e.avatarUrl() != e.prevContent()->avatarUrl)
|
|
|
|
{
|
|
|
|
if (!text.isEmpty())
|
|
|
|
text += " and ";
|
|
|
|
if (e.avatarUrl().isEmpty())
|
|
|
|
text += tr("cleared the avatar");
|
|
|
|
else
|
|
|
|
text += tr("updated the avatar");
|
|
|
|
}
|
|
|
|
return text;
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
2018-07-08 05:25:46 +00:00
|
|
|
case MembershipType::Leave:
|
|
|
|
if (e.prevContent() &&
|
|
|
|
e.prevContent()->membership == MembershipType::Ban)
|
|
|
|
{
|
|
|
|
return (e.senderId() != e.userId())
|
|
|
|
? tr("unbanned %1").arg(subjectName)
|
|
|
|
: tr("self-unbanned");
|
|
|
|
}
|
|
|
|
return (e.senderId() != e.userId())
|
|
|
|
? tr("has put %1 out of the room").arg(subjectName)
|
|
|
|
: tr("left the room");
|
|
|
|
case MembershipType::Ban:
|
|
|
|
return (e.senderId() != e.userId())
|
|
|
|
? tr("banned %1 from the room").arg(subjectName)
|
|
|
|
: tr("self-banned from the room");
|
|
|
|
case MembershipType::Knock:
|
|
|
|
return tr("knocked");
|
|
|
|
default:
|
|
|
|
;
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
2018-07-08 05:25:46 +00:00
|
|
|
return tr("made something unknown");
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
2018-07-08 05:25:46 +00:00
|
|
|
, [] (const RoomAliasesEvent& e) -> QVariant {
|
|
|
|
return tr("set aliases to: %1").arg(e.aliases().join(", "));
|
|
|
|
}
|
|
|
|
, [] (const RoomCanonicalAliasEvent& e) -> QVariant {
|
|
|
|
return (e.alias().isEmpty())
|
|
|
|
? tr("cleared the room main alias")
|
|
|
|
: tr("set the room main alias to: %1").arg(e.alias());
|
|
|
|
}
|
|
|
|
, [] (const RoomNameEvent& e) -> QVariant {
|
|
|
|
return (e.name().isEmpty())
|
|
|
|
? tr("cleared the room name")
|
|
|
|
: tr("set the room name to: %1").arg(e.name());
|
|
|
|
}
|
|
|
|
, [] (const RoomTopicEvent& e) -> QVariant {
|
|
|
|
return (e.topic().isEmpty())
|
|
|
|
? tr("cleared the topic")
|
|
|
|
: tr("set the topic to: %1").arg(e.topic());
|
|
|
|
}
|
|
|
|
, [] (const RoomAvatarEvent&) -> QVariant {
|
|
|
|
return tr("changed the room avatar");
|
|
|
|
}
|
|
|
|
, [] (const EncryptionEvent&) -> QVariant {
|
|
|
|
return tr("activated End-to-End Encryption");
|
|
|
|
}
|
|
|
|
, tr("Unknown Event")
|
|
|
|
);
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == Qt::ToolTipRole )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
return ti->originalJson();
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == EventTypeRole )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (ti->isStateEvent())
|
2018-03-05 11:12:13 +00:00
|
|
|
return "state";
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if (auto e = ti.viewAs<RoomMessageEvent>())
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
switch (e->msgtype())
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
case MessageEventType::Emote:
|
|
|
|
return "emote";
|
|
|
|
case MessageEventType::Notice:
|
|
|
|
return "notice";
|
|
|
|
case MessageEventType::Image:
|
|
|
|
return "image";
|
|
|
|
case MessageEventType::File:
|
|
|
|
case MessageEventType::Audio:
|
|
|
|
case MessageEventType::Video:
|
|
|
|
return "file";
|
|
|
|
default:
|
|
|
|
return "message";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "other";
|
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if (role == EventResolvedTypeRole)
|
|
|
|
return EventTypeRegistry::getMatrixType(ti->type());
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == TimeRole )
|
|
|
|
return makeMessageTimestamp(timelineIt);
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == SectionRole )
|
|
|
|
return makeDateString(timelineIt); // FIXME: move date rendering to QML
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == AuthorRole )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
auto userId = ti->senderId();
|
|
|
|
// FIXME: It shouldn't be User, it should be its state "as of event"
|
|
|
|
return QVariant::fromValue(m_currentRoom->user(userId));
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (role == ContentTypeRole)
|
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (is<RoomMessageEvent>(*ti))
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
const auto& contentType =
|
2018-07-08 05:25:46 +00:00
|
|
|
ti.viewAs<RoomMessageEvent>()->mimeType().name();
|
2018-03-05 11:12:13 +00:00
|
|
|
return contentType == "text/plain" ? "text/html" : contentType;
|
|
|
|
}
|
|
|
|
return "text/plain";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (role == ContentRole)
|
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (ti->isRedacted())
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
auto reason = ti->redactedBecause()->reason();
|
|
|
|
return (reason.isEmpty())
|
|
|
|
? tr("Redacted")
|
|
|
|
: tr("Redacted: %1").arg(ti->redactedBecause()->reason());
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if (is<RoomMessageEvent>(*ti))
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
|
|
|
using namespace MessageEventContent;
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
auto* e = ti.viewAs<RoomMessageEvent>();
|
2018-03-05 11:12:13 +00:00
|
|
|
switch (e->msgtype())
|
|
|
|
{
|
|
|
|
case MessageEventType::Image:
|
|
|
|
case MessageEventType::File:
|
|
|
|
case MessageEventType::Audio:
|
|
|
|
case MessageEventType::Video:
|
|
|
|
return QVariant::fromValue(e->content()->originalJson);
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == HighlightRole )
|
|
|
|
return QVariant();
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == ReadMarkerRole )
|
|
|
|
return ti->id() == lastReadEventId;
|
|
|
|
|
|
|
|
if( role == SpecialMarksRole )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (auto e = ti.viewAs<StateEventBase>())
|
|
|
|
if (e->repeatsState())
|
|
|
|
return "hidden";
|
|
|
|
return ti->isRedacted() ? "redacted" : "";
|
2018-03-05 11:12:13 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == EventIdRole )
|
|
|
|
return ti->id();
|
2018-03-05 11:12:13 +00:00
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
if( role == LongOperationRole )
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
if (is<RoomMessageEvent>(*ti) &&
|
|
|
|
ti.viewAs<RoomMessageEvent>()->hasFileContent())
|
2018-03-05 11:12:13 +00:00
|
|
|
{
|
2018-07-08 05:25:46 +00:00
|
|
|
auto info = m_currentRoom->fileTransferInfo(ti->id());
|
2018-03-05 11:12:13 +00:00
|
|
|
return QVariant::fromValue(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-08 05:25:46 +00:00
|
|
|
auto aboveEventIt = timelineIt + 1; // FIXME: shouldn't be here, because #312
|
|
|
|
if (aboveEventIt != m_currentRoom->timelineEdge())
|
|
|
|
{
|
|
|
|
if( role == AboveSectionRole )
|
|
|
|
return makeDateString(aboveEventIt);
|
|
|
|
|
|
|
|
if( role == AboveAuthorRole )
|
|
|
|
return QVariant::fromValue(
|
|
|
|
m_currentRoom->user((*aboveEventIt)->senderId()));
|
|
|
|
}
|
|
|
|
|
2018-03-05 11:12:13 +00:00
|
|
|
return QVariant();
|
|
|
|
}
|
2018-07-08 05:25:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
QHash<int, QByteArray> MessageEventModel::roleNames() const
|
|
|
|
{
|
|
|
|
QHash<int, QByteArray> roles = QAbstractItemModel::roleNames();
|
|
|
|
roles[EventTypeRole] = "eventType";
|
|
|
|
roles[EventIdRole] = "eventId";
|
|
|
|
roles[TimeRole] = "time";
|
|
|
|
roles[SectionRole] = "section";
|
|
|
|
roles[AboveSectionRole] = "aboveSection";
|
|
|
|
roles[AuthorRole] = "author";
|
|
|
|
roles[AboveAuthorRole] = "aboveAuthor";
|
|
|
|
roles[ContentRole] = "content";
|
|
|
|
roles[ContentTypeRole] = "contentType";
|
|
|
|
roles[HighlightRole] = "highlight";
|
|
|
|
roles[ReadMarkerRole] = "readMarker";
|
|
|
|
roles[SpecialMarksRole] = "marks";
|
|
|
|
roles[LongOperationRole] = "progressInfo";
|
|
|
|
roles[EventResolvedTypeRole] = "eventResolvedType";
|
|
|
|
return roles;
|
|
|
|
}
|