0c74ab17ed
* refactor: remove file prefix * refactor: put eventapi into a namespace * refactor: support multiple conditions * fix: handle ack * docs: add changelog entry * fix: unsubscribe in destructor * fix: naming of parameter * fix: namespaces * chore: casing * fix: missing namespace --------- Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
71 lines
1.6 KiB
C++
71 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "providers/seventv/eventapi/Subscription.hpp"
|
|
|
|
#include <QJsonObject>
|
|
#include <QString>
|
|
|
|
namespace chatterino::seventv::eventapi {
|
|
|
|
// https://github.com/SevenTV/EventAPI/tree/ca4ff15cc42b89560fa661a76c5849047763d334#message-payload
|
|
struct Dispatch {
|
|
SubscriptionType type;
|
|
QJsonObject body;
|
|
QString id;
|
|
// it's okay for this to be empty
|
|
QString actorName;
|
|
|
|
Dispatch(QJsonObject obj);
|
|
};
|
|
|
|
struct EmoteAddDispatch {
|
|
QString emoteSetID;
|
|
QString actorName;
|
|
QJsonObject emoteJson;
|
|
QString emoteID;
|
|
|
|
EmoteAddDispatch(const Dispatch &dispatch, QJsonObject emote);
|
|
|
|
bool validate() const;
|
|
};
|
|
|
|
struct EmoteRemoveDispatch {
|
|
QString emoteSetID;
|
|
QString actorName;
|
|
QString emoteName;
|
|
QString emoteID;
|
|
|
|
EmoteRemoveDispatch(const Dispatch &dispatch, QJsonObject emote);
|
|
|
|
bool validate() const;
|
|
};
|
|
|
|
struct EmoteUpdateDispatch {
|
|
QString emoteSetID;
|
|
QString actorName;
|
|
QString emoteID;
|
|
QString oldEmoteName;
|
|
QString emoteName;
|
|
|
|
EmoteUpdateDispatch(const Dispatch &dispatch, QJsonObject oldValue,
|
|
QJsonObject value);
|
|
|
|
bool validate() const;
|
|
};
|
|
|
|
struct UserConnectionUpdateDispatch {
|
|
QString userID;
|
|
QString actorName;
|
|
QString oldEmoteSetID;
|
|
QString emoteSetID;
|
|
size_t connectionIndex;
|
|
|
|
UserConnectionUpdateDispatch(const Dispatch &dispatch,
|
|
const QJsonObject &update,
|
|
size_t connectionIndex);
|
|
|
|
bool validate() const;
|
|
};
|
|
|
|
} // namespace chatterino::seventv::eventapi
|